SAP RSSM_CHECK_STATUS_REQ_IC Function Module for Status checkl/calculate for each request in the IC
RSSM_CHECK_STATUS_REQ_IC is a standard rssm check status req ic SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Status checkl/calculate for each request in the IC 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 rssm check status req ic FM, simply by entering the name RSSM_CHECK_STATUS_REQ_IC into the relevant SAP transaction such as SE37 or SE38.
Function Group: RSM1
Program Name: SAPLRSM1
Main Program: SAPLRSM1
Appliation area: B
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RSSM_CHECK_STATUS_REQ_IC 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 'RSSM_CHECK_STATUS_REQ_IC'"Status checkl/calculate for each request in the IC.
EXPORTING
I_RNR = "
I_CUBE = "
I_S_RSMDATASTATE = "
I_SID = "
* I_2ND_CONNECTION = ' ' "Boolean
IMPORTING
E_CHANGED = "
E_UNPROCESSED_DP = "
TABLES
L_T_RSMONICDP = "
IMPORTING Parameters details for RSSM_CHECK_STATUS_REQ_IC
I_RNR -
Data type: RSICCONT-RNROptional: No
Call by Reference: Yes
I_CUBE -
Data type: RSICCONT-ICUBEOptional: No
Call by Reference: Yes
I_S_RSMDATASTATE -
Data type: RSMDATASTATE_SOptional: No
Call by Reference: Yes
I_SID -
Data type: RSSIDOptional: No
Call by Reference: Yes
I_2ND_CONNECTION - Boolean
Data type: RS_BOOLDefault: SPACE
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for RSSM_CHECK_STATUS_REQ_IC
E_CHANGED -
Data type: CHAR1Optional: No
Call by Reference: Yes
E_UNPROCESSED_DP -
Data type: CHAR1Optional: No
Call by Reference: Yes
TABLES Parameters details for RSSM_CHECK_STATUS_REQ_IC
L_T_RSMONICDP -
Data type: RSMONICDPOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RSSM_CHECK_STATUS_REQ_IC 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_i_rnr | TYPE RSICCONT-RNR, " | |||
| lv_e_changed | TYPE CHAR1, " | |||
| lt_l_t_rsmonicdp | TYPE STANDARD TABLE OF RSMONICDP, " | |||
| lv_i_cube | TYPE RSICCONT-ICUBE, " | |||
| lv_e_unprocessed_dp | TYPE CHAR1, " | |||
| lv_i_s_rsmdatastate | TYPE RSMDATASTATE_S, " | |||
| lv_i_sid | TYPE RSSID, " | |||
| lv_i_2nd_connection | TYPE RS_BOOL. " SPACE |
|   CALL FUNCTION 'RSSM_CHECK_STATUS_REQ_IC' "Status checkl/calculate for each request in the IC |
| EXPORTING | ||
| I_RNR | = lv_i_rnr | |
| I_CUBE | = lv_i_cube | |
| I_S_RSMDATASTATE | = lv_i_s_rsmdatastate | |
| I_SID | = lv_i_sid | |
| I_2ND_CONNECTION | = lv_i_2nd_connection | |
| IMPORTING | ||
| E_CHANGED | = lv_e_changed | |
| E_UNPROCESSED_DP | = lv_e_unprocessed_dp | |
| TABLES | ||
| L_T_RSMONICDP | = lt_l_t_rsmonicdp | |
| . " RSSM_CHECK_STATUS_REQ_IC | ||
ABAP code using 7.40 inline data declarations to call FM RSSM_CHECK_STATUS_REQ_IC
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.| "SELECT single RNR FROM RSICCONT INTO @DATA(ld_i_rnr). | ||||
| "SELECT single ICUBE FROM RSICCONT INTO @DATA(ld_i_cube). | ||||
| DATA(ld_i_2nd_connection) | = ' '. | |||
Search for further information about these or an SAP related objects