PCEPFIN0 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 PCEPFIN0 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: Provident fund contribution
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HR_IN_GET_ALGRP * CALL FUNCTION 'HR_IN_GET_ALGRP' * EXPORTING * EMPNO = PERNR-PERNR * RFDATE = I0587-ENDDA * IMPORTING * RTALGRP = TEMP_ALGRP * EXCEPTIONS * OTHERS = 1.
HR_FEATURE_BACKTABLE CALL FUNCTION 'HR_FEATURE_BACKTABLE' EXPORTING FEATURE = '40EPF' STRUC_CONTENT = PMEPN KIND_OF_ERROR = '3' TABLES BACK = ECC_TAB * CHANGING * STATUS = * EXCEPTIONS * DUMMY = 1 * ERROR_OPERATION = 2 * NO_BACKVALUE = 3 * FEATURE_NOT_GENERATED = 4 * INVALID_SIGN_IN_FUNID = 5 * TAB_IN_REPORT_FIELD_IN_PE03 = 6 * OTHERS = 7 .
HR_IN_CALC_MONTHS CALL FUNCTION 'HR_IN_CALC_MONTHS' EXPORTING SPLIT_BEGDA = EPF-BEGDA SPLIT_ENDDA = EPF-ENDDA IMPORTING SPLIT_MONTHS_FACTOR = NUM_MON_PER_CHK.
HR_IN_CALC_MONTHS CALL FUNCTION 'HR_IN_CALC_MONTHS' EXPORTING SPLIT_BEGDA = EPF-BEGDA SPLIT_ENDDA = EPF-ENDDA IMPORTING SPLIT_MONTHS_FACTOR = NUM_MON_PER.
COMPUTE_YEARS_BETWEEN_DATES CALL FUNCTION 'COMPUTE_YEARS_BETWEEN_DATES' EXPORTING FIRST_DATE = P0002-GBDAT * MODIFY_INTERVAL = ' ' SECOND_DATE = APER-BEGDA "EPF-BEGDA IMPORTING YEARS_BETWEEN_DATES = AGE EXCEPTIONS SEQUENCE_OF_DATES_NOT_VALID = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.