@abaplint/core 2.101.23 → 2.101.24
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.
package/build/src/registry.js
CHANGED
|
@@ -2148,6 +2148,9 @@ ${indentation} output = ${uniqueName}.\n`;
|
|
|
2148
2148
|
indentation + `IF sy-subrc = 0.\n` +
|
|
2149
2149
|
indentation + ` ${uniqueName} = ${rowName}${after}.\n` +
|
|
2150
2150
|
indentation + `ENDIF.\n`;
|
|
2151
|
+
if (type.includes("LIKE DATA(")) {
|
|
2152
|
+
type = `LIKE LINE OF ${tabName}`;
|
|
2153
|
+
}
|
|
2151
2154
|
}
|
|
2152
2155
|
if (end !== "") {
|
|
2153
2156
|
indentation = indentation.substring(2);
|