RESET_SELOPT SAP Method of class CL_FPM_SEARCH_UIBB_SELOPT









Below is documentation, parameters and attributes of ABAP Method RESET_SELOPT 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 RESET_SELOPT can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method RESET_SELOPT

.

NameTypeData TypeDescriptionDefault Value
IO_FIELD_CATALOGImportingTYPE REF TO
CL_ABAP_STRUCTDESCR
Runtime Type Services
IS_CONFIG_DATAImportingTYPE
CL_FPM_SEARCH_UIBB_ASSIST=>TY_S_CONFIG
IS_OPTIONSImportingTYPE
FPMGB_S_SEARCH_OPTIONS
FPM Search UIBB: Contains elements for adjustments
IT_ATTRIBUTEImportingTYPE
TY_T_ATTRIBUTE
IT_FIELD_DESCRIPTIONImportingTYPE
FPMGB_T_SEARCHFIELD_DESCR
Search Fielddescription
IT_INITIAL_SEARCH_CRITERIAImportingTYPE
FPMGB_T_SEARCH_CRITERIA
search criteria for GUIBB Search
IT_SAVED_SEARCHImportingTYPE
IF_FPM_SEARCH_PERSISTENCE=>T_SEARCH_ID
IT_SEARCH_GROUPImportingTYPE
TY_T_SEARCH_GROUP
IT_SELOPT_EXCL_OPERATORSImportingTYPE
TY_T_OPERATORS
IV_ACTUAL_SEARCH_IDImportingTYPE
STRING
IV_RENDER_ONLY_INITIAL_DATAImportingTYPE
WDY_BOOLEAN
Replacement for Real Boolean Type: 'X' == True '' == False
IV_SHOW_EXCLUDE_CRITERIAImportingTYPE
WDY_BOOLEAN
Replacement for Real Boolean Type: 'X' == True '' == False
IO_SELOPT_CONTROLLERImportingTYPE REF TO
IWCI_WD_SELECT_OPTIONS_20
WebDynpro Interface COMPONENTCONTROLLER
IS_FIORI_SETTINGSImportingTYPE
FPMGB_S_SEARCH_FIORI_SETTINGS
Search GUIBB: Settings for Fiori Layout
IT_UNFAVORED_VIEWImportingTYPE
IF_FPM_GUIBB_SEARCH_CFG_ACC=>TY_T_UNFAVORED_VIEW
IV_ENFORCE_ADVANCED_SEARCHImportingTYPE
WDY_BOOLEAN
Replacement for Real Boolean Type: 'X' == True '' == False
ET_SEARCH_CRITERIAExportingTYPE
FPMGB_T_SEARCH_CRITERIA
search criteria for GUIBB Search



Exceptions of Method RESET_SELOPT

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO CL_FPM_SEARCH_UIBB_SELOPT.
DATA: lv_ET_SEARCH_CRITERIA TYPE FPMGB_T_SEARCH_CRITERIA,
lv_IO_FIELD_CATALOG TYPE CL_ABAP_STRUCTDESCR,
lv_IS_CONFIG_DATA TYPE CL_FPM_SEARCH_UIBB_ASSIST=>TY_S_CONFIG,
lv_IS_OPTIONS TYPE FPMGB_S_SEARCH_OPTIONS,
lv_IT_ATTRIBUTE TYPE TY_T_ATTRIBUTE,
lv_IT_FIELD_DESCRIPTION TYPE FPMGB_T_SEARCHFIELD_DESCR,
lv_IT_INITIAL_SEARCH_CRITERIA TYPE FPMGB_T_SEARCH_CRITERIA,
lv_IT_SAVED_SEARCH TYPE IF_FPM_SEARCH_PERSISTENCE=>T_SEARCH_ID,
lv_IT_SEARCH_GROUP TYPE TY_T_SEARCH_GROUP,
lv_IT_SELOPT_EXCL_OPERATORS TYPE TY_T_OPERATORS,
lv_IV_ACTUAL_SEARCH_ID TYPE STRING,
lv_IV_RENDER_ONLY_INITIAL_DATA TYPE WDY_BOOLEAN,
lv_IV_SHOW_EXCLUDE_CRITERIA TYPE WDY_BOOLEAN,
lv_IO_SELOPT_CONTROLLER TYPE IWCI_WD_SELECT_OPTIONS_20,
lv_IS_FIORI_SETTINGS TYPE FPMGB_S_SEARCH_FIORI_SETTINGS,
lv_IT_UNFAVORED_VIEW TYPE IF_FPM_GUIBB_SEARCH_CFG_ACC=>TY_T_UNFAVORED_VIEW,
lv_IV_ENFORCE_ADVANCED_SEARCH TYPE WDY_BOOLEAN,
lv_other TYPE c.

CALL METHOD lo_class=>RESET_SELOPT(
EXPORTING
IO_FIELD_CATALOG = lv_IO_FIELD_CATALOG
IS_CONFIG_DATA = lv_IS_CONFIG_DATA
IS_OPTIONS = lv_IS_OPTIONS
IT_ATTRIBUTE = lv_IT_ATTRIBUTE
IT_FIELD_DESCRIPTION = lv_IT_FIELD_DESCRIPTION
IT_INITIAL_SEARCH_CRITERIA = lv_IT_INITIAL_SEARCH_CRITERIA
IT_SAVED_SEARCH = lv_IT_SAVED_SEARCH
IT_SEARCH_GROUP = lv_IT_SEARCH_GROUP
IT_SELOPT_EXCL_OPERATORS = lv_IT_SELOPT_EXCL_OPERATORS
IV_ACTUAL_SEARCH_ID = lv_IV_ACTUAL_SEARCH_ID
IV_RENDER_ONLY_INITIAL_DATA = lv_IV_RENDER_ONLY_INITIAL_DATA
IV_SHOW_EXCLUDE_CRITERIA = lv_IV_SHOW_EXCLUDE_CRITERIA
IO_SELOPT_CONTROLLER = lv_IO_SELOPT_CONTROLLER
IS_FIORI_SETTINGS = lv_IS_FIORI_SETTINGS
IT_UNFAVORED_VIEW = lv_IT_UNFAVORED_VIEW
IV_ENFORCE_ADVANCED_SEARCH = lv_IV_ENFORCE_ADVANCED_SEARCH
IMPORTING
ET_SEARCH_CRITERIA = lv_ET_SEARCH_CRITERIA ).

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!