RPCXMLK0_VALIDATE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for HR Canada XML: XML File Validation in Relation to XML Schema This utility enables your enterprise to validate XML files in relation to the corresponding XML schema...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 RPCXMLK0_VALIDATE 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.
Selection Text: P_FILE = XML File name
Selection Text: P_SCHEMA = XML Schema name
Title: XML File Validation in Relation to XML Schema
Text Symbol: S01 = Selection
Text Symbol: T01 = XML File Validation: Application Log
Text Symbol: T02 = Open XML File
Text Symbol: T03 = Open XML Schema
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
WS_QUERY CALL FUNCTION 'WS_QUERY' EXPORTING filename = p_file query = 'FE' IMPORTING return = l_plat_compat EXCEPTIONS inv_query = 1 no_batch = 2 frontend_error = 3 OTHERS = 4.
WS_QUERY CALL FUNCTION 'WS_QUERY' EXPORTING filename = p_schema query = 'FE' IMPORTING return = l_plat_compat EXCEPTIONS inv_query = 1 no_batch = 2 frontend_error = 3 OTHERS = 4.
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = ls_log EXCEPTIONS log_header_inconsistent = 1 OTHERS = 2.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_s_msg = ls_msg EXCEPTIONS log_not_found = 1 msg_inconsistent = 2 log_is_full = 3 OTHERS = 4.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = ls_display_profile EXCEPTIONS profile_inconsistent = 1 internal_error = 2 no_data_available = 3 no_authority = 4 OTHERS = 5.
RS_SET_SELSCREEN_STATUS CALL FUNCTION 'RS_SET_SELSCREEN_STATUS' EXPORTING p_status = sy-pfkey p_program = sy-cprog TABLES p_exclude = lt_ucomm.
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING dyname = sy-cprog dynumb = sy-dynnr TABLES dynpfields = lt_dynval EXCEPTIONS invalid_abapworkarea = 1 invalid_dynprofield = 2 invalid_dynproname = 3 invalid_dynpronummer = 4 invalid_request = 5 no_fielddescription = 6 invalid_parameter = 7 undefind_error = 8 double_conversion = 9 stepl_not_found = 10 OTHERS = 11.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.