SAP HR99L00_LAST_CUMULATION_PER Function Module for Get last payroll period in a cumulation year
HR99L00_LAST_CUMULATION_PER is a standard hr99l00 last cumulation per SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get last payroll period in a cumulation year 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 hr99l00 last cumulation per FM, simply by entering the name HR99L00_LAST_CUMULATION_PER into the relevant SAP transaction such as SE37 or SE38.
Function Group: HR99L00_CUMULATIONS
Program Name: SAPLHR99L00_CUMULATIONS
Main Program: SAPLHR99L00_CUMULATIONS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function HR99L00_LAST_CUMULATION_PER 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 'HR99L00_LAST_CUMULATION_PER'"Get last payroll period in a cumulation year.
EXPORTING
MOLGA = "Country Grouping
CUMTY = "Cumulation Type
CUMNO = "Cumulation Interval Number
CUMYR = "Cumulation Interval Year
DATE = "Key date
RGDIR = "Directory of Payroll Results
* READ_INPER = "Reading with In Period technic
IMPORTING
SEQNR = "Sequential number
EXCEPTIONS
NO_RGDIR_ENTRY = 1 ERROR_READ_T549A = 2 CUSTOMIZING_INCOMPLETE = 3
IMPORTING Parameters details for HR99L00_LAST_CUMULATION_PER
MOLGA - Country Grouping
Data type: MOLGAOptional: No
Call by Reference: No ( called with pass by value option)
CUMTY - Cumulation Type
Data type: PBAS_CUMTYOptional: No
Call by Reference: No ( called with pass by value option)
CUMNO - Cumulation Interval Number
Data type: PBAS_CUMNOOptional: No
Call by Reference: No ( called with pass by value option)
CUMYR - Cumulation Interval Year
Data type: PBAS_CUMYROptional: No
Call by Reference: No ( called with pass by value option)
DATE - Key date
Data type: SYDATUMOptional: No
Call by Reference: No ( called with pass by value option)
RGDIR - Directory of Payroll Results
Data type: HRPY_TT_RGDIROptional: No
Call by Reference: Yes
READ_INPER - Reading with In Period technic
Data type: XFELDOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for HR99L00_LAST_CUMULATION_PER
SEQNR - Sequential number
Data type: CDSEQOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_RGDIR_ENTRY - No entry in RGDIR table
Data type:Optional: No
Call by Reference: Yes
ERROR_READ_T549A - Error reading table T549A
Data type:Optional: No
Call by Reference: Yes
CUSTOMIZING_INCOMPLETE - Customizing incomplete
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for HR99L00_LAST_CUMULATION_PER 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_molga | TYPE MOLGA, " | |||
| lv_seqnr | TYPE CDSEQ, " | |||
| lv_no_rgdir_entry | TYPE CDSEQ, " | |||
| lv_cumty | TYPE PBAS_CUMTY, " | |||
| lv_error_read_t549a | TYPE PBAS_CUMTY, " | |||
| lv_cumno | TYPE PBAS_CUMNO, " | |||
| lv_customizing_incomplete | TYPE PBAS_CUMNO, " | |||
| lv_cumyr | TYPE PBAS_CUMYR, " | |||
| lv_date | TYPE SYDATUM, " | |||
| lv_rgdir | TYPE HRPY_TT_RGDIR, " | |||
| lv_read_inper | TYPE XFELD. " |
|   CALL FUNCTION 'HR99L00_LAST_CUMULATION_PER' "Get last payroll period in a cumulation year |
| EXPORTING | ||
| MOLGA | = lv_molga | |
| CUMTY | = lv_cumty | |
| CUMNO | = lv_cumno | |
| CUMYR | = lv_cumyr | |
| DATE | = lv_date | |
| RGDIR | = lv_rgdir | |
| READ_INPER | = lv_read_inper | |
| IMPORTING | ||
| SEQNR | = lv_seqnr | |
| EXCEPTIONS | ||
| NO_RGDIR_ENTRY = 1 | ||
| ERROR_READ_T549A = 2 | ||
| CUSTOMIZING_INCOMPLETE = 3 | ||
| . " HR99L00_LAST_CUMULATION_PER | ||
ABAP code using 7.40 inline data declarations to call FM HR99L00_LAST_CUMULATION_PER
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