RFIDHU_DSP_F05 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 RFIDHU_DSP_F05 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 RFIDHU_DSP_F05 - XML handling
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ADDR_SELECT_ADRC_SINGLE CALL FUNCTION 'ADDR_SELECT_ADRC_SINGLE' EXPORTING addrnumber = ls_t001-adrnr TABLES et_adrc = lt_adrc.
DMEE_START CALL FUNCTION 'DMEE_START' EXPORTING i_tree_type = lc_trty i_tree_id = lc_trid item = ls_dmee_item uparam = ls_dmee_param TABLES file_output = lt_dmee_output sort_fields = lt_dmee_sort_flds.
TAX_REP_SORT_DMEE_TABLE CALL FUNCTION 'TAX_REP_SORT_DMEE_TABLE' TABLES t_item = lt_dmee_item t_dme_sortfields = lt_dmee_sort_flds.
DMEE_EXIT_HU_DSLH_RESET CALL FUNCTION 'DMEE_EXIT_HU_DSLH_RESET'.
DMEE_PUT_ITEM CALL FUNCTION 'DMEE_PUT_ITEM' EXPORTING item = ls_dmee_item param = ls_dmee_param * uparam = formatspec TABLES file_output = lt_dmee_output.
DMEE_END CALL FUNCTION 'DMEE_END' TABLES file_output = lt_dmee_output.
SCMS_XSTRING_TO_BINARY CALL FUNCTION 'SCMS_XSTRING_TO_BINARY' EXPORTING buffer = gd_xml_x IMPORTING output_length = gd_ressize TABLES binary_tab = lt_restab[].
GUI_DOWNLOAD CALL FUNCTION 'GUI_DOWNLOAD' EXPORTING bin_filesize = gd_ressize filename = ld_filename filetype = 'BIN' TABLES data_tab = lt_restab EXCEPTIONS OTHERS = 1.
DMEE_GET_XML_DATA CALL FUNCTION 'DMEE_GET_XML_DATA' IMPORTING e_document = lo_xmldoc e_xmlsize = ld_size TABLES t_xmltable = lt_dummy_table.
SDIXML_DOM_TO_XML CALL FUNCTION 'SDIXML_DOM_TO_XML' EXPORTING document = lo_xmldoc pretty_print = ' ' IMPORTING xml_as_string = ld_xml_x EXCEPTIONS no_document = 1 OTHERS = 2.
SCMS_STRING_TO_XSTRING * CALL FUNCTION 'SCMS_STRING_TO_XSTRING' * EXPORTING * text = ld_xml * IMPORTING * buffer = gd_xml_x * EXCEPTIONS * failed = 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.