SAP RSO_ISTD_ACTIVATE_CONTENT Function Module for Take over InfoSource from the delivery version (trans.data)









RSO_ISTD_ACTIVATE_CONTENT is a standard rso istd activate content SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Take over InfoSource from the delivery version (trans.data) processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for rso istd activate content FM, simply by entering the name RSO_ISTD_ACTIVATE_CONTENT into the relevant SAP transaction such as SE37 or SE38.

Function Group: RSAC_TRANSPORT
Program Name: SAPLRSAC_TRANSPORT
Main Program: SAPLRSAC_TRANSPORT
Appliation area: B
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function RSO_ISTD_ACTIVATE_CONTENT pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'RSO_ISTD_ACTIVATE_CONTENT'"Take over InfoSource from the delivery version (trans.data)
EXPORTING
I_T_TLOGO = "Objects Copied Over from Content Version
* I_CHECK_MODE = RS_C_TRUE "= 'X' Only Log Output (No Database Update)
* I_WITH_ACTIVATION = RS_C_TRUE "= 'X' with Activation
* I_WITH_CTS = RS_C_TRUE "= 'X': With Transport System

IMPORTING
E_SUBRC = "Return Code <> 2: Warning, 4: Error
E_T_MSG = "Log
E_T_TLOGO_MANUAL = "InfoSources for manual revision
E_T_TLOGO_ERROR = "InfoSources with errors during check
.



IMPORTING Parameters details for RSO_ISTD_ACTIVATE_CONTENT

I_T_TLOGO - Objects Copied Over from Content Version

Data type: RSO_T_TLOGO_FUNC
Optional: No
Call by Reference: Yes

I_CHECK_MODE - = 'X' Only Log Output (No Database Update)

Data type: RS_BOOL
Default: RS_C_TRUE
Optional: Yes
Call by Reference: Yes

I_WITH_ACTIVATION - = 'X' with Activation

Data type: RS_BOOL
Default: RS_C_TRUE
Optional: Yes
Call by Reference: Yes

I_WITH_CTS - = 'X': With Transport System

Data type: RS_BOOL
Default: RS_C_TRUE
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for RSO_ISTD_ACTIVATE_CONTENT

E_SUBRC - Return Code <> 2: Warning, 4: Error

Data type: SYSUBRC
Optional: No
Call by Reference: Yes

E_T_MSG - Log

Data type: RS_T_MSG
Optional: No
Call by Reference: Yes

E_T_TLOGO_MANUAL - InfoSources for manual revision

Data type: RSO_T_TLOGO
Optional: No
Call by Reference: Yes

E_T_TLOGO_ERROR - InfoSources with errors during check

Data type: RSO_T_TLOGO
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for RSO_ISTD_ACTIVATE_CONTENT Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_e_subrc  TYPE SYSUBRC, "   
lv_i_t_tlogo  TYPE RSO_T_TLOGO_FUNC, "   
lv_e_t_msg  TYPE RS_T_MSG, "   
lv_i_check_mode  TYPE RS_BOOL, "   RS_C_TRUE
lv_e_t_tlogo_manual  TYPE RSO_T_TLOGO, "   
lv_i_with_activation  TYPE RS_BOOL, "   RS_C_TRUE
lv_i_with_cts  TYPE RS_BOOL, "   RS_C_TRUE
lv_e_t_tlogo_error  TYPE RSO_T_TLOGO. "   

  CALL FUNCTION 'RSO_ISTD_ACTIVATE_CONTENT'  "Take over InfoSource from the delivery version (trans.data)
    EXPORTING
         I_T_TLOGO = lv_i_t_tlogo
         I_CHECK_MODE = lv_i_check_mode
         I_WITH_ACTIVATION = lv_i_with_activation
         I_WITH_CTS = lv_i_with_cts
    IMPORTING
         E_SUBRC = lv_e_subrc
         E_T_MSG = lv_e_t_msg
         E_T_TLOGO_MANUAL = lv_e_t_tlogo_manual
         E_T_TLOGO_ERROR = lv_e_t_tlogo_error
. " RSO_ISTD_ACTIVATE_CONTENT




ABAP code using 7.40 inline data declarations to call FM RSO_ISTD_ACTIVATE_CONTENT

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
DATA(ld_i_check_mode) = RS_C_TRUE.
 
 
DATA(ld_i_with_activation) = RS_C_TRUE.
 
DATA(ld_i_with_cts) = RS_C_TRUE.
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!