PLXTVSRU_SUB 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 PLXTVSRU_SUB 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 PLXTVSRU_SUB
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SCMS_BINARY_TO_XSTRING CALL FUNCTION 'SCMS_BINARY_TO_XSTRING' EXPORTING input_length = l_size IMPORTING buffer = pv_bdap_xml TABLES binary_tab = pt_cbdap0 EXCEPTIONS OTHERS = 99.
RP_TS_OPEN CALL FUNCTION 'RP_TS_OPEN' EXPORTING tsobj = tsobj empfg = empfg EXCEPTIONS fb_call_handle = 1 fb_error = 2 fb_rsts_noconv = 3 fb_rsts_other = 4 no_object = 5 no_permission = 6 no_hr_application_file = 7 invalid_version_number = 8 wrong_report = 9 OTHERS = 10.
RSTS_READ CALL FUNCTION 'RSTS_READ' TABLES datatab = gt_cbdap0 EXCEPTIONS fb_call_handle = 1 fb_error = 2 fb_rsts_noconv = 3 fb_rsts_other = 4 OTHERS = 5.
RSTS_CLOSE CALL FUNCTION 'RSTS_CLOSE' EXCEPTIONS fb_call_handle = 1 fb_error = 2 fb_rsts_other = 3 OTHERS = 4.
HR_PAL_CREATE_NODE_CATEG CALL FUNCTION 'HR_PAL_CREATE_NODE_CATEG' EXPORTING i_categ_id = l_category i_structure_name = p_structure is_layout = l_layout EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_NODE_ADD CALL FUNCTION 'HR_PAL_NODE_ADD' EXPORTING i_relatkey = 'ROOT' i_node_txt = p_node_text i_icon = icon_read_file i_categ_id = l_category IMPORTING e_node_key = l_temse_node EXCEPTIONS program_error = 1 OTHERS = 2.
HR_PAL_NODE_ADD_ROW CALL FUNCTION 'HR_PAL_NODE_ADD_ROW' EXPORTING i_node_key = l_temse_node i_row_data =
EXCEPTIONS program_error = 1 OTHERS = 2.
HR_RU_DOWNLOAD_XML CALL FUNCTION 'HR_RU_DOWNLOAD_XML' EXPORTING IP_FNAME = ' '.
HR_RU_OUTPUT_XML CALL FUNCTION 'HR_RU_OUTPUT_XML' EXPORTING IP_FNAME = ' '.
HR_PAL_STATS_MSG_ADD CALL FUNCTION 'HR_PAL_STATS_MSG_ADD' EXPORTING i_stcnt = p_size i_msgty = l_msgty i_msgid = 'HRPADRUREPORTS' i_msgno = '543' EXCEPTIONS program_error = 1 OTHERS = 2.
HR_RU_INIT_TAB CALL FUNCTION 'HR_RU_INIT_TAB' EXPORTING ip_tab = CT_XML_DATA_TAB EXCEPTIONS init_error = 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.