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,19 +324,17 @@ CLASS ZCL_ABAPGIT_OBJECTS_ACTIVATION IMPLEMENTATION.
|
|||
|
||||
METHOD use_new_activation_logic.
|
||||
|
||||
IF zcl_abapgit_persist_settings=>get_instance( )->read( )->get_experimental_features( ) = abap_true.
|
||||
|
||||
CALL FUNCTION 'FUNCTION_EXISTS'
|
||||
EXPORTING
|
||||
funcname = 'DD_MASS_ACT_C3' " Name of Function Module
|
||||
EXCEPTIONS
|
||||
function_not_exist = 1
|
||||
OTHERS = 2.
|
||||
|
||||
IF sy-subrc = 0.
|
||||
rv_use_new_activation_logic = abap_true.
|
||||
ENDIF.
|
||||
* left for easy rollback, cleanup later
|
||||
* IF zcl_abapgit_persist_settings=>get_instance( )->read( )->get_experimental_features( ) = abap_true.
|
||||
|
||||
CALL FUNCTION 'FUNCTION_EXISTS'
|
||||
EXPORTING
|
||||
funcname = 'DD_MASS_ACT_C3'
|
||||
EXCEPTIONS
|
||||
function_not_exist = 1
|
||||
OTHERS = 2.
|
||||
IF sy-subrc = 0.
|
||||
rv_use_new_activation_logic = abap_true.
|
||||
ENDIF.
|
||||
|
||||
ENDMETHOD.
|
||||
|
|
Loading…
Reference in New Issue
Block a user