SAP COM_EEW_BW_DESCRIBE_VIEW Function Module for









COM_EEW_BW_DESCRIBE_VIEW is a standard com eew bw describe view 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 com eew bw describe view FM, simply by entering the name COM_EEW_BW_DESCRIBE_VIEW into the relevant SAP transaction such as SE37 or SE38.

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



Function COM_EEW_BW_DESCRIBE_VIEW 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 'COM_EEW_BW_DESCRIBE_VIEW'"
EXPORTING
IV_APPL_ID = "
IV_FRGTYPE_ID = "
IV_NAME = "
* IS_DD25V_WA = "
* IS_DD09L_WA = "
* IV_DEVCLASS = '$TMP' "
IV_PARENT_KEY = "
IV_ACTION = "

TABLES
* IT_DD26V_TAB = "
* IT_DD27P_TAB = "
* IT_DD28J_TAB = "
* IT_DD28V_TAB = "
ET_OBJECT = "
.



IMPORTING Parameters details for COM_EEW_BW_DESCRIBE_VIEW

IV_APPL_ID -

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

IV_FRGTYPE_ID -

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

IV_NAME -

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

IS_DD25V_WA -

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

IS_DD09L_WA -

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

IV_DEVCLASS -

Data type: DEVCLASS
Default: '$TMP'
Optional: No
Call by Reference: Yes

IV_PARENT_KEY -

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

IV_ACTION -

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

TABLES Parameters details for COM_EEW_BW_DESCRIBE_VIEW

IT_DD26V_TAB -

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

IT_DD27P_TAB -

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

IT_DD28J_TAB -

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

IT_DD28V_TAB -

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

ET_OBJECT -

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

Copy and paste ABAP code example for COM_EEW_BW_DESCRIBE_VIEW 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_iv_appl_id  TYPE COMT_CRD_GEN_BW_APPL_ID, "   
lt_it_dd26v_tab  TYPE STANDARD TABLE OF DD26V, "   
lt_it_dd27p_tab  TYPE STANDARD TABLE OF DD27P, "   
lv_iv_frgtype_id  TYPE COMT_CRD_GEN_BW_SET_TYPE, "   
lv_iv_name  TYPE DDOBJNAME, "   
lt_it_dd28j_tab  TYPE STANDARD TABLE OF DD28J, "   
lv_is_dd25v_wa  TYPE DD25V, "   
lt_it_dd28v_tab  TYPE STANDARD TABLE OF DD28V, "   
lt_et_object  TYPE STANDARD TABLE OF COMT_GOX_DEF_HEADER, "   
lv_is_dd09l_wa  TYPE DD09V, "   
lv_iv_devclass  TYPE DEVCLASS, "   '$TMP'
lv_iv_parent_key  TYPE COMT_GOX_PARENT_GUID, "   
lv_iv_action  TYPE COMT_CRD_GEN_BW_ACTION. "   

  CALL FUNCTION 'COM_EEW_BW_DESCRIBE_VIEW'  "
    EXPORTING
         IV_APPL_ID = lv_iv_appl_id
         IV_FRGTYPE_ID = lv_iv_frgtype_id
         IV_NAME = lv_iv_name
         IS_DD25V_WA = lv_is_dd25v_wa
         IS_DD09L_WA = lv_is_dd09l_wa
         IV_DEVCLASS = lv_iv_devclass
         IV_PARENT_KEY = lv_iv_parent_key
         IV_ACTION = lv_iv_action
    TABLES
         IT_DD26V_TAB = lt_it_dd26v_tab
         IT_DD27P_TAB = lt_it_dd27p_tab
         IT_DD28J_TAB = lt_it_dd28j_tab
         IT_DD28V_TAB = lt_it_dd28v_tab
         ET_OBJECT = lt_et_object
. " COM_EEW_BW_DESCRIBE_VIEW




ABAP code using 7.40 inline data declarations to call FM COM_EEW_BW_DESCRIBE_VIEW

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_devclass) = '$TMP'.
 
 
 


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!