@abaplint/transpiler 2.11.48 → 2.11.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -46,7 +46,7 @@ class PopulateTables {
|
|
|
46
46
|
}
|
|
47
47
|
for (const method of def.getMethodDefinitions().getAll()) {
|
|
48
48
|
for (const parameter of method.getParameters().getAll()) {
|
|
49
|
-
ret.push(`INSERT INTO "seosubco" ("clsname", "cmpname", "sconame") VALUES ('${obj.getName()}', '${method.getName()}', '${parameter.getName()}');`);
|
|
49
|
+
ret.push(`INSERT INTO "seosubco" ("clsname", "cmpname", "sconame") VALUES ('${obj.getName()}', '${method.getName().toUpperCase()}', '${parameter.getName().toUpperCase()}');`);
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
return ret;
|
|
@@ -76,7 +76,8 @@ class PopulateTables {
|
|
|
76
76
|
pardecltyp = "1";
|
|
77
77
|
}
|
|
78
78
|
const paroptionl = optionalParameters.includes(parameter.getName()) ? "X" : " ";
|
|
79
|
-
|
|
79
|
+
const type = parameter.getType().getQualifiedName()?.toUpperCase() || "";
|
|
80
|
+
ret.push(`INSERT INTO "seosubcodf" ("clsname", "cmpname", "sconame", "version", "editorder", "pardecltyp", "type", "paroptionl") VALUES ('${obj.getName()}', '${method.getName().toUpperCase()}', '${parameter.getName().toUpperCase()}', '1', ${editorder}, '${pardecltyp}', '${type}', '${paroptionl}');`);
|
|
80
81
|
}
|
|
81
82
|
}
|
|
82
83
|
return ret;
|
|
@@ -88,7 +89,9 @@ class PopulateTables {
|
|
|
88
89
|
return [];
|
|
89
90
|
}
|
|
90
91
|
for (const method of def.getMethodDefinitions().getAll()) {
|
|
91
|
-
|
|
92
|
+
for (const parameter of method.getParameters().getAll()) {
|
|
93
|
+
ret.push(`INSERT INTO "seosubcotx" ("clsname", "cmpname", "sconame", "langu", "descript") VALUES ('${obj.getName()}', '${method.getName().toUpperCase()}', '${parameter.getName().toUpperCase()}', 'E', 'todo');`);
|
|
94
|
+
}
|
|
92
95
|
}
|
|
93
96
|
return ret;
|
|
94
97
|
}
|