RPUTMPE0 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 RPUTMPE0 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HR_DISPLAY_BASIC_LIST CALL FUNCTION 'HR_DISPLAY_BASIC_LIST' EXPORTING basic_list_title = sy-title file_name = myreport head_line1 = p_record_control-record_title head_line2 = headline2 foot_note3 = p_temse_object-full_name list_level = p_record_control-screen current_report = myreport * data_structure = p_record_control-structure TABLES data_tab = t_input_table fieldname_tab = p_field_name_table EXCEPTIONS download_problem = 1 no_data_tab_entries = 2 table_mismatch = 3 print_problems = 4 OTHERS = 5.
HR_99S_DOWNLOAD CALL FUNCTION 'HR_99S_DOWNLOAD' EXPORTING p_bin_filesize = size_tab p_filetype = 'BIN' p_filename = l_filename TABLES data_tab = p_temse_tab EXCEPTIONS file_save_dialog = 1 file_write_error = 2 no_batch = 3 gui_refuse_filetransfer = 4 invalid_type = 5 unknown_error = 6 wrong_tab_format = 7 OTHERS = 8.
HR_99S_DOWNLOAD CALL FUNCTION 'HR_99S_DOWNLOAD' EXPORTING p_bin_filesize = size_tab p_filetype = lv_file_type p_filename = l_filename TABLES data_tab = p_temse_tab EXCEPTIONS file_save_dialog = 1 file_write_error = 2 no_batch = 3 gui_refuse_filetransfer = 4 invalid_type = 5 unknown_error = 6 wrong_tab_format = 7 OTHERS = 8.
POPUP_TO_DECIDE_WITH_MESSAGE * CALL FUNCTION 'POPUP_TO_DECIDE_WITH_MESSAGE' * EXPORTING * diagnosetext1 = '¿Qué formato desea utilizar?'(t01) * textline1 = ' ' * text_option1 = 'BIN' * text_option2 = 'VSS' * titel = 'Formato de datos'(t02) * IMPORTING * answer = antwort.
HR_99S_DOWNLOAD * CALL FUNCTION 'HR_99S_DOWNLOAD' * EXPORTING * p_bin_filesize = l_bin_filesize ** P_INITIAL_DIRECTORY = 'C:\TEMP\' ** P_FILENAME = * p_filetype = 'BIN' ** P_WRITE_LF = 'X' * p_fsdialog = 'X' ** P_APPEND = ** P_ITEM = ' ' ** IMPORTING ** P_FILELENGTH = ** P_FULLPATH = * TABLES * data_tab = tab_char * EXCEPTIONS * file_save_dialog = 1 * file_write_error = 2 * no_batch = 3 * gui_refuse_filetransfer = 4 * invalid_type = 5 * unknown_error = 6 * wrong_tab_format = 7 * OTHERS = 8 * .
HR_99S_DOWNLOAD CALL FUNCTION 'HR_99S_DOWNLOAD' EXPORTING p_bin_filesize = l_bin_filesize P_FILENAME = l_filename p_filetype = 'BIN' p_fsdialog = 'X' TABLES data_tab = tab_raw EXCEPTIONS file_save_dialog = 1 file_write_error = 2 no_batch = 3 gui_refuse_filetransfer = 4 invalid_type = 5 unknown_error = 6 wrong_tab_format = 7 OTHERS = 8.
SCP_REPLACE_STRANGE_CHARS CALL FUNCTION 'SCP_REPLACE_STRANGE_CHARS' EXPORTING intext = lv_intext111 INTER_BASE_CP = '1100' REPLACEMENT = 32 IMPORTING OUTTEXT = lv_outtext111 EXCEPTIONS INVALID_CODEPAGE = 1 CODEPAGE_MISMATCH = 2 INTERNAL_ERROR = 3 CANNOT_CONVERT = 4 FIELDS_NOT_TYPE_C = 5 OTHERS = 6 .
SCP_CODEPAGE_FOR_LANGUAGE CALL FUNCTION 'SCP_CODEPAGE_FOR_LANGUAGE' EXPORTING language = sy-langu IMPORTING codepage = lv_system_codepage.
SCP_REPLACE_STRANGE_CHARS CALL FUNCTION 'SCP_REPLACE_STRANGE_CHARS' EXPORTING intext = lv_intext INTER_BASE_CP = '1100' REPLACEMENT = 32 IMPORTING OUTTEXT = lv_outtext EXCEPTIONS INVALID_CODEPAGE = 1 CODEPAGE_MISMATCH = 2 INTERNAL_ERROR = 3 CANNOT_CONVERT = 4 FIELDS_NOT_TYPE_C = 5 OTHERS = 6.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.