SAP HFPM_READ_RPSCO_MULTI Function Module for NOTRANSL: Baustein zum lesen der Datei RPSCO
HFPM_READ_RPSCO_MULTI is a standard hfpm read rpsco multi SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Baustein zum lesen der Datei RPSCO 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 hfpm read rpsco multi FM, simply by entering the name HFPM_READ_RPSCO_MULTI into the relevant SAP transaction such as SE37 or SE38.
Function Group: HFPM
Program Name: SAPLHFPM
Main Program: SAPLHFPM
Appliation area: K
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HFPM_READ_RPSCO_MULTI 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 'HFPM_READ_RPSCO_MULTI'"NOTRANSL: Baustein zum lesen der Datei RPSCO.
EXPORTING
* I_FROM_PERIOD = 000 "
* I_TO_PERIOD = 016 "
TABLES
IT_COSEL = "Object Numbers
ET_RPSCO = "Summarization data
EXCEPTIONS
NO_OBJECTS = 1
IMPORTING Parameters details for HFPM_READ_RPSCO_MULTI
I_FROM_PERIOD -
Data type: COSP-PERBLDefault: 000
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_TO_PERIOD -
Data type: COSP-PERBLDefault: 016
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for HFPM_READ_RPSCO_MULTI
IT_COSEL - Object Numbers
Data type: COSELOptional: No
Call by Reference: No ( called with pass by value option)
ET_RPSCO - Summarization data
Data type: RPSCOOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_OBJECTS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for HFPM_READ_RPSCO_MULTI 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: | ||||
| lt_it_cosel | TYPE STANDARD TABLE OF COSEL, " | |||
| lv_no_objects | TYPE COSEL, " | |||
| lv_i_from_period | TYPE COSP-PERBL, " 000 | |||
| lt_et_rpsco | TYPE STANDARD TABLE OF RPSCO, " | |||
| lv_i_to_period | TYPE COSP-PERBL. " 016 |
|   CALL FUNCTION 'HFPM_READ_RPSCO_MULTI' "NOTRANSL: Baustein zum lesen der Datei RPSCO |
| EXPORTING | ||
| I_FROM_PERIOD | = lv_i_from_period | |
| I_TO_PERIOD | = lv_i_to_period | |
| TABLES | ||
| IT_COSEL | = lt_it_cosel | |
| ET_RPSCO | = lt_et_rpsco | |
| EXCEPTIONS | ||
| NO_OBJECTS = 1 | ||
| . " HFPM_READ_RPSCO_MULTI | ||
ABAP code using 7.40 inline data declarations to call FM HFPM_READ_RPSCO_MULTI
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 PERBL FROM COSP INTO @DATA(ld_i_from_period). | ||||
| DATA(ld_i_from_period) | = 000. | |||
| "SELECT single PERBL FROM COSP INTO @DATA(ld_i_to_period). | ||||
| DATA(ld_i_to_period) | = 016. | |||
Search for further information about these or an SAP related objects