Skip to content

Commit 99c6d6e

Browse files
authored
Merge branch 'main' into feature/aifp
2 parents a726110 + bd33578 commit 99c6d6e

File tree

6 files changed

+42
-30
lines changed

6 files changed

+42
-30
lines changed

abaplint.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@
195195
"unsecure_fae": true,
196196
"unused_methods": true,
197197
"unused_types": {
198-
"skipNames": ["ty_main","ty_header_80"]
198+
"skipNames": ["ty_main","ty_header_80","ty_object_name_40"]
199199
},
200200
"unused_variables": true,
201201
"use_bool_expression": true,

file-formats/aifa/aifa-v1.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,13 @@
191191
"default": "sourceStructure"
192192
},
193193
"name": {
194-
"title": "Name/Value",
195-
"description": "Name/Value",
194+
"title": "Name",
195+
"description": "Name",
196+
"type": "string"
197+
},
198+
"value": {
199+
"title": "Value",
200+
"description": "Value",
196201
"type": "string"
197202
}
198203
},

file-formats/aifa/type/zif_aff_aifa_v1.intf.abap

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,13 @@ INTERFACE zif_aff_aifa_v1
4848
BEGIN OF ty_field_to_check,
4949
"! <p class="shorttext">Type</p>
5050
"! Type
51-
type TYPE ty_field_type,
52-
"! <p class="shorttext">Name/Value</p>
53-
"! Name/Value
54-
name TYPE string,
51+
type TYPE ty_field_type,
52+
"! <p class="shorttext">Name</p>
53+
"! Name
54+
name TYPE string,
55+
"! <p class="shorttext">Value</p>
56+
"! Value
57+
value TYPE string,
5558
END OF ty_field_to_check,
5659
"! <p class="shorttext">Fields To Check</p>
5760
"! Fields to check

file-formats/zif_aff_types_v1.intf.abap

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ INTERFACE zif_aff_types_v1 PUBLIC.
8282
"! Object name with max. length 30
8383
TYPES ty_object_name_30 TYPE c LENGTH 30.
8484

85+
"! <p class="shorttext">Object Name</p>
86+
"! Object name with max. length 40
87+
TYPES ty_object_name_40 TYPE c LENGTH 40.
88+
8589
"! <p class="shorttext">Original Language</p>
8690
"! Original language of the ABAP object
8791
TYPES ty_original_language TYPE sy-langu.

generate/package-lock.json

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generate/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
},
2323
"homepage": "https://github.com/SAP/abap-file-formats#readme",
2424
"dependencies": {
25-
"@abaplint/database-sqlite": "^2.10.24",
26-
"@abaplint/runtime": "^2.10.75",
27-
"@abaplint/transpiler-cli": "^2.10.75",
25+
"@abaplint/database-sqlite": "^2.11.0",
26+
"@abaplint/runtime": "^2.11.58",
27+
"@abaplint/transpiler-cli": "^2.11.58",
2828
"@actions/core": "^1.11.1",
2929
"oras-pull": "^0.1.7"
3030
}

0 commit comments

Comments
 (0)