SAP CK_F_MANUAL_COMPONENTS_PROCESS Function Module for
CK_F_MANUAL_COMPONENTS_PROCESS is a standard ck f manual components process SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 ck f manual components process FM, simply by entering the name CK_F_MANUAL_COMPONENTS_PROCESS into the relevant SAP transaction such as SE37 or SE38.
Function Group: CK10
Program Name: SAPLCK10
Main Program: SAPLCK10
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CK_F_MANUAL_COMPONENTS_PROCESS 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 'CK_F_MANUAL_COMPONENTS_PROCESS'".
EXPORTING
* P_KOKRS = "
P_BWSTICHTAG = "Valuation date
P_KLVAR = "Costing variant
P_LOSGROESSE = "Costing lot size
* P_STICHTAG = ' ' "Amortization key date
* F_KEKOKEY = "
* P_KADAT = "Costing Date From
IMPORTING
ELEHK_EXP = "Cost Component Structure - CGM and Sales/Administr. Costs
TABLES
T_KALKTAB_EXP = "KALKTAB
* T_KEPH_EXP = "Product Costing: Cost Components for Cost of Goods Mfd
IMPORTING Parameters details for CK_F_MANUAL_COMPONENTS_PROCESS
P_KOKRS -
Data type: CKIBEW-KOKRSOptional: Yes
Call by Reference: No ( called with pass by value option)
P_BWSTICHTAG - Valuation date
Data type: CKKVMK-BWDATOptional: No
Call by Reference: No ( called with pass by value option)
P_KLVAR - Costing variant
Data type: TCK03-KLVAROptional: No
Call by Reference: No ( called with pass by value option)
P_LOSGROESSE - Costing lot size
Data type: KEKO-LOSGROptional: No
Call by Reference: No ( called with pass by value option)
P_STICHTAG - Amortization key date
Data type: CKKVMK-ALDATDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
F_KEKOKEY -
Data type: CKIKEKOKEYOptional: Yes
Call by Reference: No ( called with pass by value option)
P_KADAT - Costing Date From
Data type: KEKO-KADATOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for CK_F_MANUAL_COMPONENTS_PROCESS
ELEHK_EXP - Cost Component Structure - CGM and Sales/Administr. Costs
Data type: KEKO-ELEHKOptional: No
Call by Reference: Yes
TABLES Parameters details for CK_F_MANUAL_COMPONENTS_PROCESS
T_KALKTAB_EXP - KALKTAB
Data type: CKKALKTABOptional: No
Call by Reference: No ( called with pass by value option)
T_KEPH_EXP - Product Costing: Cost Components for Cost of Goods Mfd
Data type: KEPHOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for CK_F_MANUAL_COMPONENTS_PROCESS 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_p_kokrs | TYPE CKIBEW-KOKRS, " | |||
| lv_elehk_exp | TYPE KEKO-ELEHK, " | |||
| lt_t_kalktab_exp | TYPE STANDARD TABLE OF CKKALKTAB, " | |||
| lt_t_keph_exp | TYPE STANDARD TABLE OF KEPH, " | |||
| lv_p_bwstichtag | TYPE CKKVMK-BWDAT, " | |||
| lv_p_klvar | TYPE TCK03-KLVAR, " | |||
| lv_p_losgroesse | TYPE KEKO-LOSGR, " | |||
| lv_p_stichtag | TYPE CKKVMK-ALDAT, " SPACE | |||
| lv_f_kekokey | TYPE CKIKEKOKEY, " | |||
| lv_p_kadat | TYPE KEKO-KADAT. " |
|   CALL FUNCTION 'CK_F_MANUAL_COMPONENTS_PROCESS' " |
| EXPORTING | ||
| P_KOKRS | = lv_p_kokrs | |
| P_BWSTICHTAG | = lv_p_bwstichtag | |
| P_KLVAR | = lv_p_klvar | |
| P_LOSGROESSE | = lv_p_losgroesse | |
| P_STICHTAG | = lv_p_stichtag | |
| F_KEKOKEY | = lv_f_kekokey | |
| P_KADAT | = lv_p_kadat | |
| IMPORTING | ||
| ELEHK_EXP | = lv_elehk_exp | |
| TABLES | ||
| T_KALKTAB_EXP | = lt_t_kalktab_exp | |
| T_KEPH_EXP | = lt_t_keph_exp | |
| . " CK_F_MANUAL_COMPONENTS_PROCESS | ||
ABAP code using 7.40 inline data declarations to call FM CK_F_MANUAL_COMPONENTS_PROCESS
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 KOKRS FROM CKIBEW INTO @DATA(ld_p_kokrs). | ||||
| "SELECT single ELEHK FROM KEKO INTO @DATA(ld_elehk_exp). | ||||
| "SELECT single BWDAT FROM CKKVMK INTO @DATA(ld_p_bwstichtag). | ||||
| "SELECT single KLVAR FROM TCK03 INTO @DATA(ld_p_klvar). | ||||
| "SELECT single LOSGR FROM KEKO INTO @DATA(ld_p_losgroesse). | ||||
| "SELECT single ALDAT FROM CKKVMK INTO @DATA(ld_p_stichtag). | ||||
| DATA(ld_p_stichtag) | = ' '. | |||
| "SELECT single KADAT FROM KEKO INTO @DATA(ld_p_kadat). | ||||
Search for further information about these or an SAP related objects