SAP K_COMPONENT_EVAL_DELTA Function Module for
K_COMPONENT_EVAL_DELTA is a standard k component eval delta 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 k component eval delta FM, simply by entering the name K_COMPONENT_EVAL_DELTA into the relevant SAP transaction such as SE37 or SE38.
Function Group: KCOB
Program Name: SAPLKCOB
Main Program: SAPLKCOB
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function K_COMPONENT_EVAL_DELTA 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 'K_COMPONENT_EVAL_DELTA'".
EXPORTING
I_COSSA_X = "Partner object number enhancement COSSA structure
I_KEKPOM_TAB = "Table for KEKO + KEPH for IAA
I_ELEHK = "Cost Component Structure - CGM and Sales/Administr. Costs
S_CURR = "Object Currency for CO Object
R_CURR = "Object Currency for CO Object
CHANGING
T_COCOM_PRC = "CO object: cost component split, prices
IMPORTING Parameters details for K_COMPONENT_EVAL_DELTA
I_COSSA_X - Partner object number enhancement COSSA structure
Data type: COSSA_XOptional: No
Call by Reference: No ( called with pass by value option)
I_KEKPOM_TAB - Table for KEKO + KEPH for IAA
Data type: KEKPOM_TABOptional: No
Call by Reference: Yes
I_ELEHK - Cost Component Structure - CGM and Sales/Administr. Costs
Data type: CK_ELESMHKOptional: No
Call by Reference: Yes
S_CURR - Object Currency for CO Object
Data type: OWAEROptional: No
Call by Reference: Yes
R_CURR - Object Currency for CO Object
Data type: OWAEROptional: No
Call by Reference: Yes
CHANGING Parameters details for K_COMPONENT_EVAL_DELTA
T_COCOM_PRC - CO object: cost component split, prices
Data type: COCOMPRC_TABOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for K_COMPONENT_EVAL_DELTA 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_i_cossa_x | TYPE COSSA_X, " | |||
| lv_t_cocom_prc | TYPE COCOMPRC_TAB, " | |||
| lv_i_kekpom_tab | TYPE KEKPOM_TAB, " | |||
| lv_i_elehk | TYPE CK_ELESMHK, " | |||
| lv_s_curr | TYPE OWAER, " | |||
| lv_r_curr | TYPE OWAER. " |
|   CALL FUNCTION 'K_COMPONENT_EVAL_DELTA' " |
| EXPORTING | ||
| I_COSSA_X | = lv_i_cossa_x | |
| I_KEKPOM_TAB | = lv_i_kekpom_tab | |
| I_ELEHK | = lv_i_elehk | |
| S_CURR | = lv_s_curr | |
| R_CURR | = lv_r_curr | |
| CHANGING | ||
| T_COCOM_PRC | = lv_t_cocom_prc | |
| . " K_COMPONENT_EVAL_DELTA | ||
ABAP code using 7.40 inline data declarations to call FM K_COMPONENT_EVAL_DELTA
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