INIT SAP Method of class IWCI_WDR_F4_ELEMENTARY









Below is documentation, parameters and attributes of ABAP Method INIT within SAP class IWCI_WDR_F4_ELEMENTARY. 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 IWCI_WDR_F4_ELEMENTARY 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 INIT can also be found below:

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


Parameters of Method INIT

.

NameTypeData TypeDescriptionDefault Value
LISTENERImportingTYPE REF TO
IF_WDR_DDIC_SHLP_LISTENER
MULTI_SELECTImportingTYPE
WDY_BOOLEAN
READ_ONLYImportingTYPE
WDY_BOOLEAN
ROOT_WINDOWImportingTYPE REF TO
IF_WD_WINDOW
SEARCH_TERMImportingTYPE
STRING
VALUE_LIST_TYPEImportingTYPE
STRING



Exceptions of Method INIT

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IWCI_WDR_F4_ELEMENTARY.
DATA: lv_LISTENER TYPE IF_WDR_DDIC_SHLP_LISTENER,
lv_MULTI_SELECT TYPE WDY_BOOLEAN,
lv_READ_ONLY TYPE WDY_BOOLEAN,
lv_ROOT_WINDOW TYPE IF_WD_WINDOW,
lv_SEARCH_TERM TYPE STRING,
lv_VALUE_LIST_TYPE TYPE STRING,
lv_other TYPE c.

CALL METHOD lo_class=>INIT(
EXPORTING
LISTENER = lv_LISTENER
MULTI_SELECT = lv_MULTI_SELECT
READ_ONLY = lv_READ_ONLY
ROOT_WINDOW = lv_ROOT_WINDOW
SEARCH_TERM = lv_SEARCH_TERM
VALUE_LIST_TYPE = lv_VALUE_LIST_TYPE ).

Links to Related Class(s)

IWCI_WDR...
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!