SAP RSSEM_INFOPROV_STATUS Function Module for SEM-BCS: Status reporting
RSSEM_INFOPROV_STATUS is a standard rssem infoprov status SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for SEM-BCS: Status reporting 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 rssem infoprov status FM, simply by entering the name RSSEM_INFOPROV_STATUS into the relevant SAP transaction such as SE37 or SE38.
Function Group: RSSEM_UCR0
Program Name: SAPLRSSEM_UCR0
Main Program: SAPLRSSEM_UCR0
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RSSEM_INFOPROV_STATUS 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 'RSSEM_INFOPROV_STATUS'"SEM-BCS: Status reporting.
EXPORTING
I_INFOPROV = "InfoProvider
I_KEYDATE = "
I_TH_SFC = "BW Data Manager: List of Characteristics
I_TH_SFK = "BW Data Manager: List of Key Figures
I_T_RANGE = "BW Data Manager: Range List
* I_TX_RANGETAB = "BW Data Manager: Table from Range List
I_FIRST_CALL = "Boolean
I_PACKAGESIZE = "
IMPORTING
E_T_DATA = "
E_END_OF_DATA = "Boolean
E_T_MSG = "BW: Table with Messages (Application Log)
EXCEPTIONS
ERROR_IN_BCS = 1
IMPORTING Parameters details for RSSEM_INFOPROV_STATUS
I_INFOPROV - InfoProvider
Data type: RSINFOPROVOptional: No
Call by Reference: Yes
I_KEYDATE -
Data type: RSDRC_SRDATEOptional: No
Call by Reference: Yes
I_TH_SFC - BW Data Manager: List of Characteristics
Data type: RSDRI_TH_SFCOptional: No
Call by Reference: Yes
I_TH_SFK - BW Data Manager: List of Key Figures
Data type: RSDRI_TH_SFKOptional: No
Call by Reference: Yes
I_T_RANGE - BW Data Manager: Range List
Data type: RSDRI_T_RANGEOptional: No
Call by Reference: Yes
I_TX_RANGETAB - BW Data Manager: Table from Range List
Data type: RSDRI_TX_RANGETABOptional: Yes
Call by Reference: Yes
I_FIRST_CALL - Boolean
Data type: RS_BOOLOptional: No
Call by Reference: Yes
I_PACKAGESIZE -
Data type: IOptional: No
Call by Reference: Yes
EXPORTING Parameters details for RSSEM_INFOPROV_STATUS
E_T_DATA -
Data type: STANDARD TABLEOptional: No
Call by Reference: Yes
E_END_OF_DATA - Boolean
Data type: RS_BOOLOptional: No
Call by Reference: Yes
E_T_MSG - BW: Table with Messages (Application Log)
Data type: RS_T_MSGOptional: No
Call by Reference: Yes
EXCEPTIONS details
ERROR_IN_BCS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RSSEM_INFOPROV_STATUS 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_t_data | TYPE STANDARD TABLE, " | |||
| lv_i_infoprov | TYPE RSINFOPROV, " | |||
| lv_error_in_bcs | TYPE RSINFOPROV, " | |||
| lv_i_keydate | TYPE RSDRC_SRDATE, " | |||
| lv_e_end_of_data | TYPE RS_BOOL, " | |||
| lv_e_t_msg | TYPE RS_T_MSG, " | |||
| lv_i_th_sfc | TYPE RSDRI_TH_SFC, " | |||
| lv_i_th_sfk | TYPE RSDRI_TH_SFK, " | |||
| lv_i_t_range | TYPE RSDRI_T_RANGE, " | |||
| lv_i_tx_rangetab | TYPE RSDRI_TX_RANGETAB, " | |||
| lv_i_first_call | TYPE RS_BOOL, " | |||
| lv_i_packagesize | TYPE I. " |
|   CALL FUNCTION 'RSSEM_INFOPROV_STATUS' "SEM-BCS: Status reporting |
| EXPORTING | ||
| I_INFOPROV | = lv_i_infoprov | |
| I_KEYDATE | = lv_i_keydate | |
| I_TH_SFC | = lv_i_th_sfc | |
| I_TH_SFK | = lv_i_th_sfk | |
| I_T_RANGE | = lv_i_t_range | |
| I_TX_RANGETAB | = lv_i_tx_rangetab | |
| I_FIRST_CALL | = lv_i_first_call | |
| I_PACKAGESIZE | = lv_i_packagesize | |
| IMPORTING | ||
| E_T_DATA | = lv_e_t_data | |
| E_END_OF_DATA | = lv_e_end_of_data | |
| E_T_MSG | = lv_e_t_msg | |
| EXCEPTIONS | ||
| ERROR_IN_BCS = 1 | ||
| . " RSSEM_INFOPROV_STATUS | ||
ABAP code using 7.40 inline data declarations to call FM RSSEM_INFOPROV_STATUS
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.Search for further information about these or an SAP related objects