SAP C14DG_LB03_CHECK_PHRASE Function Module for NOTRANSL: Prüfen einer Eingabe gegen die Phrasenauswahlmenge
C14DG_LB03_CHECK_PHRASE is a standard c14dg lb03 check phrase 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: Prüfen einer Eingabe gegen die Phrasenauswahlmenge 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 c14dg lb03 check phrase FM, simply by entering the name C14DG_LB03_CHECK_PHRASE into the relevant SAP transaction such as SE37 or SE38.
Function Group: C14DG_LB03
Program Name: SAPLC14DG_LB03
Main Program: SAPLC14DG_LB03
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function C14DG_LB03_CHECK_PHRASE 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 'C14DG_LB03_CHECK_PHRASE'"NOTRANSL: Prüfen einer Eingabe gegen die Phrasenauswahlmenge.
EXPORTING
I_OBJECT = "Value Assignment Type
I_ATTRIBUTE = "Characteristic Name
I_ADDINF = "EHS: Additional Information for Function Module Calls
I_VALUE = "Generic Type
IMPORTING
E_VALUE = "Phrase library with phrase key
E_PHRASE_WA = "EHS: Phrase data for characteristics F4 help
IMPORTING Parameters details for C14DG_LB03_CHECK_PHRASE
I_OBJECT - Value Assignment Type
Data type: TCG66-ESTCATOptional: No
Call by Reference: No ( called with pass by value option)
I_ATTRIBUTE - Characteristic Name
Data type: TCG66-ATNAMOptional: No
Call by Reference: No ( called with pass by value option)
I_ADDINF - EHS: Additional Information for Function Module Calls
Data type: RCGADDINFOptional: No
Call by Reference: No ( called with pass by value option)
I_VALUE - Generic Type
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for C14DG_LB03_CHECK_PHRASE
E_VALUE - Phrase library with phrase key
Data type: RCGATF4PHR-PHRKEYOptional: No
Call by Reference: Yes
E_PHRASE_WA - EHS: Phrase data for characteristics F4 help
Data type: RCGATF4PHROptional: No
Call by Reference: Yes
Copy and paste ABAP code example for C14DG_LB03_CHECK_PHRASE 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_value | TYPE RCGATF4PHR-PHRKEY, " | |||
| lv_i_object | TYPE TCG66-ESTCAT, " | |||
| lv_e_phrase_wa | TYPE RCGATF4PHR, " | |||
| lv_i_attribute | TYPE TCG66-ATNAM, " | |||
| lv_i_addinf | TYPE RCGADDINF, " | |||
| lv_i_value | TYPE C. " |
|   CALL FUNCTION 'C14DG_LB03_CHECK_PHRASE' "NOTRANSL: Prüfen einer Eingabe gegen die Phrasenauswahlmenge |
| EXPORTING | ||
| I_OBJECT | = lv_i_object | |
| I_ATTRIBUTE | = lv_i_attribute | |
| I_ADDINF | = lv_i_addinf | |
| I_VALUE | = lv_i_value | |
| IMPORTING | ||
| E_VALUE | = lv_e_value | |
| E_PHRASE_WA | = lv_e_phrase_wa | |
| . " C14DG_LB03_CHECK_PHRASE | ||
ABAP code using 7.40 inline data declarations to call FM C14DG_LB03_CHECK_PHRASE
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 PHRKEY FROM RCGATF4PHR INTO @DATA(ld_e_value). | ||||
| "SELECT single ESTCAT FROM TCG66 INTO @DATA(ld_i_object). | ||||
| "SELECT single ATNAM FROM TCG66 INTO @DATA(ld_i_attribute). | ||||
Search for further information about these or an SAP related objects