SAP UMK_BW_QUERY_VIEW_DATA Function Module for
UMK_BW_QUERY_VIEW_DATA is a standard umk bw query view 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 umk bw query view data FM, simply by entering the name UMK_BW_QUERY_VIEW_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: UMK_BW
Program Name: SAPLUMK_BW
Main Program: SAPLUMK_BW
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function UMK_BW_QUERY_VIEW_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 'UMK_BW_QUERY_VIEW_DATA'".
EXPORTING
* I_RFCDEST = ' ' "Logical Destination (Specified when Calling Function)
* I_INFOCUBE = "InfoCube
* I_QUERY = "Name (ID) of a Reporting Component
* I_VIEW_ID = "Technical Name of a View
* I_T_PARAMETER = "Query Table
IMPORTING
E_AXIS_INFO = "
E_CELL_DATA = "
E_AXIS_DATA = "
E_TXT_SYMBOLS = "
EXCEPTIONS
SYSTEM_PROBLEM = 1 BW_ERROR = 2
IMPORTING Parameters details for UMK_BW_QUERY_VIEW_DATA
I_RFCDEST - Logical Destination (Specified when Calling Function)
Data type: RFCDESTDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_INFOCUBE - InfoCube
Data type: UMK_Y_ICUBEOptional: Yes
Call by Reference: Yes
I_QUERY - Name (ID) of a Reporting Component
Data type: RSZCOMPIDOptional: Yes
Call by Reference: Yes
I_VIEW_ID - Technical Name of a View
Data type: RSZVIEWIDOptional: Yes
Call by Reference: Yes
I_T_PARAMETER - Query Table
Data type: RRXW3TQUERYOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for UMK_BW_QUERY_VIEW_DATA
E_AXIS_INFO -
Data type: STRINGOptional: No
Call by Reference: Yes
E_CELL_DATA -
Data type: STRINGOptional: No
Call by Reference: Yes
E_AXIS_DATA -
Data type: STRINGOptional: No
Call by Reference: Yes
E_TXT_SYMBOLS -
Data type: STRINGOptional: No
Call by Reference: Yes
EXCEPTIONS details
SYSTEM_PROBLEM -
Data type:Optional: No
Call by Reference: Yes
BW_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for UMK_BW_QUERY_VIEW_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_i_rfcdest | TYPE RFCDEST, " SPACE | |||
| lv_e_axis_info | TYPE STRING, " | |||
| lv_system_problem | TYPE STRING, " | |||
| lv_bw_error | TYPE STRING, " | |||
| lv_i_infocube | TYPE UMK_Y_ICUBE, " | |||
| lv_e_cell_data | TYPE STRING, " | |||
| lv_i_query | TYPE RSZCOMPID, " | |||
| lv_e_axis_data | TYPE STRING, " | |||
| lv_i_view_id | TYPE RSZVIEWID, " | |||
| lv_e_txt_symbols | TYPE STRING, " | |||
| lv_i_t_parameter | TYPE RRXW3TQUERY. " |
|   CALL FUNCTION 'UMK_BW_QUERY_VIEW_DATA' " |
| EXPORTING | ||
| I_RFCDEST | = lv_i_rfcdest | |
| I_INFOCUBE | = lv_i_infocube | |
| I_QUERY | = lv_i_query | |
| I_VIEW_ID | = lv_i_view_id | |
| I_T_PARAMETER | = lv_i_t_parameter | |
| IMPORTING | ||
| E_AXIS_INFO | = lv_e_axis_info | |
| E_CELL_DATA | = lv_e_cell_data | |
| E_AXIS_DATA | = lv_e_axis_data | |
| E_TXT_SYMBOLS | = lv_e_txt_symbols | |
| EXCEPTIONS | ||
| SYSTEM_PROBLEM = 1 | ||
| BW_ERROR = 2 | ||
| . " UMK_BW_QUERY_VIEW_DATA | ||
ABAP code using 7.40 inline data declarations to call FM UMK_BW_QUERY_VIEW_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_i_rfcdest) | = ' '. | |||
Search for further information about these or an SAP related objects