SAP CEB1_CUSTOMER_FUNCTION_100 Function Module for NOTRANSL: Exit: Pflegen zusätzlicher Materialdaten bei Instanziierung
CEB1_CUSTOMER_FUNCTION_100 is a standard ceb1 customer function 100 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: Exit: Pflegen zusätzlicher Materialdaten bei Instanziierung 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 ceb1 customer function 100 FM, simply by entering the name CEB1_CUSTOMER_FUNCTION_100 into the relevant SAP transaction such as SE37 or SE38.
Function Group: CEB1
Program Name: SAPLCEB1
Main Program: SAPLCEB1
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CEB1_CUSTOMER_FUNCTION_100 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 'CEB1_CUSTOMER_FUNCTION_100'"NOTRANSL: Exit: Pflegen zusätzlicher Materialdaten bei Instanziierung.
EXPORTING
IV_ORDER = "Sales Document
IV_ORDER_ITEM = "Sales document item
IV_MAT_NO_COPY = "Material Number
IV_MAT_NO_KMAT = "Material Number
IV_MAT_NO_INST = "Material Number
IV_STLTY_INST = "BOM Category
IV_STLNR_INST = "Bill of Material
IS_MKAL_INST = "Production Versions of Material
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLCEB1_001 Transfer of Item Category After Replacing KMAT with a Variant
EXIT_SAPLCEB1_002 User Exit for Definition of BOM Category for Instantiation
EXIT_SAPLCEB1_003 Define BOM Status for Instantiated Materials
EXIT_SAPLCEB1_100 Maintain Additional Data for Instantiation
IMPORTING Parameters details for CEB1_CUSTOMER_FUNCTION_100
IV_ORDER - Sales Document
Data type: VBAP-VBELNOptional: No
Call by Reference: Yes
IV_ORDER_ITEM - Sales document item
Data type: VBAP-POSNROptional: No
Call by Reference: Yes
IV_MAT_NO_COPY - Material Number
Data type: MARA-MATNROptional: No
Call by Reference: Yes
IV_MAT_NO_KMAT - Material Number
Data type: MARA-MATNROptional: No
Call by Reference: Yes
IV_MAT_NO_INST - Material Number
Data type: MARA-MATNROptional: No
Call by Reference: Yes
IV_STLTY_INST - BOM Category
Data type: STPO-STLTYOptional: No
Call by Reference: Yes
IV_STLNR_INST - Bill of Material
Data type: STPO-STLNROptional: No
Call by Reference: Yes
IS_MKAL_INST - Production Versions of Material
Data type: MKALOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for CEB1_CUSTOMER_FUNCTION_100 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_iv_order | TYPE VBAP-VBELN, " | |||
| lv_iv_order_item | TYPE VBAP-POSNR, " | |||
| lv_iv_mat_no_copy | TYPE MARA-MATNR, " | |||
| lv_iv_mat_no_kmat | TYPE MARA-MATNR, " | |||
| lv_iv_mat_no_inst | TYPE MARA-MATNR, " | |||
| lv_iv_stlty_inst | TYPE STPO-STLTY, " | |||
| lv_iv_stlnr_inst | TYPE STPO-STLNR, " | |||
| lv_is_mkal_inst | TYPE MKAL. " |
|   CALL FUNCTION 'CEB1_CUSTOMER_FUNCTION_100' "NOTRANSL: Exit: Pflegen zusätzlicher Materialdaten bei Instanziierung |
| EXPORTING | ||
| IV_ORDER | = lv_iv_order | |
| IV_ORDER_ITEM | = lv_iv_order_item | |
| IV_MAT_NO_COPY | = lv_iv_mat_no_copy | |
| IV_MAT_NO_KMAT | = lv_iv_mat_no_kmat | |
| IV_MAT_NO_INST | = lv_iv_mat_no_inst | |
| IV_STLTY_INST | = lv_iv_stlty_inst | |
| IV_STLNR_INST | = lv_iv_stlnr_inst | |
| IS_MKAL_INST | = lv_is_mkal_inst | |
| . " CEB1_CUSTOMER_FUNCTION_100 | ||
ABAP code using 7.40 inline data declarations to call FM CEB1_CUSTOMER_FUNCTION_100
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 VBELN FROM VBAP INTO @DATA(ld_iv_order). | ||||
| "SELECT single POSNR FROM VBAP INTO @DATA(ld_iv_order_item). | ||||
| "SELECT single MATNR FROM MARA INTO @DATA(ld_iv_mat_no_copy). | ||||
| "SELECT single MATNR FROM MARA INTO @DATA(ld_iv_mat_no_kmat). | ||||
| "SELECT single MATNR FROM MARA INTO @DATA(ld_iv_mat_no_inst). | ||||
| "SELECT single STLTY FROM STPO INTO @DATA(ld_iv_stlty_inst). | ||||
| "SELECT single STLNR FROM STPO INTO @DATA(ld_iv_stlnr_inst). | ||||
Search for further information about these or an SAP related objects