SAP EPM_REP_EVALUATE_DATA Function Module for NOTRANSL: Kumuliert, KPI Wert senden und Ergebnis-Dynpro aufrufen









EPM_REP_EVALUATE_DATA is a standard epm rep evaluate data 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: Kumuliert, KPI Wert senden und Ergebnis-Dynpro aufrufen 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 epm rep evaluate data FM, simply by entering the name EPM_REP_EVALUATE_DATA into the relevant SAP transaction such as SE37 or SE38.

Function Group: EPM_REP
Program Name: SAPLEPM_REP
Main Program: SAPLEPM_REP
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function EPM_REP_EVALUATE_DATA 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 'EPM_REP_EVALUATE_DATA'"NOTRANSL: Kumuliert, KPI Wert senden und Ergebnis-Dynpro aufrufen
EXPORTING
* IV_REFRESH = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* IV_CUMULATION = 'X' "Cumulate Data
* IV_SCREEN_DISPLAY = 'X' "DE-EN-LANG-SWITCH-NO-TRANSLATION
IV_KEY_FIGURE_ID = "DE-EN-LANG-SWITCH-NO-TRANSLATION
IS_EVALUATION = "Structure for Global Data for Evaluation
IS_CUMULATION = "Data Structure for Cumulation
IS_KPI = "Data Structure for Transporting KPI Value

CHANGING
* CV_UPDATE = "DE-EN-LANG-SWITCH-NO-TRANSLATION

TABLES
IT_KPI_DATA = "DE-EN-LANG-SWITCH-NO-TRANSLATION
IT_NODES_DATA = "Technical Data for Hierarchy
IT_SEL_PARAMS = "DE-EN-LANG-SWITCH-NO-TRANSLATION
.



IMPORTING Parameters details for EPM_REP_EVALUATE_DATA

IV_REFRESH - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: XFLAG
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_CUMULATION - Cumulate Data

Data type: XFELD
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_SCREEN_DISPLAY - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: XFELD
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IV_KEY_FIGURE_ID - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: KFM_KF_ID
Optional: No
Call by Reference: No ( called with pass by value option)

IS_EVALUATION - Structure for Global Data for Evaluation

Data type: EPM_REP_EVALUATION_DATA
Optional: No
Call by Reference: Yes

IS_CUMULATION - Data Structure for Cumulation

Data type: EPM_REP_CUMULATION_DATA
Optional: No
Call by Reference: Yes

IS_KPI - Data Structure for Transporting KPI Value

Data type: EPM_REP_KPI_DATA
Optional: No
Call by Reference: Yes

CHANGING Parameters details for EPM_REP_EVALUATE_DATA

CV_UPDATE - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: XFELD
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for EPM_REP_EVALUATE_DATA

IT_KPI_DATA - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: No
Call by Reference: Yes

IT_NODES_DATA - Technical Data for Hierarchy

Data type: EPM_REP_HIER_DATA
Optional: No
Call by Reference: Yes

IT_SEL_PARAMS - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: EPM_REP_TT_SELCRIT_DATA
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for EPM_REP_EVALUATE_DATA 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_cv_update  TYPE XFELD, "   
lv_iv_refresh  TYPE XFLAG, "   
lt_it_kpi_data  TYPE STANDARD TABLE OF XFLAG, "   
lt_it_nodes_data  TYPE STANDARD TABLE OF EPM_REP_HIER_DATA, "   
lv_iv_cumulation  TYPE XFELD, "   'X'
lt_it_sel_params  TYPE STANDARD TABLE OF EPM_REP_TT_SELCRIT_DATA, "   
lv_iv_screen_display  TYPE XFELD, "   'X'
lv_iv_key_figure_id  TYPE KFM_KF_ID, "   
lv_is_evaluation  TYPE EPM_REP_EVALUATION_DATA, "   
lv_is_cumulation  TYPE EPM_REP_CUMULATION_DATA, "   
lv_is_kpi  TYPE EPM_REP_KPI_DATA. "   

  CALL FUNCTION 'EPM_REP_EVALUATE_DATA'  "NOTRANSL: Kumuliert, KPI Wert senden und Ergebnis-Dynpro aufrufen
    EXPORTING
         IV_REFRESH = lv_iv_refresh
         IV_CUMULATION = lv_iv_cumulation
         IV_SCREEN_DISPLAY = lv_iv_screen_display
         IV_KEY_FIGURE_ID = lv_iv_key_figure_id
         IS_EVALUATION = lv_is_evaluation
         IS_CUMULATION = lv_is_cumulation
         IS_KPI = lv_is_kpi
    CHANGING
         CV_UPDATE = lv_cv_update
    TABLES
         IT_KPI_DATA = lt_it_kpi_data
         IT_NODES_DATA = lt_it_nodes_data
         IT_SEL_PARAMS = lt_it_sel_params
. " EPM_REP_EVALUATE_DATA




ABAP code using 7.40 inline data declarations to call FM EPM_REP_EVALUATE_DATA

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.

 
 
 
 
DATA(ld_iv_cumulation) = 'X'.
 
 
DATA(ld_iv_screen_display) = 'X'.
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!