RPLSPPS2_FORMS1 is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RPLSPPS2_FORMS1 into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Title: Include RPLSPPS2_FORMS1
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CU_READ_RGDIR CALL FUNCTION 'CU_READ_RGDIR' EXPORTING persnr = p_pernr TABLES in_rgdir = rgdir EXCEPTIONS no_record_found = 1 OTHERS = 2.
HR_PCLX_INIT_BUFFER CALL FUNCTION 'HR_PCLX_INIT_BUFFER'. "Initialisierung des PCLX-Puffers
CU_READ_RGDIR CALL FUNCTION 'CU_READ_RGDIR' "Read RGDIR, Cluster CU EXPORTING persnr = pernr-pernr TABLES in_rgdir = rgdir EXCEPTIONS no_record_found = 1 OTHERS = 2.
HR_GET_BUSINESS_ADD_IN CALL FUNCTION 'HR_GET_BUSINESS_ADD_IN' EXPORTING exit_name = 'HR_SE_AVE_PAID_LST3Y' IMPORTING is_implemented = is_implemented CHANGING instance = exit_obj.
HR_SE_FIRST_LAST_PAY_PERIOD CALL FUNCTION 'HR_SE_FIRST_LAST_PAY_PERIOD' EXPORTING payroll_area = pnpxabkr calendar_year = p_prev_year IMPORTING year_1st_pay_period = pper-from_pabrj first_pay_period = pper-from_pabrp year_last_pay_period = pper-to_pabrj last_pay_period = pper-to_pabrp ret = l_return.
HR_PCLX_INIT_BUFFER CALL FUNCTION 'HR_PCLX_INIT_BUFFER'. "Initialisierung des PCLX-Puffers
CU_READ_RGDIR CALL FUNCTION 'CU_READ_RGDIR' "Read RGDIR, Cluster CU EXPORTING persnr = p_pernr TABLES in_rgdir = rgdir EXCEPTIONS no_record_found = 1 OTHERS = 2.
PYXX_GET_EVALUATION_PERIODS CALL FUNCTION 'PYXX_GET_EVALUATION_PERIODS' EXPORTING clusterid = 'RS' employeenumber = p_pernr inper_modif = rgdir-permo inper = rgdir-inper TABLES evaluated_periods = periods EXCEPTIONS no_payroll_results = 1 no_entry_found_on_cu = 2 import_error = 3 OTHERS = 4.
HR_DISPLAY_ERROR_LIST CALL FUNCTION 'HR_DISPLAY_ERROR_LIST' EXPORTING no_popup = 'X' no_print = space TABLES error = p_errtab.
HR_DISPLAY_ERROR_LIST CALL FUNCTION 'HR_DISPLAY_ERROR_LIST' TABLES error = p_errtab.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.