GET_ALL_MEANINGS SAP Method Determine meanings corresponding to selected screen element
Below is documentation, parameters and attributes of ABAP Method GET_ALL_MEANINGS within SAP class /BCV/CL_UIF_QVIEW_ASSIST. 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_UIF_QVIEW_ASSIST 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 GET_ALL_MEANINGS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_ALL_MEANINGS
.| Name | Type | Data Type | Description | Default Value |
| IT_INDEX | Importing | TYPE TT_TABIX | Index table | |
| IT_SEL_ATTR | Importing | TYPE /BCV/IF_UIF_REPR_TECHNOLOGY=>TT_REPR_ATTRIBUTE | Table of selected attributes | |
| ET_ALL_MEANING | Exporting | TYPE /BCV/T_UIF_DRILLDOWN_INPUT | All meanings together with values |
Exceptions of Method GET_ALL_MEANINGS
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /BCV/CL_UIF_QVIEW_ASSIST.
DATA: lv_ET_ALL_MEANING TYPE /BCV/T_UIF_DRILLDOWN_INPUT,
lv_IT_INDEX TYPE TT_TABIX,
lv_IT_SEL_ATTR TYPE /BCV/IF_UIF_REPR_TECHNOLOGY=>TT_REPR_ATTRIBUTE,
lv_other TYPE c.
CALL METHOD lo_class=>GET_ALL_MEANINGS(
EXPORTING
IT_INDEX = lv_IT_INDEX
IT_SEL_ATTR = lv_IT_SEL_ATTR
IMPORTING
ET_ALL_MEANING = lv_ET_ALL_MEANING ).
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