SAP UMM_EP_GET_DD_FRAME_DATA Function Module for
UMM_EP_GET_DD_FRAME_DATA is a standard umm ep get dd frame data 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 umm ep get dd frame data FM, simply by entering the name UMM_EP_GET_DD_FRAME_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: UMM_PRESAPP
Program Name: SAPLUMM_PRESAPP
Main Program: SAPLUMM_PRESAPP
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function UMM_EP_GET_DD_FRAME_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 'UMM_EP_GET_DD_FRAME_DATA'".
EXPORTING
I_CONAME = "
I_WANO = "
I_LVNO = "
I_FRNO = "
* I_FRNAME = "Frame Name
* I_WIDTH = 320 "
* I_HEIGHT = 200 "
I_RESHREF = "
IMPORTING
E_LENGTH = "
E_TYPE = "
E_LEGEND = "
E_STATUS = "Status
E_BAPIRET = "Return Parameter(s)
TABLES
* IT_RUNTIME_VAR = "
* IT_DRILLDOWN_DET = "Characteristic
* ET_CONTENT = "Graphics
* ET_IMAGEMAP = "
* ET_ERRMSG = "Error Messages
IMPORTING Parameters details for UMM_EP_GET_DD_FRAME_DATA
I_CONAME -
Data type: UMM_Y_CONAMEOptional: No
Call by Reference: No ( called with pass by value option)
I_WANO -
Data type: UMM_Y_EP_WANOOptional: No
Call by Reference: No ( called with pass by value option)
I_LVNO -
Data type: UMM_Y_EP_LVNOOptional: No
Call by Reference: No ( called with pass by value option)
I_FRNO -
Data type: UMM_Y_EP_FRNOOptional: No
Call by Reference: No ( called with pass by value option)
I_FRNAME - Frame Name
Data type: UMM_Y_FRNAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_WIDTH -
Data type: INT4Default: 320
Optional: No
Call by Reference: No ( called with pass by value option)
I_HEIGHT -
Data type: INT4Default: 200
Optional: No
Call by Reference: No ( called with pass by value option)
I_RESHREF -
Data type: STRINGOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for UMM_EP_GET_DD_FRAME_DATA
E_LENGTH -
Data type: W3PARAM-CONT_LENOptional: No
Call by Reference: No ( called with pass by value option)
E_TYPE -
Data type: W3PARAM-CONT_TYPEOptional: No
Call by Reference: No ( called with pass by value option)
E_LEGEND -
Data type: STRINGOptional: No
Call by Reference: No ( called with pass by value option)
E_STATUS - Status
Data type: UMM_Y_PSTATUSOptional: No
Call by Reference: No ( called with pass by value option)
E_BAPIRET - Return Parameter(s)
Data type: BAPIRET2Optional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for UMM_EP_GET_DD_FRAME_DATA
IT_RUNTIME_VAR -
Data type: UMM_YS_RUNTIME_VAROptional: Yes
Call by Reference: Yes
IT_DRILLDOWN_DET - Characteristic
Data type: UMM_YS_CHAROptional: Yes
Call by Reference: Yes
ET_CONTENT - Graphics
Data type: W3MIMEOptional: Yes
Call by Reference: Yes
ET_IMAGEMAP -
Data type: W3HTMLOptional: Yes
Call by Reference: Yes
ET_ERRMSG - Error Messages
Data type: UMM_YS_EP_ERR_MSGOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for UMM_EP_GET_DD_FRAME_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_e_length | TYPE W3PARAM-CONT_LEN, " | |||
| lv_i_coname | TYPE UMM_Y_CONAME, " | |||
| lt_it_runtime_var | TYPE STANDARD TABLE OF UMM_YS_RUNTIME_VAR, " | |||
| lv_e_type | TYPE W3PARAM-CONT_TYPE, " | |||
| lv_i_wano | TYPE UMM_Y_EP_WANO, " | |||
| lt_it_drilldown_det | TYPE STANDARD TABLE OF UMM_YS_CHAR, " | |||
| lv_i_lvno | TYPE UMM_Y_EP_LVNO, " | |||
| lv_e_legend | TYPE STRING, " | |||
| lt_et_content | TYPE STANDARD TABLE OF W3MIME, " | |||
| lv_i_frno | TYPE UMM_Y_EP_FRNO, " | |||
| lv_e_status | TYPE UMM_Y_PSTATUS, " | |||
| lt_et_imagemap | TYPE STANDARD TABLE OF W3HTML, " | |||
| lv_i_frname | TYPE UMM_Y_FRNAME, " | |||
| lt_et_errmsg | TYPE STANDARD TABLE OF UMM_YS_EP_ERR_MSG, " | |||
| lv_e_bapiret | TYPE BAPIRET2, " | |||
| lv_i_width | TYPE INT4, " 320 | |||
| lv_i_height | TYPE INT4, " 200 | |||
| lv_i_reshref | TYPE STRING. " |
|   CALL FUNCTION 'UMM_EP_GET_DD_FRAME_DATA' " |
| EXPORTING | ||
| I_CONAME | = lv_i_coname | |
| I_WANO | = lv_i_wano | |
| I_LVNO | = lv_i_lvno | |
| I_FRNO | = lv_i_frno | |
| I_FRNAME | = lv_i_frname | |
| I_WIDTH | = lv_i_width | |
| I_HEIGHT | = lv_i_height | |
| I_RESHREF | = lv_i_reshref | |
| IMPORTING | ||
| E_LENGTH | = lv_e_length | |
| E_TYPE | = lv_e_type | |
| E_LEGEND | = lv_e_legend | |
| E_STATUS | = lv_e_status | |
| E_BAPIRET | = lv_e_bapiret | |
| TABLES | ||
| IT_RUNTIME_VAR | = lt_it_runtime_var | |
| IT_DRILLDOWN_DET | = lt_it_drilldown_det | |
| ET_CONTENT | = lt_et_content | |
| ET_IMAGEMAP | = lt_et_imagemap | |
| ET_ERRMSG | = lt_et_errmsg | |
| . " UMM_EP_GET_DD_FRAME_DATA | ||
ABAP code using 7.40 inline data declarations to call FM UMM_EP_GET_DD_FRAME_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.| "SELECT single CONT_LEN FROM W3PARAM INTO @DATA(ld_e_length). | ||||
| "SELECT single CONT_TYPE FROM W3PARAM INTO @DATA(ld_e_type). | ||||
| DATA(ld_i_width) | = 320. | |||
| DATA(ld_i_height) | = 200. | |||
Search for further information about these or an SAP related objects