DETERMINE_TOOLTIP SAP Method Determine the tooltip
Below is documentation, parameters and attributes of ABAP Method DETERMINE_TOOLTIP 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 DETERMINE_TOOLTIP can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DETERMINE_TOOLTIP
.| Name | Type | Data Type | Description | Default Value |
| IV_ADD_UOM | Importing | TYPE BOOLE_D | Add UOM to tooltip | |
| IV_DATATYPE | Importing | TYPE /BCV/QRM_ATTRIBUTE_DATATYPE | Data Type of Query Field | |
| IV_DECIMALS | Importing | TYPE /BCV/QRM_ATTRIBUTE_DECIMALS | Decimals of Query Field | |
| IV_UOM | Importing | TYPE STRING | Determined unit of measure | |
| IV_UOM_CEXIT | Importing | TYPE /BCV/FND_CONVEXIT | Conversion exit of UOM | |
| IV_VALUE | Importing | TYPE ANY | Original value | |
| RV_TOOLTIP | Returning | TYPE STRING | String representation of results |
Exceptions of Method DETERMINE_TOOLTIP
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /BCV/CL_UIF_QVIEW_ASSIST.
DATA: lv_IV_ADD_UOM TYPE BOOLE_D,
lv_IV_DATATYPE TYPE /BCV/QRM_ATTRIBUTE_DATATYPE,
lv_IV_DECIMALS TYPE /BCV/QRM_ATTRIBUTE_DECIMALS,
lv_IV_UOM TYPE STRING,
lv_IV_UOM_CEXIT TYPE /BCV/FND_CONVEXIT,
lv_IV_VALUE TYPE ANY,
lv_RV_TOOLTIP TYPE STRING,
lv_other TYPE c.
CALL METHOD lo_class=>DETERMINE_TOOLTIP(
EXPORTING
IV_ADD_UOM = lv_IV_ADD_UOM
IV_DATATYPE = lv_IV_DATATYPE
IV_DECIMALS = lv_IV_DECIMALS
IV_UOM = lv_IV_UOM
IV_UOM_CEXIT = lv_IV_UOM_CEXIT
IV_VALUE = lv_IV_VALUE
RECEIVING
RV_TOOLTIP = lv_RV_TOOLTIP )
"Alternate coding for Method Call with returning parameter
lv_RV_TOOLTIP = lo_class=>DETERMINE_TOOLTIP(
EXPORTING
IV_ADD_UOM = lv_IV_ADD_UOM
IV_DATATYPE = lv_IV_DATATYPE
IV_DECIMALS = lv_IV_DECIMALS
IV_UOM = lv_IV_UOM
IV_UOM_CEXIT = lv_IV_UOM_CEXIT
IV_VALUE = lv_IV_VALUE ).
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