GET_CURRENT_SEARCH_CRITERIA SAP Method of class CL_FPM_SEARCH_UIBB_SELOPT
Below is documentation, parameters and attributes of ABAP Method GET_CURRENT_SEARCH_CRITERIA within SAP class CL_FPM_SEARCH_UIBB_SELOPT. 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 CL_FPM_SEARCH_UIBB_SELOPT 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_CURRENT_SEARCH_CRITERIA can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_CURRENT_SEARCH_CRITERIA
.| Name | Type | Data Type | Description | Default Value |
| IV_INCLUDE_UNVALUATED_ROWS | Importing | TYPE WDY_BOOLEAN | Replacement for Real Boolean Type: 'X' == True '' == False | |
| IV_RESOLVE_TOKEN | Importing | TYPE WDY_BOOLEAN | Replacement for Real Boolean Type: 'X' == True '' == False | |
| ET_SEARCH_CRITERIA | Exporting | TYPE FPMGB_T_SEARCH_CRITERIA | search criteria for GUIBB Search | |
| EV_MAX_NUM_RESULT | Exporting | TYPE FPMGB_MAX_NUM_RESULT | Maximum Number of Rows in Result List in Search GUIBB | |
| EV_SELECT_ALL_RESULTS | Exporting | TYPE WDY_BOOLEAN | Replacement for Real Boolean Type: 'X' == True '' == False |
Exceptions of Method GET_CURRENT_SEARCH_CRITERIA
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_FPM_SEARCH_UIBB_SELOPT.
DATA: lv_ET_SEARCH_CRITERIA TYPE FPMGB_T_SEARCH_CRITERIA,
lv_EV_MAX_NUM_RESULT TYPE FPMGB_MAX_NUM_RESULT,
lv_EV_SELECT_ALL_RESULTS TYPE WDY_BOOLEAN,
lv_IV_INCLUDE_UNVALUATED_ROWS TYPE WDY_BOOLEAN,
lv_IV_RESOLVE_TOKEN TYPE WDY_BOOLEAN,
lv_other TYPE c.
CALL METHOD lo_class=>GET_CURRENT_SEARCH_CRITERIA(
EXPORTING
IV_INCLUDE_UNVALUATED_ROWS = lv_IV_INCLUDE_UNVALUATED_ROWS
IV_RESOLVE_TOKEN = lv_IV_RESOLVE_TOKEN
IMPORTING
ET_SEARCH_CRITERIA = lv_ET_SEARCH_CRITERIA
EV_MAX_NUM_RESULT = lv_EV_MAX_NUM_RESULT
EV_SELECT_ALL_RESULTS = lv_EV_SELECT_ALL_RESULTS ).
Links to Related Class(s)
CL_FPM_S...Full list of available SAP object classes
Search for further information about these or an SAP related objects