QV_WHERE_USED SAP Method Query View: Where-Used Analysis
Below is documentation, parameters and attributes of ABAP Method QV_WHERE_USED 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 QV_WHERE_USED can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method QV_WHERE_USED
.| Name | Type | Data Type | Description | Default Value |
| IS_SELECTION | Importing | TYPE /BCV/S_CFG_NAVIGATION | Key values of object | |
| IV_WITH_AUTH_CHECK | Importing | TYPE /BCV/CFG_FLAG | Flag: check read authorization | |
| EF_FAILED | Exporting | TYPE /BCV/CFG_FLAG | Flag: Process failed | |
| EF_IN_USE | Exporting | TYPE /BCV/CFG_FLAG | Flag: Object still in use | |
| ET_DASHBOARDS | Exporting | TYPE /BCV/T_UIF_DASHBOARD | Table Type for Dashboards | |
| ET_FAVORITES | Exporting | TYPE /BCV/T_UIF_FAV_QVIEW | Table Type of Query View Favorites | |
| ET_PREVIEWS | Exporting | TYPE /BCV/T_UIF_PREVIEWS | Table Type for Query Previews | |
| ET_SNAPSHOT | Exporting | TYPE /BCV/T_UIF_SNAPSHOT | Snapshot Table | |
| ET_VLIST | Exporting | TYPE /BCV/T_UIF_GROUPS | Table Type for Query View Lists | |
| 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 QV_WHERE_USED
/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_EF_IN_USE TYPE /BCV/CFG_FLAG,
lv_ET_DASHBOARDS TYPE /BCV/T_UIF_DASHBOARD,
lv_ET_FAVORITES TYPE /BCV/T_UIF_FAV_QVIEW,
lv_ET_PREVIEWS TYPE /BCV/T_UIF_PREVIEWS,
lv_ET_SNAPSHOT TYPE /BCV/T_UIF_SNAPSHOT,
lv_ET_VLIST TYPE /BCV/T_UIF_GROUPS,
lv_IS_SELECTION TYPE /BCV/S_CFG_NAVIGATION,
lv_IV_WITH_AUTH_CHECK TYPE /BCV/CFG_FLAG,
lv_other TYPE c.
CALL METHOD lo_class=>QV_WHERE_USED(
EXPORTING
IS_SELECTION = lv_IS_SELECTION
IV_WITH_AUTH_CHECK = lv_IV_WITH_AUTH_CHECK
IMPORTING
EF_FAILED = lv_EF_FAILED
EF_IN_USE = lv_EF_IN_USE
ET_DASHBOARDS = lv_ET_DASHBOARDS
ET_FAVORITES = lv_ET_FAVORITES
ET_PREVIEWS = lv_ET_PREVIEWS
ET_SNAPSHOT = lv_ET_SNAPSHOT
ET_VLIST = lv_ET_VLIST
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