SAP CRM_FIELD_LABEL_GET Function Module for IS-M - CRM Portals: Read Field Labels
CRM_FIELD_LABEL_GET is a standard crm field label get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-M - CRM Portals: Read Field Labels 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 crm field label get FM, simply by entering the name CRM_FIELD_LABEL_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: JEP_CRM_PORTALS
Program Name: SAPLJEP_CRM_PORTALS
Main Program: SAPLJEP_CRM_PORTALS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function CRM_FIELD_LABEL_GET 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 'CRM_FIELD_LABEL_GET'"IS-M - CRM Portals: Read Field Labels.
EXPORTING
FIELDNAME = "Parameter Name
* TYPE_TABNAME = "Table Name
* TYPE_FIELDNAME = "Field Name
* FUNCTION_NAME = "Function Module
* LANGUAGE_ISO = "Language
IMPORTING
FIELDLABEL = "Field Label
EXCEPTIONS
NOT_FOUND = 1
IMPORTING Parameters details for CRM_FIELD_LABEL_GET
FIELDNAME - Parameter Name
Data type: RSIMP-PARAMETEROptional: No
Call by Reference: No ( called with pass by value option)
TYPE_TABNAME - Table Name
Data type: DFIES-TABNAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
TYPE_FIELDNAME - Field Name
Data type: DFIES-FIELDNAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
FUNCTION_NAME - Function Module
Data type: TFDIR-FUNCNAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
LANGUAGE_ISO - Language
Data type: T002-LAISOOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for CRM_FIELD_LABEL_GET
FIELDLABEL - Field Label
Data type: DFIES-SCRTEXT_LOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CRM_FIELD_LABEL_GET 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_fieldname | TYPE RSIMP-PARAMETER, " | |||
| lv_not_found | TYPE RSIMP, " | |||
| lv_fieldlabel | TYPE DFIES-SCRTEXT_L, " | |||
| lv_type_tabname | TYPE DFIES-TABNAME, " | |||
| lv_type_fieldname | TYPE DFIES-FIELDNAME, " | |||
| lv_function_name | TYPE TFDIR-FUNCNAME, " | |||
| lv_language_iso | TYPE T002-LAISO. " |
|   CALL FUNCTION 'CRM_FIELD_LABEL_GET' "IS-M - CRM Portals: Read Field Labels |
| EXPORTING | ||
| FIELDNAME | = lv_fieldname | |
| TYPE_TABNAME | = lv_type_tabname | |
| TYPE_FIELDNAME | = lv_type_fieldname | |
| FUNCTION_NAME | = lv_function_name | |
| LANGUAGE_ISO | = lv_language_iso | |
| IMPORTING | ||
| FIELDLABEL | = lv_fieldlabel | |
| EXCEPTIONS | ||
| NOT_FOUND = 1 | ||
| . " CRM_FIELD_LABEL_GET | ||
ABAP code using 7.40 inline data declarations to call FM CRM_FIELD_LABEL_GET
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 PARAMETER FROM RSIMP INTO @DATA(ld_fieldname). | ||||
| "SELECT single SCRTEXT_L FROM DFIES INTO @DATA(ld_fieldlabel). | ||||
| "SELECT single TABNAME FROM DFIES INTO @DATA(ld_type_tabname). | ||||
| "SELECT single FIELDNAME FROM DFIES INTO @DATA(ld_type_fieldname). | ||||
| "SELECT single FUNCNAME FROM TFDIR INTO @DATA(ld_function_name). | ||||
| "SELECT single LAISO FROM T002 INTO @DATA(ld_language_iso). | ||||
Search for further information about these or an SAP related objects