SAP SD_GET_TEXT_OF_FIELD Function Module for NOTRANSL: Text zum Feld ermitteln
SD_GET_TEXT_OF_FIELD is a standard sd get text of field 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: Text zum Feld ermitteln 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 sd get text of field FM, simply by entering the name SD_GET_TEXT_OF_FIELD into the relevant SAP transaction such as SE37 or SE38.
Function Group: V12B
Program Name: SAPLV12B
Main Program: SAPLV12B
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SD_GET_TEXT_OF_FIELD 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 'SD_GET_TEXT_OF_FIELD'"NOTRANSL: Text zum Feld ermitteln.
EXPORTING
I_TABNAME = "
I_FIELDNAME = "
I_VALUE = "
* I_FIELD_CHECK = ' ' "
* I_VALUE2 = "
IMPORTING
E_TEXT = "
CHANGING
* ADDITIONAL_FIELDS = "
IMPORTING Parameters details for SD_GET_TEXT_OF_FIELD
I_TABNAME -
Data type: DD03V-TABNAMEOptional: No
Call by Reference: No ( called with pass by value option)
I_FIELDNAME -
Data type: DD03V-FIELDNAMEOptional: No
Call by Reference: No ( called with pass by value option)
I_VALUE -
Data type:Optional: No
Call by Reference: Yes
I_FIELD_CHECK -
Data type:Default: ' '
Optional: Yes
Call by Reference: Yes
I_VALUE2 -
Data type:Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for SD_GET_TEXT_OF_FIELD
E_TEXT -
Data type:Optional: No
Call by Reference: Yes
CHANGING Parameters details for SD_GET_TEXT_OF_FIELD
ADDITIONAL_FIELDS -
Data type: DCFIELDDATSOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for SD_GET_TEXT_OF_FIELD 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_e_text | TYPE STRING, " | |||
| lv_i_tabname | TYPE DD03V-TABNAME, " | |||
| lv_additional_fields | TYPE DCFIELDDATS, " | |||
| lv_i_fieldname | TYPE DD03V-FIELDNAME, " | |||
| lv_i_value | TYPE DD03V, " | |||
| lv_i_field_check | TYPE DD03V, " ' ' | |||
| lv_i_value2 | TYPE DD03V. " |
|   CALL FUNCTION 'SD_GET_TEXT_OF_FIELD' "NOTRANSL: Text zum Feld ermitteln |
| EXPORTING | ||
| I_TABNAME | = lv_i_tabname | |
| I_FIELDNAME | = lv_i_fieldname | |
| I_VALUE | = lv_i_value | |
| I_FIELD_CHECK | = lv_i_field_check | |
| I_VALUE2 | = lv_i_value2 | |
| IMPORTING | ||
| E_TEXT | = lv_e_text | |
| CHANGING | ||
| ADDITIONAL_FIELDS | = lv_additional_fields | |
| . " SD_GET_TEXT_OF_FIELD | ||
ABAP code using 7.40 inline data declarations to call FM SD_GET_TEXT_OF_FIELD
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 TABNAME FROM DD03V INTO @DATA(ld_i_tabname). | ||||
| "SELECT single FIELDNAME FROM DD03V INTO @DATA(ld_i_fieldname). | ||||
| DATA(ld_i_field_check) | = ' '. | |||
Search for further information about these or an SAP related objects