mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-29 02:58:20 +08:00
fix zfc_ddic_search_help TT declerations (#524)
* fix zfc_ddic_search_help TT declerations not working with EMPTY KEY decleration in TT of method zfc_ddic_search_help changed to DEFAULT KEY * Update abaplint.jsonc --------- Co-authored-by: oblomov <102328295+oblomov-dev@users.noreply.github.com>
This commit is contained in:
parent
db2b9f22db
commit
d60fe94362
|
@ -26,7 +26,7 @@
|
|||
"allowed_object_naming": true,
|
||||
"allowed_object_types": true,
|
||||
"ambiguous_statement": true,
|
||||
"avoid_use": true,
|
||||
"avoid_use": false,
|
||||
"begin_end_names": true,
|
||||
"begin_single_include": true,
|
||||
"call_transaction_authority_check": true,
|
||||
|
|
|
@ -4643,7 +4643,7 @@ CLASS Z2UI5_CL_XML_VIEW IMPLEMENTATION.
|
|||
high(45) TYPE c,
|
||||
END OF ty_ddshselops.
|
||||
|
||||
TYPES t_ty_ddshselops TYPE TABLE OF ty_ddshselops WITH empty KEY.
|
||||
TYPES t_ty_ddshselops TYPE TABLE OF ty_ddshselops WITH DEFAULT KEY.
|
||||
|
||||
TYPES:
|
||||
BEGIN OF ty_ddshfprops,
|
||||
|
@ -4656,7 +4656,7 @@ CLASS Z2UI5_CL_XML_VIEW IMPLEMENTATION.
|
|||
defaultval(21) TYPE c,
|
||||
END OF ty_ddshfprops.
|
||||
|
||||
TYPES t_ty_ddshfprops TYPE TABLE OF ty_ddshfprops WITH empty KEY.
|
||||
TYPES t_ty_ddshfprops TYPE TABLE OF ty_ddshfprops WITH DEFAULT KEY.
|
||||
|
||||
TYPES:
|
||||
BEGIN OF ty_ddfields,
|
||||
|
@ -4711,7 +4711,7 @@ CLASS Z2UI5_CL_XML_VIEW IMPLEMENTATION.
|
|||
ampmformat(1) TYPE c,
|
||||
END OF ty_ddfields.
|
||||
|
||||
TYPES t_ty_ddfields TYPE TABLE OF ty_ddfields WITH empty KEY.
|
||||
TYPES t_ty_ddfields TYPE TABLE OF ty_ddfields WITH DEFAULT KEY.
|
||||
|
||||
TYPES:
|
||||
BEGIN OF ty_ddshifaces,
|
||||
|
@ -4726,7 +4726,7 @@ CLASS Z2UI5_CL_XML_VIEW IMPLEMENTATION.
|
|||
topshlpfld(30) TYPE c,
|
||||
END OF ty_ddshifaces.
|
||||
|
||||
TYPES t_ty_ddshifaces TYPE TABLE OF ty_ddshifaces WITH empty KEY.
|
||||
TYPES t_ty_ddshifaces TYPE TABLE OF ty_ddshifaces WITH DEFAULT KEY.
|
||||
|
||||
TYPES:
|
||||
BEGIN OF ty_intdescr,
|
||||
|
|
Loading…
Reference in New Issue
Block a user