SAP RSDRO_ACTIVATE_ODS_PARALLEL Function Module for 'Convert' Modified Entries into Active Entries (Commit/Rollback)
RSDRO_ACTIVATE_ODS_PARALLEL is a standard rsdro activate ods parallel SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for 'Convert' Modified Entries into Active Entries (Commit/Rollback) 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 rsdro activate ods parallel FM, simply by entering the name RSDRO_ACTIVATE_ODS_PARALLEL into the relevant SAP transaction such as SE37 or SE38.
Function Group: RSDRO
Program Name: SAPLRSDRO
Main Program: SAPLRSDRO
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function RSDRO_ACTIVATE_ODS_PARALLEL 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 'RSDRO_ACTIVATE_ODS_PARALLEL'"'Convert' Modified Entries into Active Entries (Commit/Rollback).
EXPORTING
I_ODSOBJECT = "ODS Object
* I_LOG_PACKAGE = "Log. Package Number
* I_PACKAGE_SIZE = 0 "Package Size
* I_DATA_ATAB = 2 "Data available in the active table
TABLES
I_T_ACTREQ = "Requests to Be Activated
C_T_DBOPS = "DB Operations per Request
C_T_MSG = "BW: Table with Messages (Application Log)
EXCEPTIONS
X_MESSAGE = 1
IMPORTING Parameters details for RSDRO_ACTIVATE_ODS_PARALLEL
I_ODSOBJECT - ODS Object
Data type: RSDODSOBJECTOptional: No
Call by Reference: No ( called with pass by value option)
I_LOG_PACKAGE - Log. Package Number
Data type: IOptional: Yes
Call by Reference: No ( called with pass by value option)
I_PACKAGE_SIZE - Package Size
Data type: IOptional: Yes
Call by Reference: No ( called with pass by value option)
I_DATA_ATAB - Data available in the active table
Data type: IDefault: 2
Optional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for RSDRO_ACTIVATE_ODS_PARALLEL
I_T_ACTREQ - Requests to Be Activated
Data type: RSDRO_ACTREQOptional: No
Call by Reference: Yes
C_T_DBOPS - DB Operations per Request
Data type: RSDRO_DBOPSOptional: No
Call by Reference: Yes
C_T_MSG - BW: Table with Messages (Application Log)
Data type: RSMONITOROptional: No
Call by Reference: Yes
EXCEPTIONS details
X_MESSAGE - Cancel
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RSDRO_ACTIVATE_ODS_PARALLEL 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_x_message | TYPE STRING, " | |||
| lt_i_t_actreq | TYPE STANDARD TABLE OF RSDRO_ACTREQ, " | |||
| lv_i_odsobject | TYPE RSDODSOBJECT, " | |||
| lt_c_t_dbops | TYPE STANDARD TABLE OF RSDRO_DBOPS, " | |||
| lv_i_log_package | TYPE I, " | |||
| lt_c_t_msg | TYPE STANDARD TABLE OF RSMONITOR, " | |||
| lv_i_package_size | TYPE I, " 0 | |||
| lv_i_data_atab | TYPE I. " 2 |
|   CALL FUNCTION 'RSDRO_ACTIVATE_ODS_PARALLEL' "'Convert' Modified Entries into Active Entries (Commit/Rollback) |
| EXPORTING | ||
| I_ODSOBJECT | = lv_i_odsobject | |
| I_LOG_PACKAGE | = lv_i_log_package | |
| I_PACKAGE_SIZE | = lv_i_package_size | |
| I_DATA_ATAB | = lv_i_data_atab | |
| TABLES | ||
| I_T_ACTREQ | = lt_i_t_actreq | |
| C_T_DBOPS | = lt_c_t_dbops | |
| C_T_MSG | = lt_c_t_msg | |
| EXCEPTIONS | ||
| X_MESSAGE = 1 | ||
| . " RSDRO_ACTIVATE_ODS_PARALLEL | ||
ABAP code using 7.40 inline data declarations to call FM RSDRO_ACTIVATE_ODS_PARALLEL
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_data_atab) | = 2. | |||
Search for further information about these or an SAP related objects