DB_TEST_EXECUTION SAP Method Dashboard: Test Execution
Below is documentation, parameters and attributes of ABAP Method DB_TEST_EXECUTION within SAP class /BCV/CL_CFG_PROV_SERVICES. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /BCV/CL_CFG_PROV_SERVICES into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method DB_TEST_EXECUTION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DB_TEST_EXECUTION
.| Name | Type | Data Type | Description | Default Value |
| IO_WD_COMPONENT | Importing | TYPE REF TO IF_WD_COMPONENT | Web Dynpro: Component | |
| IV_CONTEXT_KEY | Importing | TYPE /BCV/FND_CONTEXT_KEY | Context Key | |
| IV_DASHBOARD_ID | Importing | TYPE /BCV/UIF_DASHB_ID | ID of Dashboard | |
| IV_SYSTEM_ALIAS | Importing | TYPE STRING | System Alias | |
| EF_FAILED | Exporting | TYPE /BCV/CFG_FLAG | Flag: Process failed | |
| CO_LOG | Changing | TYPE REF TO /BCV/CL_FND_LOG | Log | |
| CT_MESSAGES | Changing | TYPE /BCV/T_CFG_MESSAGE | Message Table within Configuration Center |
Exceptions of Method DB_TEST_EXECUTION
/BCV/CX_CFG - Exception Class for Configuration CenterExample ABAP coding
DATA: lo_class TYPE REF TO /BCV/CL_CFG_PROV_SERVICES.
DATA: lv_CO_LOG TYPE /BCV/CL_FND_LOG,
lv_CT_MESSAGES TYPE /BCV/T_CFG_MESSAGE,
lv_EF_FAILED TYPE /BCV/CFG_FLAG,
lv_IO_WD_COMPONENT TYPE IF_WD_COMPONENT,
lv_IV_CONTEXT_KEY TYPE /BCV/FND_CONTEXT_KEY,
lv_IV_DASHBOARD_ID TYPE /BCV/UIF_DASHB_ID,
lv_IV_SYSTEM_ALIAS TYPE STRING,
lv_other TYPE c.
CALL METHOD lo_class=>DB_TEST_EXECUTION(
EXPORTING
IO_WD_COMPONENT = lv_IO_WD_COMPONENT
IV_CONTEXT_KEY = lv_IV_CONTEXT_KEY
IV_DASHBOARD_ID = lv_IV_DASHBOARD_ID
IV_SYSTEM_ALIAS = lv_IV_SYSTEM_ALIAS
IMPORTING
EF_FAILED = lv_EF_FAILED
CHANGING
CO_LOG = lv_CO_LOG
CT_MESSAGES = lv_CT_MESSAGES ).
Links to Related Class(s)
/BCV/CL_...Full list of available SAP object classes
Search for further information about these or an SAP related objects