SAP HRPP_STORE_TASK_RESULT Function Module for









HRPP_STORE_TASK_RESULT is a standard hrpp store task result SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 hrpp store task result FM, simply by entering the name HRPP_STORE_TASK_RESULT into the relevant SAP transaction such as SE37 or SE38.

Function Group: HRPP_ARFC
Program Name: SAPLHRPP_ARFC
Main Program: SAPLHRPP_ARFC
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function HRPP_STORE_TASK_RESULT 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 'HRPP_STORE_TASK_RESULT'"
EXPORTING
RUNID = "
RUNTYPE = "
DELETE = "
PROCESSED_PERNRS = "
PCALAC = "
PPOIX = "
PPOPX = "
PPMIX = "
PPMPX = "

EXCEPTIONS
DATABASE_ERROR = 1
.



IMPORTING Parameters details for HRPP_STORE_TASK_RESULT

RUNID -

Data type: P_EVNUM
Optional: No
Call by Reference: No ( called with pass by value option)

RUNTYPE -

Data type: P_EVTYP
Optional: No
Call by Reference: No ( called with pass by value option)

DELETE -

Data type: BOOLE_D
Optional: No
Call by Reference: No ( called with pass by value option)

PROCESSED_PERNRS -

Data type: HRPP_T_PERNR
Optional: No
Call by Reference: Yes

PCALAC -

Data type: HRPP_T_PCALAC_PART
Optional: No
Call by Reference: Yes

PPOIX -

Data type: HRPP_T_PPOIX
Optional: No
Call by Reference: Yes

PPOPX -

Data type: HRPP_T_PPOPX
Optional: No
Call by Reference: Yes

PPMIX -

Data type: HRPP_T_PPMIX
Optional: No
Call by Reference: Yes

PPMPX -

Data type: HRPP_T_PPMPX
Optional: No
Call by Reference: Yes

EXCEPTIONS details

DATABASE_ERROR -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for HRPP_STORE_TASK_RESULT 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_runid  TYPE P_EVNUM, "   
lv_database_error  TYPE P_EVNUM, "   
lv_runtype  TYPE P_EVTYP, "   
lv_delete  TYPE BOOLE_D, "   
lv_processed_pernrs  TYPE HRPP_T_PERNR, "   
lv_pcalac  TYPE HRPP_T_PCALAC_PART, "   
lv_ppoix  TYPE HRPP_T_PPOIX, "   
lv_ppopx  TYPE HRPP_T_PPOPX, "   
lv_ppmix  TYPE HRPP_T_PPMIX, "   
lv_ppmpx  TYPE HRPP_T_PPMPX. "   

  CALL FUNCTION 'HRPP_STORE_TASK_RESULT'  "
    EXPORTING
         RUNID = lv_runid
         RUNTYPE = lv_runtype
         DELETE = lv_delete
         PROCESSED_PERNRS = lv_processed_pernrs
         PCALAC = lv_pcalac
         PPOIX = lv_ppoix
         PPOPX = lv_ppopx
         PPMIX = lv_ppmix
         PPMPX = lv_ppmpx
    EXCEPTIONS
        DATABASE_ERROR = 1
. " HRPP_STORE_TASK_RESULT




ABAP code using 7.40 inline data declarations to call FM HRPP_STORE_TASK_RESULT

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!