SAP TEXT_CONVERT_TEX_TO_SAP Function Module for NOTRANSL: Dekodierung PC Formaten mit Fieldseperator in SAP Daten
TEXT_CONVERT_TEX_TO_SAP is a standard text convert tex to sap 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: Dekodierung PC Formaten mit Fieldseperator in SAP Daten 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 text convert tex to sap FM, simply by entering the name TEXT_CONVERT_TEX_TO_SAP 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 TEXT_CONVERT_TEX_TO_SAP 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 'TEXT_CONVERT_TEX_TO_SAP'"NOTRANSL: Dekodierung PC Formaten mit Fieldseperator in SAP Daten.
EXPORTING
* I_FIELD_SEPERATOR = "Character Field Length 1
* I_LINE_HEADER = "Character Field Length 1
I_TAB_RAW_DATA = "
* I_FILENAME = "Local file for upload/download
TABLES
I_TAB_CONVERTED_DATA = "Predefined Type
EXCEPTIONS
CONVERSION_FAILED = 1
IMPORTING Parameters details for TEXT_CONVERT_TEX_TO_SAP
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_TAB_RAW_DATA -
Data type: TRUXS_T_TEXT_DATAOptional: No
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)
TABLES Parameters details for TEXT_CONVERT_TEX_TO_SAP
I_TAB_CONVERTED_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 TEXT_CONVERT_TEX_TO_SAP 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: | ||||
| lv_conversion_failed | TYPE STRING, " | |||
| lv_i_field_seperator | TYPE CHAR01, " | |||
| lt_i_tab_converted_data | TYPE STANDARD TABLE OF STANDARD TABLE, " | |||
| lv_i_line_header | TYPE CHAR01, " | |||
| lv_i_tab_raw_data | TYPE TRUXS_T_TEXT_DATA, " | |||
| lv_i_filename | TYPE RLGRAP-FILENAME. " |
|   CALL FUNCTION 'TEXT_CONVERT_TEX_TO_SAP' "NOTRANSL: Dekodierung PC Formaten mit Fieldseperator in SAP Daten |
| EXPORTING | ||
| I_FIELD_SEPERATOR | = lv_i_field_seperator | |
| I_LINE_HEADER | = lv_i_line_header | |
| I_TAB_RAW_DATA | = lv_i_tab_raw_data | |
| I_FILENAME | = lv_i_filename | |
| TABLES | ||
| I_TAB_CONVERTED_DATA | = lt_i_tab_converted_data | |
| EXCEPTIONS | ||
| CONVERSION_FAILED = 1 | ||
| . " TEXT_CONVERT_TEX_TO_SAP | ||
ABAP code using 7.40 inline data declarations to call FM TEXT_CONVERT_TEX_TO_SAP
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). | ||||
Search for further information about these or an SAP related objects