EXECUTE_WHERE_USED_RAW SAP Method of class /BOBF/CL_CONF_UI_MANAGER
Below is documentation, parameters and attributes of ABAP Method EXECUTE_WHERE_USED_RAW within SAP class /BOBF/CL_CONF_UI_MANAGER. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /BOBF/CL_CONF_UI_MANAGER 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 EXECUTE_WHERE_USED_RAW can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method EXECUTE_WHERE_USED_RAW
.| Name | Type | Data Type | Description | Default Value |
| IS_SELECTION | Importing | TYPE /BOBF/S_CONF_UI_WHERE_USED_SEL | ||
| IT_BO_LIST | Importing | TYPE TT_BO_NAME_AND_KEY | ||
| IV_LIMIT_SEARCH_TO_BO_KEY | Importing | TYPE /BOBF/OBM_BO_KEY | ||
| ET_RESULT | Exporting | TYPE /BOBF/T_CONF_UI_WHERE_USED | ||
| EV_EXECUTION_ABORTED | Exporting | TYPE ABAP_BOOL |
Exceptions of Method EXECUTE_WHERE_USED_RAW
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO /BOBF/CL_CONF_UI_MANAGER.
DATA: lv_ET_RESULT TYPE /BOBF/T_CONF_UI_WHERE_USED,
lv_EV_EXECUTION_ABORTED TYPE ABAP_BOOL,
lv_IS_SELECTION TYPE /BOBF/S_CONF_UI_WHERE_USED_SEL,
lv_IT_BO_LIST TYPE TT_BO_NAME_AND_KEY,
lv_IV_LIMIT_SEARCH_TO_BO_KEY TYPE /BOBF/OBM_BO_KEY,
lv_other TYPE c.
CALL METHOD lo_class=>EXECUTE_WHERE_USED_RAW(
EXPORTING
IS_SELECTION = lv_IS_SELECTION
IT_BO_LIST = lv_IT_BO_LIST
IV_LIMIT_SEARCH_TO_BO_KEY = lv_IV_LIMIT_SEARCH_TO_BO_KEY
IMPORTING
ET_RESULT = lv_ET_RESULT
EV_EXECUTION_ABORTED = lv_EV_EXECUTION_ABORTED ).
Links to Related Class(s)
/BOBF/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects