Fix extended check issues - Part 1 (#7086)

Co-authored-by: Lars Hvam <larshp@hotmail.com>
This commit is contained in:
Marc Bernard 2024-12-03 01:18:52 -05:00 committed by GitHub
parent 994cbf8f92
commit 900952495e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 18 additions and 18 deletions

View File

@ -178,7 +178,7 @@ CLASS zcl_abapgit_apack_migration IMPLEMENTATION.
component_error = 4 component_error = 4
no_access = 5 no_access = 5
other = 6 other = 6
OTHERS = 7. OTHERS = 7 ##FM_SUBRC_OK.
CATCH cx_sy_dyn_call_param_not_found. CATCH cx_sy_dyn_call_param_not_found.
CALL FUNCTION 'SEO_INTERFACE_CREATE_COMPLETE' CALL FUNCTION 'SEO_INTERFACE_CREATE_COMPLETE'
EXPORTING EXPORTING

View File

@ -623,7 +623,7 @@ CLASS zcl_abapgit_cts_api IMPLEMENTATION.
ev_object = ls_list-object ev_object = ls_list-object
ev_obj_name = ls_list-obj_name ). ev_obj_name = ls_list-obj_name ).
INSERT ls_list INTO TABLE rt_list. INSERT ls_list INTO TABLE rt_list.
CATCH zcx_abapgit_exception. CATCH zcx_abapgit_exception ##NO_HANDLER.
ENDTRY. ENDTRY.
ENDCASE. ENDCASE.
ENDLOOP. ENDLOOP.

View File

@ -49,7 +49,7 @@ ENDCLASS.
CLASS ZCL_ABAPGIT_DATA_UTILS IMPLEMENTATION. CLASS zcl_abapgit_data_utils IMPLEMENTATION.
METHOD build_config_filename. METHOD build_config_filename.
@ -196,7 +196,7 @@ CLASS ZCL_ABAPGIT_DATA_UTILS IMPLEMENTATION.
db_not_exists = 3 db_not_exists = 3
no_permission = 4 no_permission = 4
no_change_allowed = 5 no_change_allowed = 5
table_is_gtt = 6 * table_is_gtt = 6 " not in lower releases
OTHERS = 7. OTHERS = 7.
IF sy-subrc <> 0. IF sy-subrc <> 0.
zcx_abapgit_exception=>raise( |Table { is_item-obj_name } cannot be displayed| ). zcx_abapgit_exception=>raise( |Table { is_item-obj_name } cannot be displayed| ).

View File

@ -50,7 +50,7 @@ CLASS zcl_abapgit_pr_enumerator IMPLEMENTATION.
mv_repo_url = to_lower( iv_url ). mv_repo_url = to_lower( iv_url ).
TRY. TRY.
mi_enum_provider = create_provider( mv_repo_url ). mi_enum_provider = create_provider( mv_repo_url ).
CATCH zcx_abapgit_exception. CATCH zcx_abapgit_exception ##NO_HANDLER.
ENDTRY. ENDTRY.
ENDMETHOD. ENDMETHOD.

View File

@ -124,7 +124,7 @@ ENDCLASS.
CLASS ZCL_ABAPGIT_WHERE_USED_TOOLS IMPLEMENTATION. CLASS zcl_abapgit_where_used_tools IMPLEMENTATION.
METHOD build_package_scope. METHOD build_package_scope.
@ -311,7 +311,7 @@ CLASS ZCL_ABAPGIT_WHERE_USED_TOOLS IMPLEMENTATION.
not_enough_input = 1 not_enough_input = 1
no_function_pool = 2 no_function_pool = 2
delimiter_wrong_position = 3 delimiter_wrong_position = 3
OTHERS = 4. OTHERS = 4 ##FM_SUBRC_OK.
IF lv_area IS INITIAL. IF lv_area IS INITIAL.
SELECT SINGLE master FROM d010inc INTO lv_program SELECT SINGLE master FROM d010inc INTO lv_program
@ -325,7 +325,7 @@ CLASS ZCL_ABAPGIT_WHERE_USED_TOOLS IMPLEMENTATION.
not_enough_input = 1 not_enough_input = 1
no_function_pool = 2 no_function_pool = 2
delimiter_wrong_position = 3 delimiter_wrong_position = 3
OTHERS = 4. OTHERS = 4 ##FM_SUBRC_OK.
ENDIF. ENDIF.
IF lv_area IS NOT INITIAL. IF lv_area IS NOT INITIAL.

View File

