@abaplint/runtime
Version:
Transpiler - Runtime
14 lines • 439 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.buildDbTableName = buildDbTableName;
function buildDbTableName(table) {
// @ts-ignore
let ret = `"${abap.dbo.tablePrefix + table.trimEnd().toLowerCase()}"`;
// @ts-ignore
if (abap.dbo.schemaPrefix !== "") {
// @ts-ignore
ret = `"${abap.dbo.schemaPrefix}".` + ret;
}
return ret;
}
//# sourceMappingURL=prefix.js.map