@abaplint/runtime 2.11.85 → 2.11.87

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.
@@ -30,5 +30,7 @@ exports.sy = new types_1.Structure({
30
30
  dbsys: new types_1.Character(10),
31
31
  batch: new types_1.Character(1),
32
32
  saprl: new types_1.Character(4).set("OPEN"),
33
+ cprog: new types_1.Character(40).set("OPEN_ABAP_TODO"),
34
+ tcode: new types_1.Character(20).set("OPEN_ABAP_TODO"),
33
35
  });
34
36
  //# sourceMappingURL=sy.js.map
@@ -13,6 +13,7 @@ function expandIN(fieldName, table) {
13
13
  else {
14
14
  ret = `(`;
15
15
  const values = [];
16
+ fieldName = fieldName.replace("~", `"."`);
16
17
  for (const row of table.array()) {
17
18
  if (row.get().sign?.get() === "I" && row.get().option?.get() === "EQ") {
18
19
  values.push(`"${fieldName}" = '` + row.get().low?.get().replace(/'/g, "''") + "'");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/runtime",
3
- "version": "2.11.85",
3
+ "version": "2.11.87",
4
4
  "description": "Transpiler - Runtime",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",