RDMOPTCONVERTINBOUNDFILESF01 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 RDMOPTCONVERTINBOUNDFILESF01 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 RDMOPTCONVERTINBOUNDFILESF01
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING * PERCENTAGE = 0 text = 'Öffne Verbindung zum FTP-Server'(001).
HTTP_SCRAMBLE CALL FUNCTION 'HTTP_SCRAMBLE' EXPORTING SOURCE = i_pwd sourcelen = l_slen key = c_key IMPORTING destination = l_pwd.
FTP_CONNECT CALL FUNCTION 'FTP_CONNECT' EXPORTING user = i_user password = l_pwd * ACCOUNT = host = i_host rfc_destination = i_dest * GATEWAY_USER = * GATEWAY_PASSWORD = * GATEWAY_HOST = IMPORTING handle = e_handle EXCEPTIONS not_connected = 1 OTHERS = 2.
FTP_SERVER_TO_R3 CALL FUNCTION 'FTP_SERVER_TO_R3' EXPORTING handle = i_handle fname = l_filename character_mode = 'X' * IMPORTING * blob_length = TABLES * BLOB = text = et_table EXCEPTIONS tcpip_error = 1 command_error = 2 data_error = 3 OTHERS = 4.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = l_percentage text = l_progress_text.
FTP_R3_TO_SERVER CALL FUNCTION 'FTP_R3_TO_SERVER' EXPORTING handle = i_handle fname = l_filename * BLOB_LENGTH = character_mode = 'X' TABLES * BLOB = text = lt_promo EXCEPTIONS tcpip_error = 1 command_error = 2 data_error = 3 OTHERS = 4.
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = l_s_bal_s_log IMPORTING e_log_handle = g_log_handle * EXCEPTIONS * LOG_HEADER_INCONSISTENT = 1 * OTHERS = 2 .
BAL_LOG_HDR_READ CALL FUNCTION 'BAL_LOG_HDR_READ' EXPORTING i_log_handle = g_log_handle * I_LANGU = SY-LANGU IMPORTING * E_S_LOG = * E_EXISTS_ON_DB = * E_CREATED_IN_CLIENT = * E_SAVED_IN_CLIENT = * E_IS_MODIFIED = * E_LOGNUMBER = e_statistics = ls_statistics * E_TXT_OBJECT = * E_TXT_SUBOBJECT = * E_TXT_ALTCODE = * E_TXT_ALMODE = * E_TXT_ALSTATE = * E_TXT_PROBCLASS = * E_TXT_DEL_BEFORE = * E_WARNING_TEXT_NOT_FOUND = * EXCEPTIONS * LOG_NOT_FOUND = 1 * OTHERS = 2 .
BAL_DSP_PROFILE_STANDARD_GET CALL FUNCTION 'BAL_DSP_PROFILE_STANDARD_GET' IMPORTING e_s_display_profile = ls_display_profile.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = ls_display_profile i_t_log_handle = lto_bal_log * I_T_MSG_HANDLE = * I_S_LOG_FILTER = * I_S_MSG_FILTER = * I_T_LOG_CONTEXT_FILTER = * I_T_MSG_CONTEXT_FILTER = * I_AMODAL = ' ' * I_SRT_BY_TIMSTMP = ' ' * IMPORTING * E_S_EXIT_COMMAND = * EXCEPTIONS * PROFILE_INCONSISTENT = 1 * INTERNAL_ERROR = 2 * NO_DATA_AVAILABLE = 3 * NO_AUTHORITY = 4 * OTHERS = 5 .
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_log_handle = g_log_handle i_s_msg = is_msg * IMPORTING * E_S_MSG_HANDLE = * E_MSG_WAS_LOGGED = * E_MSG_WAS_DISPLAYED = * EXCEPTIONS * LOG_NOT_FOUND = 1 * MSG_INCONSISTENT = 2 * LOG_IS_FULL = 3 * OTHERS = 4 .
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING * PERCENTAGE = 0 text = 'Schließe Verbindung zum FTP-Server'(002).
FTP_DISCONNECT CALL FUNCTION 'FTP_DISCONNECT' EXPORTING handle = i_handle.
RFC_CONNECTION_CLOSE CALL FUNCTION 'RFC_CONNECTION_CLOSE' EXPORTING destination = i_dest * TASKNAME = EXCEPTIONS destination_not_open = 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.