SAP RSDDS_CHANGERUN_MONITOR Function Module for Monitor for Change Run
RSDDS_CHANGERUN_MONITOR is a standard rsdds changerun monitor SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Monitor for Change Run 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 rsdds changerun monitor FM, simply by entering the name RSDDS_CHANGERUN_MONITOR into the relevant SAP transaction such as SE37 or SE38.
Function Group: RSDDS
Program Name: SAPLRSDDS
Main Program: SAPLRSDDS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RSDDS_CHANGERUN_MONITOR 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 'RSDDS_CHANGERUN_MONITOR'"Monitor for Change Run.
EXPORTING
* I_WITH_DETAILS = RS_C_TRUE "Boolean
* I_T_CHABASNM = "List of InfoObjects
* I_T_HIEID = "List of Hierarchy IDs
IMPORTING
E_TS_STATE_CR = "
E_TS_CHANM_IN_AGGR = "Changes by Basic Characteristic
E_TS_HIER_CR = "
E_TS_CHABASNM_CR = "
E_T_AGGREGATE_CR = "
E_TS_TREXAGGR_CR = "
E_TSX_MSG_CR = "BW: Table with Messages (Application Log)
IMPORTING Parameters details for RSDDS_CHANGERUN_MONITOR
I_WITH_DETAILS - Boolean
Data type: RS_BOOLDefault: RS_C_TRUE
Optional: No
Call by Reference: Yes
I_T_CHABASNM - List of InfoObjects
Data type: RSD_T_IOBJNMOptional: Yes
Call by Reference: Yes
I_T_HIEID - List of Hierarchy IDs
Data type: RSHI_T_HIEIDOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for RSDDS_CHANGERUN_MONITOR
E_TS_STATE_CR -
Data type: RSDDS_TS_STATE_CROptional: No
Call by Reference: Yes
E_TS_CHANM_IN_AGGR - Changes by Basic Characteristic
Data type: RSDDS_TS_CHABASOptional: No
Call by Reference: Yes
E_TS_HIER_CR -
Data type: RSDDS_TS_HIER_CROptional: No
Call by Reference: Yes
E_TS_CHABASNM_CR -
Data type: RSDDS_TS_CHABASNM_CROptional: No
Call by Reference: Yes
E_T_AGGREGATE_CR -
Data type: RSDDS_T_AGGREGATE_CROptional: No
Call by Reference: Yes
E_TS_TREXAGGR_CR -
Data type: RSDDS_TS_TREXAGGR_CROptional: No
Call by Reference: Yes
E_TSX_MSG_CR - BW: Table with Messages (Application Log)
Data type: RSDDS_TSX_MSG_CROptional: No
Call by Reference: Yes
Copy and paste ABAP code example for RSDDS_CHANGERUN_MONITOR 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_ts_state_cr | TYPE RSDDS_TS_STATE_CR, " | |||
| lv_i_with_details | TYPE RS_BOOL, " RS_C_TRUE | |||
| lv_i_t_chabasnm | TYPE RSD_T_IOBJNM, " | |||
| lv_e_ts_chanm_in_aggr | TYPE RSDDS_TS_CHABAS, " | |||
| lv_i_t_hieid | TYPE RSHI_T_HIEID, " | |||
| lv_e_ts_hier_cr | TYPE RSDDS_TS_HIER_CR, " | |||
| lv_e_ts_chabasnm_cr | TYPE RSDDS_TS_CHABASNM_CR, " | |||
| lv_e_t_aggregate_cr | TYPE RSDDS_T_AGGREGATE_CR, " | |||
| lv_e_ts_trexaggr_cr | TYPE RSDDS_TS_TREXAGGR_CR, " | |||
| lv_e_tsx_msg_cr | TYPE RSDDS_TSX_MSG_CR. " |
|   CALL FUNCTION 'RSDDS_CHANGERUN_MONITOR' "Monitor for Change Run |
| EXPORTING | ||
| I_WITH_DETAILS | = lv_i_with_details | |
| I_T_CHABASNM | = lv_i_t_chabasnm | |
| I_T_HIEID | = lv_i_t_hieid | |
| IMPORTING | ||
| E_TS_STATE_CR | = lv_e_ts_state_cr | |
| E_TS_CHANM_IN_AGGR | = lv_e_ts_chanm_in_aggr | |
| E_TS_HIER_CR | = lv_e_ts_hier_cr | |
| E_TS_CHABASNM_CR | = lv_e_ts_chabasnm_cr | |
| E_T_AGGREGATE_CR | = lv_e_t_aggregate_cr | |
| E_TS_TREXAGGR_CR | = lv_e_ts_trexaggr_cr | |
| E_TSX_MSG_CR | = lv_e_tsx_msg_cr | |
| . " RSDDS_CHANGERUN_MONITOR | ||
ABAP code using 7.40 inline data declarations to call FM RSDDS_CHANGERUN_MONITOR
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_with_details) | = RS_C_TRUE. | |||
Search for further information about these or an SAP related objects