SAP UMB_EP_GET_ANALYSIS_TREE Function Module for









UMB_EP_GET_ANALYSIS_TREE is a standard umb ep get analysis tree 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 umb ep get analysis tree FM, simply by entering the name UMB_EP_GET_ANALYSIS_TREE into the relevant SAP transaction such as SE37 or SE38.

Function Group: UMB_WEB
Program Name: SAPLUMB_WEB
Main Program: SAPLUMB_WEB
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function UMB_EP_GET_ANALYSIS_TREE 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 'UMB_EP_GET_ANALYSIS_TREE'"
EXPORTING
I_SCARD = "Scorecard
* I_RISK = "
I_CURPER = "Current period
I_TARPER = "Target Period
I_TREETYPE = "Tree Category
* I_FILTER = "Filter for BSC Tree
* I_FRPER = "From Period
* I_TOPER = "To Period
* I_VALUE = "Value field
* I_NODEKEY = "Tree Model: Node Key

TABLES
* ET_COLUMNS = "Table Tree Column for Web Application
* ET_NODES = "Table Tree Node for Web Application
* ET_ITEMS = "Table Tree Item for Web Application
.



IMPORTING Parameters details for UMB_EP_GET_ANALYSIS_TREE

I_SCARD - Scorecard

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

I_RISK -

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

I_CURPER - Current period

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

I_TARPER - Target Period

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

I_TREETYPE - Tree Category

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

I_FILTER - Filter for BSC Tree

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

I_FRPER - From Period

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

I_TOPER - To Period

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

I_VALUE - Value field

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

I_NODEKEY - Tree Model: Node Key

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

TABLES Parameters details for UMB_EP_GET_ANALYSIS_TREE

ET_COLUMNS - Table Tree Column for Web Application

Data type: UMB_YS_EP_COLUMN
Optional: Yes
Call by Reference: Yes

ET_NODES - Table Tree Node for Web Application

Data type: UMB_YS_EP_NODE
Optional: Yes
Call by Reference: Yes

ET_ITEMS - Table Tree Item for Web Application

Data type: UMB_YS_EP_ITEM
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for UMB_EP_GET_ANALYSIS_TREE 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_scard  TYPE UMB_Y_SCARD, "   
lt_et_columns  TYPE STANDARD TABLE OF UMB_YS_EP_COLUMN, "   
lv_i_risk  TYPE AS4FLAG, "   
lt_et_nodes  TYPE STANDARD TABLE OF UMB_YS_EP_NODE, "   
lv_i_curper  TYPE UMC_Y_FISCPER, "   
lt_et_items  TYPE STANDARD TABLE OF UMB_YS_EP_ITEM, "   
lv_i_tarper  TYPE UMC_Y_FISCPER, "   
lv_i_treetype  TYPE UMB_Y_TREE_TYPE, "   
lv_i_filter  TYPE UMB_YS_BSC_FILTER, "   
lv_i_frper  TYPE UMC_Y_FISCPER, "   
lv_i_toper  TYPE UMC_Y_FISCPER, "   
lv_i_value  TYPE UMB_YS_COL, "   
lv_i_nodekey  TYPE TM_NODEKEY. "   

  CALL FUNCTION 'UMB_EP_GET_ANALYSIS_TREE'  "
    EXPORTING
         I_SCARD = lv_i_scard
         I_RISK = lv_i_risk
         I_CURPER = lv_i_curper
         I_TARPER = lv_i_tarper
         I_TREETYPE = lv_i_treetype
         I_FILTER = lv_i_filter
         I_FRPER = lv_i_frper
         I_TOPER = lv_i_toper
         I_VALUE = lv_i_value
         I_NODEKEY = lv_i_nodekey
    TABLES
         ET_COLUMNS = lt_et_columns
         ET_NODES = lt_et_nodes
         ET_ITEMS = lt_et_items
. " UMB_EP_GET_ANALYSIS_TREE




ABAP code using 7.40 inline data declarations to call FM UMB_EP_GET_ANALYSIS_TREE

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



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!