mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 04:08:27 +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.
|
||||
|
@ -118,10 +118,11 @@ CLASS zcl_abapgit_objects_activation IMPLEMENTATION.
|
|||
|
||||
CALL FUNCTION 'DD_MASS_ACT_C3'
|
||||
EXPORTING
|
||||
ddmode = 'O'
|
||||
medium = 'T' " transport order
|
||||
device = 'T' " saves to table DDRPH?
|
||||
version = 'M' " activate newest
|
||||
ddmode = 'O' " activate changes in Original System
|
||||
frcact = abap_true " force Activation
|
||||
medium = 'T' " transport order
|
||||
device = 'T' " saves to table DDRPH?
|
||||
version = 'M' " activate newest version
|
||||
logname = lv_logname
|
||||
write_log = abap_true
|
||||
log_head_tail = abap_true
|
||||
|
|
Loading…
Reference in New Issue
Block a user