first commit

This commit is contained in:
Dongho Kim
2025-05-21 15:00:13 +00:00
commit da3ac0e469
39 changed files with 16602 additions and 0 deletions

13
webapp/utils/Utils.js Normal file
View File

@ -0,0 +1,13 @@
sap.ui.define([], function () {
"use strict";
return {
padAndEncodeId: function (id) {
return encodeURIComponent(id.padStart(9, "%20"));
},
exampleUtility: function () {
return "Hello from utility!";
}
};
});