Skip to content

Commit 6f4bb54

Browse files
Add object name with max length 40 (#716)
1 parent 6524902 commit 6f4bb54

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
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/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.

0 commit comments

Comments
 (0)