ADD_ATTRIBUTES_TO_SELOPT SAP Method of class CL_FPM_SEARCH_UIBB_SELOPT









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

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


Parameters of Method ADD_ATTRIBUTES_TO_SELOPT

.

NameTypeData TypeDescriptionDefault Value
IS_OPTIONSImportingTYPE
FPMGB_S_SEARCH_OPTIONS
FPM Search UIBB: Contains elements for adjustments
IT_INITIAL_SEARCH_CRITERIAImportingTYPE
FPMGB_T_SEARCH_CRITERIA
search criteria for GUIBB Search
IT_SELOPT_EXCL_OPERATORSImportingTYPE
TY_T_OPERATORS
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
ET_SEARCH_CRITERIAExportingTYPE
FPMGB_T_SEARCH_CRITERIA
search criteria for GUIBB Search



Exceptions of Method ADD_ATTRIBUTES_TO_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_IS_OPTIONS TYPE FPMGB_S_SEARCH_OPTIONS,
lv_IT_INITIAL_SEARCH_CRITERIA TYPE FPMGB_T_SEARCH_CRITERIA,
lv_IT_SELOPT_EXCL_OPERATORS TYPE TY_T_OPERATORS,
lv_IV_RENDER_ONLY_INITIAL_DATA TYPE WDY_BOOLEAN,
lv_IV_SHOW_EXCLUDE_CRITERIA TYPE WDY_BOOLEAN,
lv_other TYPE c.

CALL METHOD lo_class=>ADD_ATTRIBUTES_TO_SELOPT(
EXPORTING
IS_OPTIONS = lv_IS_OPTIONS
IT_INITIAL_SEARCH_CRITERIA = lv_IT_INITIAL_SEARCH_CRITERIA
IT_SELOPT_EXCL_OPERATORS = lv_IT_SELOPT_EXCL_OPERATORS
IV_RENDER_ONLY_INITIAL_DATA = lv_IV_RENDER_ONLY_INITIAL_DATA
IV_SHOW_EXCLUDE_CRITERIA = lv_IV_SHOW_EXCLUDE_CRITERIA
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!