SAP RP_GR_RESET_CUMULATIVE_AMOUNTS Function Module for Reset cumulative amounts
RP_GR_RESET_CUMULATIVE_AMOUNTS is a standard rp gr reset cumulative amounts SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Reset cumulative amounts 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 rp gr reset cumulative amounts FM, simply by entering the name RP_GR_RESET_CUMULATIVE_AMOUNTS into the relevant SAP transaction such as SE37 or SE38.
Function Group: PGRN
Program Name: SAPLPGRN
Main Program:
Appliation area: P
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RP_GR_RESET_CUMULATIVE_AMOUNTS 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 'RP_GR_RESET_CUMULATIVE_AMOUNTS'"Reset cumulative amounts.
EXPORTING
PABRD = "Present payroll date
LABRD = "Last payroll date
BABRP = "Begin of payroll period
CHANGING
* ACPRP = 0 "Amount paid in current payroll period
* AMTOD = 0 "Amount paid in current month
* AYTOD = 0 "Amount paid in current year
* GCPRP = 0 "Gross earned in current payroll period
* GMTOD = 0 "Gross earned in current month
* NCPRP = 0 "Net earned in current payroll period
* NMTOD = 0 "Net earned in current month
IMPORTING Parameters details for RP_GR_RESET_CUMULATIVE_AMOUNTS
PABRD - Present payroll date
Data type: GRALL_INT-PABRDOptional: No
Call by Reference: No ( called with pass by value option)
LABRD - Last payroll date
Data type: GRALL_INT-LABRDOptional: No
Call by Reference: No ( called with pass by value option)
BABRP - Begin of payroll period
Data type: GRALL_INT-BABRPOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for RP_GR_RESET_CUMULATIVE_AMOUNTS
ACPRP - Amount paid in current payroll period
Data type: GRDBT_INT-ACPRPOptional: Yes
Call by Reference: No ( called with pass by value option)
AMTOD - Amount paid in current month
Data type: GRDBT_INT-AMTODOptional: Yes
Call by Reference: No ( called with pass by value option)
AYTOD - Amount paid in current year
Data type: GRDBT_INT-AYTODOptional: Yes
Call by Reference: No ( called with pass by value option)
GCPRP - Gross earned in current payroll period
Data type: GRDBT_INT-GCPRPOptional: Yes
Call by Reference: No ( called with pass by value option)
GMTOD - Gross earned in current month
Data type: GRDBT_INT-GMTODOptional: Yes
Call by Reference: No ( called with pass by value option)
NCPRP - Net earned in current payroll period
Data type: GRDBT_INT-NCPRPOptional: Yes
Call by Reference: No ( called with pass by value option)
NMTOD - Net earned in current month
Data type: GRDBT_INT-NMTODOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RP_GR_RESET_CUMULATIVE_AMOUNTS 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_acprp | TYPE GRDBT_INT-ACPRP, " 0 | |||
| lv_pabrd | TYPE GRALL_INT-PABRD, " | |||
| lv_amtod | TYPE GRDBT_INT-AMTOD, " 0 | |||
| lv_labrd | TYPE GRALL_INT-LABRD, " | |||
| lv_aytod | TYPE GRDBT_INT-AYTOD, " 0 | |||
| lv_babrp | TYPE GRALL_INT-BABRP, " | |||
| lv_gcprp | TYPE GRDBT_INT-GCPRP, " 0 | |||
| lv_gmtod | TYPE GRDBT_INT-GMTOD, " 0 | |||
| lv_ncprp | TYPE GRDBT_INT-NCPRP, " 0 | |||
| lv_nmtod | TYPE GRDBT_INT-NMTOD. " 0 |
|   CALL FUNCTION 'RP_GR_RESET_CUMULATIVE_AMOUNTS' "Reset cumulative amounts |
| EXPORTING | ||
| PABRD | = lv_pabrd | |
| LABRD | = lv_labrd | |
| BABRP | = lv_babrp | |
| CHANGING | ||
| ACPRP | = lv_acprp | |
| AMTOD | = lv_amtod | |
| AYTOD | = lv_aytod | |
| GCPRP | = lv_gcprp | |
| GMTOD | = lv_gmtod | |
| NCPRP | = lv_ncprp | |
| NMTOD | = lv_nmtod | |
| . " RP_GR_RESET_CUMULATIVE_AMOUNTS | ||
ABAP code using 7.40 inline data declarations to call FM RP_GR_RESET_CUMULATIVE_AMOUNTS
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 ACPRP FROM GRDBT_INT INTO @DATA(ld_acprp). | ||||
| "SELECT single PABRD FROM GRALL_INT INTO @DATA(ld_pabrd). | ||||
| "SELECT single AMTOD FROM GRDBT_INT INTO @DATA(ld_amtod). | ||||
| "SELECT single LABRD FROM GRALL_INT INTO @DATA(ld_labrd). | ||||
| "SELECT single AYTOD FROM GRDBT_INT INTO @DATA(ld_aytod). | ||||
| "SELECT single BABRP FROM GRALL_INT INTO @DATA(ld_babrp). | ||||
| "SELECT single GCPRP FROM GRDBT_INT INTO @DATA(ld_gcprp). | ||||
| "SELECT single GMTOD FROM GRDBT_INT INTO @DATA(ld_gmtod). | ||||
| "SELECT single NCPRP FROM GRDBT_INT INTO @DATA(ld_ncprp). | ||||
| "SELECT single NMTOD FROM GRDBT_INT INTO @DATA(ld_nmtod). | ||||
Search for further information about these or an SAP related objects