mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 11:46:38 +08:00
Fix generic table types
Use `standard table`
This commit is contained in:
parent
cb58678c79
commit
eb9b0aaa0f
|
@ -7,7 +7,7 @@ INTERFACE zif_abapgit_exit PUBLIC.
|
|||
clone_url TYPE string,
|
||||
END OF ty_ci_repo.
|
||||
TYPES:
|
||||
ty_ci_repos TYPE TABLE OF ty_ci_repo.
|
||||
ty_ci_repos TYPE STANDARD TABLE OF ty_ci_repo WITH DEFAULT KEY.
|
||||
TYPES:
|
||||
ty_object_types TYPE STANDARD TABLE OF tadir-object WITH DEFAULT KEY.
|
||||
TYPES:
|
||||
|
|
|
@ -18,7 +18,7 @@ CLASS zcl_abapgit_json_handler DEFINITION
|
|||
mappings TYPE ty_json_abap_mappings,
|
||||
END OF ty_enum_mapping .
|
||||
TYPES:
|
||||
ty_enum_mappings TYPE TABLE OF ty_enum_mapping WITH DEFAULT KEY .
|
||||
ty_enum_mappings TYPE STANDARD TABLE OF ty_enum_mapping WITH DEFAULT KEY .
|
||||
TYPES:
|
||||
BEGIN OF ty_path_value_pair,
|
||||
path TYPE string,
|
||||
|
|
|
@ -23,10 +23,10 @@ CLASS zcl_abapgit_object_sush DEFINITION
|
|||
METHODS clear_metadata
|
||||
CHANGING
|
||||
cs_data_head TYPE any
|
||||
ct_usobx TYPE table
|
||||
ct_usobt TYPE table
|
||||
ct_usobx_ext TYPE table
|
||||
ct_usobt_ext TYPE table.
|
||||
ct_usobx TYPE STANDARD TABLE
|
||||
ct_usobt TYPE STANDARD TABLE
|
||||
ct_usobx_ext TYPE STANDARD TABLE
|
||||
ct_usobt_ext TYPE STANDARD TABLE.
|
||||
|
||||
ENDCLASS.
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ INTERFACE zif_abapgit_popups
|
|||
show_icon TYPE abap_bool,
|
||||
center TYPE abap_bool,
|
||||
END OF ty_alv_column,
|
||||
ty_alv_column_tt TYPE TABLE OF ty_alv_column WITH DEFAULT KEY.
|
||||
ty_alv_column_tt TYPE STANDARD TABLE OF ty_alv_column WITH DEFAULT KEY.
|
||||
|
||||
TYPES:
|
||||
BEGIN OF ty_popup_position,
|
||||
|
|
Loading…
Reference in New Issue
Block a user