mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00
Activate parallel DDIC activation #1055
Activate parallel DDIC activation #1055 With this more activation errors will be shown, plus better performance
This commit is contained in:
parent
897755a0eb
commit
75ee96bce0
|
@ -324,20 +324,18 @@ CLASS ZCL_ABAPGIT_OBJECTS_ACTIVATION IMPLEMENTATION.
|
||||||
|
|
||||||
METHOD use_new_activation_logic.
|
METHOD use_new_activation_logic.
|
||||||
|
|
||||||
IF zcl_abapgit_persist_settings=>get_instance( )->read( )->get_experimental_features( ) = abap_true.
|
* left for easy rollback, cleanup later
|
||||||
|
* IF zcl_abapgit_persist_settings=>get_instance( )->read( )->get_experimental_features( ) = abap_true.
|
||||||
|
|
||||||
CALL FUNCTION 'FUNCTION_EXISTS'
|
CALL FUNCTION 'FUNCTION_EXISTS'
|
||||||
EXPORTING
|
EXPORTING
|
||||||
funcname = 'DD_MASS_ACT_C3' " Name of Function Module
|
funcname = 'DD_MASS_ACT_C3'
|
||||||
EXCEPTIONS
|
EXCEPTIONS
|
||||||
function_not_exist = 1
|
function_not_exist = 1
|
||||||
OTHERS = 2.
|
OTHERS = 2.
|
||||||
|
|
||||||
IF sy-subrc = 0.
|
IF sy-subrc = 0.
|
||||||
rv_use_new_activation_logic = abap_true.
|
rv_use_new_activation_logic = abap_true.
|
||||||
ENDIF.
|
ENDIF.
|
||||||
|
|
||||||
ENDIF.
|
|
||||||
|
|
||||||
ENDMETHOD.
|
ENDMETHOD.
|
||||||
ENDCLASS.
|
ENDCLASS.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user