mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 20:03:20 +08:00
Merge branch 'main' into mbtools/longtexts
This commit is contained in:
commit
210ca8bda8
|
@ -7,7 +7,7 @@ INTERFACE zif_abapgit_exit PUBLIC.
|
||||||
clone_url TYPE string,
|
clone_url TYPE string,
|
||||||
END OF ty_ci_repo.
|
END OF ty_ci_repo.
|
||||||
TYPES:
|
TYPES:
|
||||||
ty_ci_repos TYPE TABLE OF ty_ci_repo.
|
ty_ci_repos TYPE STANDARD TABLE OF ty_ci_repo WITH DEFAULT KEY.
|
||||||
TYPES:
|
TYPES:
|
||||||
ty_object_types TYPE STANDARD TABLE OF tadir-object WITH DEFAULT KEY.
|
ty_object_types TYPE STANDARD TABLE OF tadir-object WITH DEFAULT KEY.
|
||||||
TYPES:
|
TYPES:
|
||||||
|
|
|
@ -18,7 +18,7 @@ CLASS zcl_abapgit_json_handler DEFINITION
|
||||||
mappings TYPE ty_json_abap_mappings,
|
mappings TYPE ty_json_abap_mappings,
|
||||||
END OF ty_enum_mapping .
|
END OF ty_enum_mapping .
|
||||||
TYPES:
|
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:
|
TYPES:
|
||||||
BEGIN OF ty_path_value_pair,
|
BEGIN OF ty_path_value_pair,
|
||||||
path TYPE string,
|
path TYPE string,
|
||||||
|
|
|
@ -84,7 +84,7 @@ CLASS zcl_abapgit_object_msag IMPLEMENTATION.
|
||||||
object_is_enqueued_by_corr = 6
|
object_is_enqueued_by_corr = 6
|
||||||
user_break = 7
|
user_break = 7
|
||||||
OTHERS = 8.
|
OTHERS = 8.
|
||||||
IF sy-subrc <> 0.
|
IF sy-subrc <> 0 AND sy-subrc <> 4.
|
||||||
zcx_abapgit_exception=>raise( 'Error deleting longtext for message' ).
|
zcx_abapgit_exception=>raise( 'Error deleting longtext for message' ).
|
||||||
ENDIF.
|
ENDIF.
|
||||||
|
|
||||||
|
|
|
@ -23,10 +23,10 @@ CLASS zcl_abapgit_object_sush DEFINITION
|
||||||
METHODS clear_metadata
|
METHODS clear_metadata
|
||||||
CHANGING
|
CHANGING
|
||||||
cs_data_head TYPE any
|
cs_data_head TYPE any
|
||||||
ct_usobx TYPE table
|
ct_usobx TYPE STANDARD TABLE
|
||||||
ct_usobt TYPE table
|
ct_usobt TYPE STANDARD TABLE
|
||||||
ct_usobx_ext TYPE table
|
ct_usobx_ext TYPE STANDARD TABLE
|
||||||
ct_usobt_ext TYPE table.
|
ct_usobt_ext TYPE STANDARD TABLE.
|
||||||
|
|
||||||
ENDCLASS.
|
ENDCLASS.
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ INTERFACE zif_abapgit_popups
|
||||||
show_icon TYPE abap_bool,
|
show_icon TYPE abap_bool,
|
||||||
center TYPE abap_bool,
|
center TYPE abap_bool,
|
||||||
END OF ty_alv_column,
|
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:
|
TYPES:
|
||||||
BEGIN OF ty_popup_position,
|
BEGIN OF ty_popup_position,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user