HRUURU30 is a standard Executable ABAP Report 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 HRUURU30 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
HRPAYRU_TRADD - Legacy data transfer additional
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: P_UNIX = Application Server
Selection Text: P_PROD = D .
Selection Text: P_PC = Local PC
Selection Text: P_FILE_W = Full Path on Local PC
Selection Text: P_FILE_U = Full Path on App. Server
Selection Text: P_DISP = D .
Selection Text: P_DEL = D .
Title: Transfer Payroll Results from Legacy System
Text Symbol: 017 = Processing Mode
Text Symbol: 016 = Successfully processed entries
Text Symbol: 015 = Entries for delete
Text Symbol: 014 = Deleted entries
Text Symbol: 013 = Rejected entries
Text Symbol: 012 = Entries for update
Text Symbol: 011 = Updated entries
Text Symbol: 010 = Entries for insert
Text Symbol: 009 = Inserted entries
Text Symbol: 008 = Processed entries
Text Symbol: 007 = Chose file for upload
Text Symbol: 006 = Corresponding entries cannot be inserted
Text Symbol: 005 = Corresponding entries cannot be deleted
Text Symbol: 004 = Corresponding entries were not inserted
Text Symbol: 003 = Corresponding entries were not deleted
Text Symbol: 002 = Selected Entries
Text Symbol: 001 = Input File Selection
INCLUDE PUTOPRU0.
INCLUDE PUSELRU7. " SELECTION SCREEN ELEMENTS
No SAP DATABASE tables are accessed within this REPORT code!
HR_PAL_GET_MSG_FIELDCAT * CALL FUNCTION 'HR_PAL_GET_MSG_FIELDCAT' * IMPORTING * e_fieldcat = lv_fieldcat.
HR_PAL_CREATE_NODE_CATEG CALL FUNCTION 'HR_PAL_CREATE_NODE_CATEG' EXPORTING i_categ_id = lv_mescat * it_fieldcat = lv_fieldcat i_with_msg_fields = 'X' i_msg_text_pos = 3 i_icon_ltext_pos = 4 EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_NODE_ADD CALL FUNCTION 'HR_PAL_NODE_ADD' EXPORTING i_relatkey = 'ROOT' i_node_txt = text-016 "Processed successfully entries * i_node_label = 'TestLabel' i_icon = icon_action_success * I_SORT_CONTEXT = * I_HEADER_NODES = * I_EXPAND = i_categ_id = lv_mescat IMPORTING e_node_key = g_parent_s_node EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_NODE_MSG_ADD CALL FUNCTION 'HR_PAL_NODE_MSG_ADD' EXPORTING i_node_key = g_parent_s_node i_msgid = 'HRPADRU_COMMON_REPS' i_msgty = lv_mesty i_msgno = '519' "&1 entries &2 successfully &3 i_msgv1 = lv_mespart1 i_msgv2 = lv_mespart2 i_msgv3 = lv_mespart3 EXCEPTIONS program_error = 1 "i_context = im_pernr-pernr OTHERS = 2.
HR_PAL_NODE_MSG_ADD CALL FUNCTION 'HR_PAL_NODE_MSG_ADD' EXPORTING i_node_key = g_parent_s_node i_msgid = 'HRPADRU_COMMON_REPS' i_msgty = lv_mesty i_msgno = '519' "&1 entries &2 successfully &3 i_msgv1 = lv_mespart1 i_msgv2 = lv_mespart2 i_msgv3 = lv_mespart3 EXCEPTIONS program_error = 1 "i_context = im_pernr-pernr OTHERS = 2.
HR_PAL_NODE_MSG_ADD CALL FUNCTION 'HR_PAL_NODE_MSG_ADD' EXPORTING i_node_key = g_parent_s_node i_msgid = 'HRPADRU_COMMON_REPS' i_msgty = lv_mesty i_msgno = '519' "&1 entries &2 successfully &3 i_msgv1 = lv_mespart1 i_msgv2 = lv_mespart2 i_msgv3 = lv_mespart3 EXCEPTIONS program_error = 1 "i_context = im_pernr-pernr OTHERS = 2.
HR_PAL_NODE_ADD CALL FUNCTION 'HR_PAL_NODE_ADD' EXPORTING i_relatkey = 'ROOT' i_node_txt = text-013 "Rejected entries * i_node_label = text-t02 i_icon = icon_action_fault * I_SORT_CONTEXT = * I_HEADER_NODES = * I_EXPAND = i_categ_id = lv_mescat IMPORTING e_node_key = g_parent_r_node EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_NODE_MSG_ADD CALL FUNCTION 'HR_PAL_NODE_MSG_ADD' EXPORTING i_node_key = g_parent_r_node i_msgid = 'HRPADRU_COMMON_REPS' i_msgty = 'E' i_msgno = lv_rejected_message-gv_msgnum i_msgv1 = lv_mespart1 i_msgv2 = lv_mespart2 i_msgv3 = lv_mespart3 i_msgv4 = lv_mespart4 EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_STATS_MSG_ADD CALL FUNCTION 'HR_PAL_STATS_MSG_ADD' EXPORTING i_stcnt = gv_selected_entries i_nodid = 'SE' * I_NODPA = * I_LVPOS = i_msgid = ls_pal_msg-msgid i_msgno = ls_pal_msg-msgno i_msgty = ls_pal_msg-msgty i_msgv1 = ls_pal_msg-msgv1 EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_STATS_MSG_ADD CALL FUNCTION 'HR_PAL_STATS_MSG_ADD' EXPORTING i_stcnt = gv_processed_entries i_nodid = 'PR' i_nodpa = 'SE' * I_LVPOS = i_msgid = ls_pal_msg-msgid i_msgno = ls_pal_msg-msgno i_msgty = ls_pal_msg-msgty i_msgv1 = ls_pal_msg-msgv1 EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_STATS_MSG_ADD CALL FUNCTION 'HR_PAL_STATS_MSG_ADD' EXPORTING i_stcnt = gv_inserted_entries i_nodid = 'IN' i_nodpa = 'PR' * I_LVPOS = i_msgid = ls_pal_msg-msgid i_msgno = ls_pal_msg-msgno i_msgty = ls_pal_msg-msgty i_msgv1 = ls_pal_msg-msgv1 EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_STATS_MSG_ADD CALL FUNCTION 'HR_PAL_STATS_MSG_ADD' EXPORTING i_stcnt = gv_updated_entries i_nodid = 'UP' i_nodpa = 'PR' * I_LVPOS = i_msgid = ls_pal_msg-msgid i_msgno = ls_pal_msg-msgno i_msgty = ls_pal_msg-msgty i_msgv1 = ls_pal_msg-msgv1 EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_STATS_MSG_ADD CALL FUNCTION 'HR_PAL_STATS_MSG_ADD' EXPORTING i_stcnt = gv_deleted_entries i_nodid = 'DE' i_nodpa = 'PR' * I_LVPOS = i_msgid = ls_pal_msg-msgid i_msgno = ls_pal_msg-msgno i_msgty = ls_pal_msg-msgty i_msgv1 = ls_pal_msg-msgv1 EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_STATS_MSG_ADD CALL FUNCTION 'HR_PAL_STATS_MSG_ADD' EXPORTING i_stcnt = gv_rejected_entries i_nodid = 'RE' i_nodpa = 'PR' * I_LVPOS = i_msgid = ls_pal_msg-msgid i_msgno = ls_pal_msg-msgno i_msgty = ls_pal_msg-msgty i_msgv1 = ls_pal_msg-msgv1 EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_LOG_DISPLAY CALL FUNCTION 'HR_PAL_LOG_DISPLAY' EXPORTING i_s_display_profile = l_hrpad_pal_disp_prof.
GUI_UPLOAD CALL FUNCTION 'GUI_UPLOAD' EXPORTING filename = lv_filename * FILETYPE = 'ASC' * has_field_separator = 'X' TABLES data_tab = lt_file_strings "gt_i558b_tax EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.