SAP EVAL_IV_KEYFIGURE_EVALUATE Function Module for NOTRANSL: Bewertung der Kennzahlen
EVAL_IV_KEYFIGURE_EVALUATE is a standard eval iv keyfigure evaluate 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: Bewertung der Kennzahlen 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 eval iv keyfigure evaluate FM, simply by entering the name EVAL_IV_KEYFIGURE_EVALUATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: VE_IV_EVALUATE
Program Name: SAPLVE_IV_EVALUATE
Main Program: SAPLVE_IV_EVALUATE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function EVAL_IV_KEYFIGURE_EVALUATE 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 'EVAL_IV_KEYFIGURE_EVALUATE'"NOTRANSL: Bewertung der Kennzahlen.
EXPORTING
T_VARIANCES_ITM = "Work Structure
* T_VARIANCES_HD = "Work Structure Header
* T_KEY_TO_DELETE = "Keys for Key Figures (Item)
IMPORTING
T_EVAL_ITM_INS = "Results of Vendor Evaluation (Item)
T_EVAL_ITM_UPD = "Results of Vendor Evaluation (Item)
T_EVAL_HD_INS = "Results of Vendor Evaluation (Header)
T_EVAL_HD_UPD = "Results of Vendor Evaluation (Header)
T_KEY_TO_DELETE_ITM = "Error Log Item
T_KEY_TO_DELETE_HD = "Error Log Header
IMPORTING Parameters details for EVAL_IV_KEYFIGURE_EVALUATE
T_VARIANCES_ITM - Work Structure
Data type: EVAL_IV_WORK_ITM_TOptional: No
Call by Reference: Yes
T_VARIANCES_HD - Work Structure Header
Data type: EVAL_IV_WORK_HD_TOptional: Yes
Call by Reference: Yes
T_KEY_TO_DELETE - Keys for Key Figures (Item)
Data type: EVAL_IV_ERR_ITM_TOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for EVAL_IV_KEYFIGURE_EVALUATE
T_EVAL_ITM_INS - Results of Vendor Evaluation (Item)
Data type: EVAL_IV_RESULT_ITM_TOptional: No
Call by Reference: Yes
T_EVAL_ITM_UPD - Results of Vendor Evaluation (Item)
Data type: EVAL_IV_RESULT_ITM_TOptional: No
Call by Reference: Yes
T_EVAL_HD_INS - Results of Vendor Evaluation (Header)
Data type: EVAL_IV_RESULT_HD_TOptional: No
Call by Reference: Yes
T_EVAL_HD_UPD - Results of Vendor Evaluation (Header)
Data type: EVAL_IV_RESULT_HD_TOptional: No
Call by Reference: Yes
T_KEY_TO_DELETE_ITM - Error Log Item
Data type: EVAL_IV_ERR_ITM_TOptional: No
Call by Reference: Yes
T_KEY_TO_DELETE_HD - Error Log Header
Data type: EVAL_IV_ERR_HD_TOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for EVAL_IV_KEYFIGURE_EVALUATE 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_t_eval_itm_ins | TYPE EVAL_IV_RESULT_ITM_T, " | |||
| lv_t_variances_itm | TYPE EVAL_IV_WORK_ITM_T, " | |||
| lv_t_eval_itm_upd | TYPE EVAL_IV_RESULT_ITM_T, " | |||
| lv_t_variances_hd | TYPE EVAL_IV_WORK_HD_T, " | |||
| lv_t_eval_hd_ins | TYPE EVAL_IV_RESULT_HD_T, " | |||
| lv_t_key_to_delete | TYPE EVAL_IV_ERR_ITM_T, " | |||
| lv_t_eval_hd_upd | TYPE EVAL_IV_RESULT_HD_T, " | |||
| lv_t_key_to_delete_itm | TYPE EVAL_IV_ERR_ITM_T, " | |||
| lv_t_key_to_delete_hd | TYPE EVAL_IV_ERR_HD_T. " |
|   CALL FUNCTION 'EVAL_IV_KEYFIGURE_EVALUATE' "NOTRANSL: Bewertung der Kennzahlen |
| EXPORTING | ||
| T_VARIANCES_ITM | = lv_t_variances_itm | |
| T_VARIANCES_HD | = lv_t_variances_hd | |
| T_KEY_TO_DELETE | = lv_t_key_to_delete | |
| IMPORTING | ||
| T_EVAL_ITM_INS | = lv_t_eval_itm_ins | |
| T_EVAL_ITM_UPD | = lv_t_eval_itm_upd | |
| T_EVAL_HD_INS | = lv_t_eval_hd_ins | |
| T_EVAL_HD_UPD | = lv_t_eval_hd_upd | |
| T_KEY_TO_DELETE_ITM | = lv_t_key_to_delete_itm | |
| T_KEY_TO_DELETE_HD | = lv_t_key_to_delete_hd | |
| . " EVAL_IV_KEYFIGURE_EVALUATE | ||
ABAP code using 7.40 inline data declarations to call FM EVAL_IV_KEYFIGURE_EVALUATE
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