RPUPENA0 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report is used to upload retroactive, payroll-relevant data from external systems...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RPUPENA0 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
PC00_M03_UPEN - Upload from External Systems
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.
Selection Text: CB_BADI = BAdI
Selection Text: CB_TEST = Test Run (No Update)
Selection Text: RB_CONFI = Overwrite SAP Data After Conf.
Selection Text: RB_LEAVE = Do Not Change SAP Data
Selection Text: RB_OVERW = Overwrite SAP Data w/o Conf.
Selection Text: P_FILE = D .
Title: Upload of Payroll-Relevant Data from External Systems
Text Symbol: 001 = Selection
Text Symbol: 002 = Options in Event of Data Conflicts
Text Symbol: 003 = Employee
Text Symbol: 004 = Records
Text Symbol: 005 = User-Specific Upload via BAdI
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HRAT_PENSION_CREATE_LOG CALL FUNCTION 'HRAT_PENSION_CREATE_LOG' EXPORTING iv_mode = lv_mode it_ext_data = gt_ext_data iv_test = cb_test.
HR_READ_INFOTYPE CALL FUNCTION 'HR_READ_INFOTYPE' EXPORTING * TCLAS = 'A' pernr = lt_pernr_socnb-pernr infty = '0002' * BEGDA = '18000101' * ENDDA = '99991231' * BYPASS_BUFFER = ' ' * LEGACY_MODE = ' ' * IMPORTING * SUBRC = TABLES infty_tab = p0002 EXCEPTIONS infty_not_found = 1 OTHERS = 2 .
HRAT_PENSION_ADD_MESSAGE CALL FUNCTION 'HRAT_PENSION_ADD_MESSAGE' EXPORTING iv_msgtype = p_msgtype iv_pernr = p_pernr iv_msgty = p_msgty iv_msgid = p_msgid iv_msgno = p_msgno iv_msgv1 = p_msgv1 iv_msgv2 = p_msgv2 iv_msgv3 = p_msgv3 iv_msgv4 = p_msgv4 iv_stcnt = p_stcnt.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.