CONVERT_TO_SEL_OPTION SAP Method Converts Relational Operator to Selection Option
Below is documentation, parameters and attributes of ABAP Method CONVERT_TO_SEL_OPTION within SAP class /BCV/CL_QRM_RELAT_OPERATOR. 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_QRM_RELAT_OPERATOR into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method CONVERT_TO_SEL_OPTION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CONVERT_TO_SEL_OPTION
.| Name | Type | Data Type | Description | Default Value |
| IV_NEGATE | Importing | TYPE /BCV/QRM_NEGATION_IND | Negate Relation Operator? | |
| IV_RELAT_OPERATOR | Importing | TYPE /BCV/QRM_RELAT_OPERATOR | Relational Operator | |
| EV_OPTION | Exporting | TYPE /BCV/FND_OPTION | Selection Option: Option | |
| EV_SIGN | Exporting | TYPE /BCV/FND_SIGN_RANGE | Selection Option: Sign |
Exceptions of Method CONVERT_TO_SEL_OPTION
This method does not have any exceptionsExample ABAP coding
DATA: lv_EV_OPTION TYPE /BCV/FND_OPTION,
lv_EV_SIGN TYPE /BCV/FND_SIGN_RANGE,
lv_IV_NEGATE TYPE /BCV/QRM_NEGATION_IND,
lv_IV_RELAT_OPERATOR TYPE /BCV/QRM_RELAT_OPERATOR,
lv_other TYPE c.
CALL METHOD /BCV/CL_QRM_RELAT_OPERATOR=>CONVERT_TO_SEL_OPTION(
EXPORTING
IV_NEGATE = lv_IV_NEGATE
IV_RELAT_OPERATOR = lv_IV_RELAT_OPERATOR
IMPORTING
EV_OPTION = lv_EV_OPTION
EV_SIGN = lv_EV_SIGN ).
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