CALL_QR_POPUP_SEL_CRITERIA SAP Method of class /BCV/IWCI_WDC_CFG_POP_QR_SELCR
Below is documentation, parameters and attributes of ABAP Method CALL_QR_POPUP_SEL_CRITERIA within SAP class /BCV/IWCI_WDC_CFG_POP_QR_SELCR. 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/IWCI_WDC_CFG_POP_QR_SELCR 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 CALL_QR_POPUP_SEL_CRITERIA can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CALL_QR_POPUP_SEL_CRITERIA
.| Name | Type | Data Type | Description | Default Value |
| IS_INATTR | Importing | TYPE /BCV/S_CFG_QUERY_INPUT_ATTR | ||
| IS_TRANS_KEYS | Importing | TYPE /BCV/S_CFG_TRANS_KEYS | ||
| IT_INATTR | Importing | TYPE /BCV/T_CFG_QUERY_INPUT_ATTR | ||
| IT_OUTATTR | Importing | TYPE /BCV/T_CFG_QUERY_OUTPUT_ATTR | ||
| IT_SELCRIT_FOR_ATTR | Importing | TYPE /BCV/T_CFG_QUERY_SELCRIT | ||
| IV_FIELD_READ_ONLY | Importing | TYPE WDY_BOOLEAN | ||
| IV_I_MAX | Importing | TYPE I | ||
| IV_KEY_READ_ONLY | Importing | TYPE WDY_BOOLEAN |
Exceptions of Method CALL_QR_POPUP_SEL_CRITERIA
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /BCV/IWCI_WDC_CFG_POP_QR_SELCR.
DATA: lv_IS_INATTR TYPE /BCV/S_CFG_QUERY_INPUT_ATTR,
lv_IS_TRANS_KEYS TYPE /BCV/S_CFG_TRANS_KEYS,
lv_IT_INATTR TYPE /BCV/T_CFG_QUERY_INPUT_ATTR,
lv_IT_OUTATTR TYPE /BCV/T_CFG_QUERY_OUTPUT_ATTR,
lv_IT_SELCRIT_FOR_ATTR TYPE /BCV/T_CFG_QUERY_SELCRIT,
lv_IV_FIELD_READ_ONLY TYPE WDY_BOOLEAN,
lv_IV_I_MAX TYPE I,
lv_IV_KEY_READ_ONLY TYPE WDY_BOOLEAN,
lv_other TYPE c.
CALL METHOD lo_class=>CALL_QR_POPUP_SEL_CRITERIA(
EXPORTING
IS_INATTR = lv_IS_INATTR
IS_TRANS_KEYS = lv_IS_TRANS_KEYS
IT_INATTR = lv_IT_INATTR
IT_OUTATTR = lv_IT_OUTATTR
IT_SELCRIT_FOR_ATTR = lv_IT_SELCRIT_FOR_ATTR
IV_FIELD_READ_ONLY = lv_IV_FIELD_READ_ONLY
IV_I_MAX = lv_IV_I_MAX
IV_KEY_READ_ONLY = lv_IV_KEY_READ_ONLY ).
Links to Related Class(s)
/BCV/IWC...Full list of available SAP object classes
Search for further information about these or an SAP related objects