SAP SAP_CONVERT_TO_TXT_FORMAT Function Module for NOTRANSL: SAP Datenformat nach TXT Format konvertieren
SAP_CONVERT_TO_TXT_FORMAT is a standard sap convert to txt format SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: SAP Datenformat nach TXT Format konvertieren processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for sap convert to txt format FM, simply by entering the name SAP_CONVERT_TO_TXT_FORMAT into the relevant SAP transaction such as SE37 or SE38.
Function Group: TRUX
Program Name: SAPLTRUX
Main Program: SAPLTRUX
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SAP_CONVERT_TO_TXT_FORMAT pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'SAP_CONVERT_TO_TXT_FORMAT'"NOTRANSL: SAP Datenformat nach TXT Format konvertieren.
EXPORTING
* I_FIELD_SEPERATOR = "Character Field Length 1
* I_LINE_HEADER = "Character Field Length 1
* I_FILENAME = "Local file for upload/download
* I_APPL_KEEP = ' ' "Character Field Length 1
CHANGING
* I_TAB_CONVERTED_DATA = "
TABLES
I_TAB_SAP_DATA = "Predefined Type
EXCEPTIONS
CONVERSION_FAILED = 1
IMPORTING Parameters details for SAP_CONVERT_TO_TXT_FORMAT
I_FIELD_SEPERATOR - Character Field Length 1
Data type: CHAR01Optional: Yes
Call by Reference: No ( called with pass by value option)
I_LINE_HEADER - Character Field Length 1
Data type: CHAR01Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FILENAME - Local file for upload/download
Data type: RLGRAP-FILENAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_APPL_KEEP - Character Field Length 1
Data type: CHAR01Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for SAP_CONVERT_TO_TXT_FORMAT
I_TAB_CONVERTED_DATA -
Data type: TRUXS_T_TEXT_DATAOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for SAP_CONVERT_TO_TXT_FORMAT
I_TAB_SAP_DATA - Predefined Type
Data type: STANDARD TABLEOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
CONVERSION_FAILED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SAP_CONVERT_TO_TXT_FORMAT Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lt_i_tab_sap_data | TYPE STANDARD TABLE OF STANDARD TABLE, " | |||
| lv_conversion_failed | TYPE STANDARD TABLE, " | |||
| lv_i_field_seperator | TYPE CHAR01, " | |||
| lv_i_tab_converted_data | TYPE TRUXS_T_TEXT_DATA, " | |||
| lv_i_line_header | TYPE CHAR01, " | |||
| lv_i_filename | TYPE RLGRAP-FILENAME, " | |||
| lv_i_appl_keep | TYPE CHAR01. " SPACE |
|   CALL FUNCTION 'SAP_CONVERT_TO_TXT_FORMAT' "NOTRANSL: SAP Datenformat nach TXT Format konvertieren |
| EXPORTING | ||
| I_FIELD_SEPERATOR | = lv_i_field_seperator | |
| I_LINE_HEADER | = lv_i_line_header | |
| I_FILENAME | = lv_i_filename | |
| I_APPL_KEEP | = lv_i_appl_keep | |
| CHANGING | ||
| I_TAB_CONVERTED_DATA | = lv_i_tab_converted_data | |
| TABLES | ||
| I_TAB_SAP_DATA | = lt_i_tab_sap_data | |
| EXCEPTIONS | ||
| CONVERSION_FAILED = 1 | ||
| . " SAP_CONVERT_TO_TXT_FORMAT | ||
ABAP code using 7.40 inline data declarations to call FM SAP_CONVERT_TO_TXT_FORMAT
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single FILENAME FROM RLGRAP INTO @DATA(ld_i_filename). | ||||
| DATA(ld_i_appl_keep) | = ' '. | |||
Search for further information about these or an SAP related objects