SAP GET_FIELDNAME_TEXT_1 Function Module for Anzeigen der Feld- und Datenelementinformationen
GET_FIELDNAME_TEXT_1 is a standard get fieldname text 1 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Anzeigen der Feld- und Datenelementinformationen 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 get fieldname text 1 FM, simply by entering the name GET_FIELDNAME_TEXT_1 into the relevant SAP transaction such as SE37 or SE38.
Function Group: MASS_GENERAL_UTILITIES
Program Name: SAPLMASS_GENERAL_UTILITIES
Main Program: SAPLMASS_GENERAL_UTILITIES
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function GET_FIELDNAME_TEXT_1 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 'GET_FIELDNAME_TEXT_1'"Anzeigen der Feld- und Datenelementinformationen.
EXPORTING
* I_AS4LOCAL = 'A' "
* I_AS4VERS = ' ' "
I_FIELDNAME = "
* I_TABNAME = ' ' "
TABLES
E_DD03L = "
E_DD04V = "
EXCEPTIONS
ERROR_IN_PARAMETERS = 1 NOT_FOUND = 2
IMPORTING Parameters details for GET_FIELDNAME_TEXT_1
I_AS4LOCAL -
Data type: DD03L-AS4LOCALDefault: 'A'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_AS4VERS -
Data type: DD03L-AS4VERSDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FIELDNAME -
Data type: DD03L-FIELDNAMEOptional: No
Call by Reference: No ( called with pass by value option)
I_TABNAME -
Data type: DD03L-TABNAMEDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for GET_FIELDNAME_TEXT_1
E_DD03L -
Data type: DD03LOptional: No
Call by Reference: No ( called with pass by value option)
E_DD04V -
Data type: DD04VOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
ERROR_IN_PARAMETERS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for GET_FIELDNAME_TEXT_1 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_e_dd03l | TYPE STANDARD TABLE OF DD03L, " | |||
| lv_i_as4local | TYPE DD03L-AS4LOCAL, " 'A' | |||
| lv_error_in_parameters | TYPE DD03L, " | |||
| lt_e_dd04v | TYPE STANDARD TABLE OF DD04V, " | |||
| lv_i_as4vers | TYPE DD03L-AS4VERS, " SPACE | |||
| lv_not_found | TYPE DD03L, " | |||
| lv_i_fieldname | TYPE DD03L-FIELDNAME, " | |||
| lv_i_tabname | TYPE DD03L-TABNAME. " SPACE |
|   CALL FUNCTION 'GET_FIELDNAME_TEXT_1' "Anzeigen der Feld- und Datenelementinformationen |
| EXPORTING | ||
| I_AS4LOCAL | = lv_i_as4local | |
| I_AS4VERS | = lv_i_as4vers | |
| I_FIELDNAME | = lv_i_fieldname | |
| I_TABNAME | = lv_i_tabname | |
| TABLES | ||
| E_DD03L | = lt_e_dd03l | |
| E_DD04V | = lt_e_dd04v | |
| EXCEPTIONS | ||
| ERROR_IN_PARAMETERS = 1 | ||
| NOT_FOUND = 2 | ||
| . " GET_FIELDNAME_TEXT_1 | ||
ABAP code using 7.40 inline data declarations to call FM GET_FIELDNAME_TEXT_1
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 AS4LOCAL FROM DD03L INTO @DATA(ld_i_as4local). | ||||
| DATA(ld_i_as4local) | = 'A'. | |||
| "SELECT single AS4VERS FROM DD03L INTO @DATA(ld_i_as4vers). | ||||
| DATA(ld_i_as4vers) | = ' '. | |||
| "SELECT single FIELDNAME FROM DD03L INTO @DATA(ld_i_fieldname). | ||||
| "SELECT single TABNAME FROM DD03L INTO @DATA(ld_i_tabname). | ||||
| DATA(ld_i_tabname) | = ' '. | |||
Search for further information about these or an SAP related objects