@ -53,7 +53,7 @@ CLASS zcl_abapgit_persist_migrate IMPLEMENTATION.
TRY. TRY.
lcl_cua_interface=>new( )->put_own_cua( ls_cua ). lcl_cua_interface=>new( )->put_own_cua( ls_cua ).
CATCH zcx_abapgit_exception. CATCH zcx_abapgit_exception ##NO_HANDLER.
ENDTRY. ENDTRY.
ENDMETHOD. ENDMETHOD.
@ -70,7 +70,7 @@ CLASS zcl_abapgit_persist_migrate IMPLEMENTATION.
TRY. TRY.
ls_own_cua = lcl_cua_interface=>new( )->get_own_cua( ). ls_own_cua = lcl_cua_interface=>new( )->get_own_cua( ).
CATCH zcx_abapgit_exception. CATCH zcx_abapgit_exception ##NO_HANDLER.
ENDTRY. ENDTRY.
IF ls_own_cua IS INITIAL. IF ls_own_cua IS INITIAL.

View File

@ -136,7 +136,7 @@ CLASS zcl_abapgit_repo_labels IMPLEMENTATION.
TRY. TRY.
validate_one_label_color( <ls_c> ). validate_one_label_color( <ls_c> ).
APPEND <ls_c> TO lt_normalized. APPEND <ls_c> TO lt_normalized.
CATCH zcx_abapgit_exception. CATCH zcx_abapgit_exception ##NO_HANDLER.
ENDTRY. ENDTRY.
ENDLOOP. ENDLOOP.
@ -225,7 +225,7 @@ CLASS zcl_abapgit_repo_labels IMPLEMENTATION.
ro_map->set( ro_map->set(
iv_key = <ls_c>-label iv_key = <ls_c>-label
iv_val = <ls_c>-color ). iv_val = <ls_c>-color ).
CATCH zcx_abapgit_exception. CATCH zcx_abapgit_exception ##NO_HANDLER.
ENDTRY. ENDTRY.
ENDLOOP. ENDLOOP.

View File

@ -81,18 +81,18 @@ CLASS lcl_startup IMPLEMENTATION.
" - open a specific repo by package name provided by ADT " - open a specific repo by package name provided by ADT
" These overrule the last shown repo " These overrule the last shown repo
GET PARAMETER ID zif_abapgit_definitions=>c_spagpa_param_repo_key FIELD lv_repo_key. GET PARAMETER ID zif_abapgit_definitions=>c_spagpa_param_repo_key FIELD lv_repo_key ##EXISTS.
GET PARAMETER ID zif_abapgit_definitions=>c_spagpa_param_package FIELD lv_package. GET PARAMETER ID zif_abapgit_definitions=>c_spagpa_param_package FIELD lv_package ##EXISTS.
lv_package_adt = get_package_from_adt( ). lv_package_adt = get_package_from_adt( ).
IF lv_repo_key IS NOT INITIAL. IF lv_repo_key IS NOT INITIAL.
SET PARAMETER ID zif_abapgit_definitions=>c_spagpa_param_repo_key FIELD ''. SET PARAMETER ID zif_abapgit_definitions=>c_spagpa_param_repo_key FIELD '' ##EXISTS.
zcl_abapgit_persistence_user=>get_instance( )->set_repo_show( lv_repo_key ). zcl_abapgit_persistence_user=>get_instance( )->set_repo_show( lv_repo_key ).
ELSEIF lv_package IS NOT INITIAL. ELSEIF lv_package IS NOT INITIAL.
SET PARAMETER ID zif_abapgit_definitions=>c_spagpa_param_package FIELD ''. SET PARAMETER ID zif_abapgit_definitions=>c_spagpa_param_package FIELD '' ##EXISTS.
set_start_repo_from_package( lv_package ). set_start_repo_from_package( lv_package ).
ELSEIF lv_package_adt IS NOT INITIAL. ELSEIF lv_package_adt IS NOT INITIAL.
@ -198,7 +198,7 @@ CLASS lcl_startup IMPLEMENTATION.
ENDIF. ENDIF.
CATCH cx_root. CATCH cx_root ##NO_HANDLER.
" Some problems with dynamic ADT access. " Some problems with dynamic ADT access.
" Let's ignore it for now and fail silently " Let's ignore it for now and fail silently
ENDTRY. ENDTRY.

View File

@ -181,7 +181,7 @@ FORM password_popup
pv_repo_url TYPE string pv_repo_url TYPE string
CHANGING CHANGING
cv_user TYPE string cv_user TYPE string
cv_pass TYPE string. cv_pass TYPE string ##CALLED.
lcl_password_dialog=>popup( lcl_password_dialog=>popup(
EXPORTING EXPORTING