mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-02 04:36:49 +08:00
Change DDIC activation mode (#4503)
* Fixes DDIC activation The changes mimic the behavior of CTS Activatin Job as of 7.40 SP 23 * fixes Activation of dependant DDIC (#4496) The change attempts to mimic behaviour of SAP CTS DDIC Mass Activation Job * Revert to DDMODE = 'O' Reverts to activation mode "in original" system; adds "forced activation" (FRCACT = abap_true) * restore variable definitions * and Pretty Printer Co-authored-by: Lars Hvam <larshp@hotmail.com>
This commit is contained in:
parent
193ad660fd
commit
59479570c5
|
@ -61,7 +61,7 @@ ENDCLASS.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
CLASS zcl_abapgit_objects_activation IMPLEMENTATION.
|
CLASS ZCL_ABAPGIT_OBJECTS_ACTIVATION IMPLEMENTATION.
|
||||||
|
|
||||||
|
|
||||||
METHOD activate.
|
METHOD activate.
|
||||||
|
@ -118,10 +118,11 @@ CLASS zcl_abapgit_objects_activation IMPLEMENTATION.
|
||||||
|
|
||||||
CALL FUNCTION 'DD_MASS_ACT_C3'
|
CALL FUNCTION 'DD_MASS_ACT_C3'
|
||||||
EXPORTING
|
EXPORTING
|
||||||
ddmode = 'O'
|
ddmode = 'O' " activate changes in Original System
|
||||||
medium = 'T' " transport order
|
frcact = abap_true " force Activation
|
||||||
device = 'T' " saves to table DDRPH?
|
medium = 'T' " transport order
|
||||||
version = 'M' " activate newest
|
device = 'T' " saves to table DDRPH?
|
||||||
|
version = 'M' " activate newest version
|
||||||
logname = lv_logname
|
logname = lv_logname
|
||||||
write_log = abap_true
|
write_log = abap_true
|
||||||
log_head_tail = abap_true
|
log_head_tail = abap_true
|
||||||
|
|
Loading…
Reference in New Issue
Block a user