SAP CEI1_ENTER_VALUES Function Module for NOTRANSL: Merkmalbewertung einer Merkmalgruppe
CEI1_ENTER_VALUES is a standard cei1 enter values 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: Merkmalbewertung einer Merkmalgruppe 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 cei1 enter values FM, simply by entering the name CEI1_ENTER_VALUES into the relevant SAP transaction such as SE37 or SE38.
Function Group: CEI1
Program Name: SAPLCEI1
Main Program: SAPLCEI1
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CEI1_ENTER_VALUES 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 'CEI1_ENTER_VALUES'"NOTRANSL: Merkmalbewertung einer Merkmalgruppe.
EXPORTING
* GROUP = ' ' "
* LANGUAGE = SY-LANGU "
* NEUTRAL_LANGUAGE = ' ' "
* USERDEFINED_TYPE = ' ' "
* DISPLAY = ' ' "
IMPORTING
RETURN_WITH_FUNCTION = "
EXCEPTIONS
GROUP_NOT_FOUND = 1 USERDEFINED_TYPE_NOT_FOUND = 2 GROUP_OR_USERDEFINED_TYPE = 3
IMPORTING Parameters details for CEI1_ENTER_VALUES
GROUP -
Data type: CECUSD-GRNAMDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
LANGUAGE -
Data type: T002-SPRASDefault: SY-LANGU
Optional: Yes
Call by Reference: No ( called with pass by value option)
NEUTRAL_LANGUAGE -
Data type: RCTMS-NEUTRDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
USERDEFINED_TYPE -
Data type: CABN-CLINTDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
DISPLAY -
Data type:Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for CEI1_ENTER_VALUES
RETURN_WITH_FUNCTION -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
GROUP_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
USERDEFINED_TYPE_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
GROUP_OR_USERDEFINED_TYPE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CEI1_ENTER_VALUES 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_group | TYPE CECUSD-GRNAM, " SPACE | |||
| lv_group_not_found | TYPE CECUSD, " | |||
| lv_return_with_function | TYPE CECUSD, " | |||
| lv_language | TYPE T002-SPRAS, " SY-LANGU | |||
| lv_userdefined_type_not_found | TYPE T002, " | |||
| lv_neutral_language | TYPE RCTMS-NEUTR, " ' ' | |||
| lv_group_or_userdefined_type | TYPE RCTMS, " | |||
| lv_userdefined_type | TYPE CABN-CLINT, " SPACE | |||
| lv_display | TYPE CABN. " ' ' |
|   CALL FUNCTION 'CEI1_ENTER_VALUES' "NOTRANSL: Merkmalbewertung einer Merkmalgruppe |
| EXPORTING | ||
| GROUP | = lv_group | |
| LANGUAGE | = lv_language | |
| NEUTRAL_LANGUAGE | = lv_neutral_language | |
| USERDEFINED_TYPE | = lv_userdefined_type | |
| DISPLAY | = lv_display | |
| IMPORTING | ||
| RETURN_WITH_FUNCTION | = lv_return_with_function | |
| EXCEPTIONS | ||
| GROUP_NOT_FOUND = 1 | ||
| USERDEFINED_TYPE_NOT_FOUND = 2 | ||
| GROUP_OR_USERDEFINED_TYPE = 3 | ||
| . " CEI1_ENTER_VALUES | ||
ABAP code using 7.40 inline data declarations to call FM CEI1_ENTER_VALUES
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 GRNAM FROM CECUSD INTO @DATA(ld_group). | ||||
| DATA(ld_group) | = ' '. | |||
| "SELECT single SPRAS FROM T002 INTO @DATA(ld_language). | ||||
| DATA(ld_language) | = SY-LANGU. | |||
| "SELECT single NEUTR FROM RCTMS INTO @DATA(ld_neutral_language). | ||||
| DATA(ld_neutral_language) | = ' '. | |||
| "SELECT single CLINT FROM CABN INTO @DATA(ld_userdefined_type). | ||||
| DATA(ld_userdefined_type) | = ' '. | |||
| DATA(ld_display) | = ' '. | |||
Search for further information about these or an SAP related objects