RPCSDFRI 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 RPCSDFRI 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING PERNR = PERNR INFTY = I_INFTY BEGDA = PARTICIPANT-EVBEG ENDDA = PARTICIPANT-EVBEG IMPORTING SUBRC = SUBRC TABLES INFTY_TAB = IT_TAB EXCEPTIONS INFTY_NOT_FOUND = 1 OTHERS = 2.
COMPUTE_YEARS_BETWEEN_DATES CALL FUNCTION 'COMPUTE_YEARS_BETWEEN_DATES' EXPORTING FIRST_DATE = I0002-GBDAT SECOND_DATE = PARTICIPANT-EVBEG MODIFY_INTERVAL = SPACE IMPORTING YEARS_BETWEEN_DATES = P_AGE.
RP_FILL_WAGE_TYPE_TABLE_EXT * CALL FUNCTION 'RP_FILL_WAGE_TYPE_TABLE_EXT' * EXPORTING * APPLI = 'P' * PERNR = PERNR * INFTY = '0008' * BEGDA = PARTICIPANT-EVBEG * ENDDA = PARTICIPANT-EVBEG ** subty = psubty ** objps = pobjps ** seqnr = pseqnr * TABLES * PP0001 = I0001 * PP0007 = I0007 * PP0008 = I0008 * PPBWLA = PPBWLA * EXCEPTIONS * ERROR_AT_INDIRECT_EVALUATION = 1.
RP_CONVERT_WAGE_TYPE_TABLE * CALL FUNCTION 'RP_CONVERT_WAGE_TYPE_TABLE' * EXPORTING * WAERS = 'SGD' * DATUM = PARTICIPANT-EVBEG * TABLES * PPBWLA = PPBWLA * EXCEPTIONS * ERROR_AT_INDIRECT_EVALUATION = 1.
RP_SALARY_GENERIC_CALC CALL FUNCTION 'RP_SALARY_GENERIC_CALC' EXPORTING PERSONNEL_NUMBER = PERNR EVAL_WAGE_TYPE = 'SSDF' CURRENCY = 'SGD' SALARY_AS_OF_DATE = PARTICIPANT-EVBEG BEGIN_OF_EVALUATION = PARTICIPANT-EVBEG END_OF_EVALUATION = PARTICIPANT-EVBEG FREQUENCY = '01' USE_IT0008 = 'X' USE_IT0014 = 'X' USE_IT0015 = 'X' IMPORTING SALARY = AMOUNT_0008 EXCEPTIONS ERROR_READ_0001 = 1 ERROR_READ_0008 = 2 ERROR_READ_0014 = 3 ERROR_READ_0015 = 4 NO_ENTRY_T511 = 5 ERROR_AT_INDIRECT_EVALUATION = 6 INTERNAL_ERROR = 7 OTHERS = 8.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING PERNR = PERNR INFTY = I_INFTY BEGDA = I0002-GBDAT ENDDA = PARTICIPANT-EVBEG IMPORTING SUBRC = SUBRC TABLES INFTY_TAB = IT_TAB EXCEPTIONS INFTY_NOT_FOUND = 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.