SAP /ACCGO/CCK_MATERIAL_DETERM Function Module for Function Module for Material Determination
/ACCGO/CCK_MATERIAL_DETERM is a standard /accgo/cck material determ SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Function Module for Material Determination 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 /accgo/cck material determ FM, simply by entering the name /ACCGO/CCK_MATERIAL_DETERM into the relevant SAP transaction such as SE37 or SE38.
Function Group: /ACCGO/CCK_MAT_DET
Program Name: /ACCGO/SAPLCCK_MAT_DET
Main Program: /ACCGO/SAPLCCK_MAT_DET
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function /ACCGO/CCK_MATERIAL_DETERM 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 '/ACCGO/CCK_MATERIAL_DETERM'"Function Module for Material Determination.
EXPORTING
IM_GEN_MATERIAL = "Material Number
* IM_PLANT = "Plant
* IM_EXT_NUM = "Application Log: External ID
TABLES
IMT_CHAR_TABLE = "Characteristic Values
EXT_SPEC_MATERIAL = "Materaila & Material grade
EXT_RETURN = "Return Parameter
IMPORTING Parameters details for /ACCGO/CCK_MATERIAL_DETERM
IM_GEN_MATERIAL - Material Number
Data type: MATNROptional: No
Call by Reference: No ( called with pass by value option)
IM_PLANT - Plant
Data type: WERKS_DOptional: Yes
Call by Reference: No ( called with pass by value option)
IM_EXT_NUM - Application Log: External ID
Data type: BALNREXTOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for /ACCGO/CCK_MATERIAL_DETERM
IMT_CHAR_TABLE - Characteristic Values
Data type: /ACCGO/CMN_TT_CHAR_VALUESOptional: No
Call by Reference: No ( called with pass by value option)
EXT_SPEC_MATERIAL - Materaila & Material grade
Data type: /ACCGO/CMN_TT_MAT_GRADEOptional: No
Call by Reference: No ( called with pass by value option)
EXT_RETURN - Return Parameter
Data type: BAPIRET2_TOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for /ACCGO/CCK_MATERIAL_DETERM 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_imt_char_table | TYPE STANDARD TABLE OF /ACCGO/CMN_TT_CHAR_VALUES, " | |||
lv_im_gen_material | TYPE MATNR, " | |||
lv_im_plant | TYPE WERKS_D, " | |||
lt_ext_spec_material | TYPE STANDARD TABLE OF /ACCGO/CMN_TT_MAT_GRADE, " | |||
lt_ext_return | TYPE STANDARD TABLE OF BAPIRET2_T, " | |||
lv_im_ext_num | TYPE BALNREXT. " |
  CALL FUNCTION '/ACCGO/CCK_MATERIAL_DETERM' "Function Module for Material Determination |
EXPORTING | ||
IM_GEN_MATERIAL | = lv_im_gen_material | |
IM_PLANT | = lv_im_plant | |
IM_EXT_NUM | = lv_im_ext_num | |
TABLES | ||
IMT_CHAR_TABLE | = lt_imt_char_table | |
EXT_SPEC_MATERIAL | = lt_ext_spec_material | |
EXT_RETURN | = lt_ext_return | |
. " /ACCGO/CCK_MATERIAL_DETERM |
ABAP code using 7.40 inline data declarations to call FM /ACCGO/CCK_MATERIAL_DETERM
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.Search for further information about these or an SAP related objects