INIT SAP Method Initialization









Below is documentation, parameters and attributes of ABAP Method INIT within SAP class /SCMB/CL_EES_DEFAULTS. 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 /SCMB/CL_EES_DEFAULTS into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

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
IT_COMBINED_FIELDSImportingTYPE
/SCMB/T_COMBINED_FIELDS
Field Combinations
IT_VALUES_DEFINITIONImportingTYPE
/SCMB/T_DEFAULT_VALUES_DET
Details Default Values of Transaction/Process
IV_EXTENDEDImportingTYPE
ABAP_BOOL
Enhanced Functions: Checkbox, DDLB, Field Pairs
IV_IDENTIFIERImportingTYPE
/SCMB/DE_DUSACTION
Action for Which Dynamic Settings Are Saved
IV_VALUES_STRUCTUREImportingTYPE
TABNAME
Table Name
EO_ESDUS_MANAGERExportingTYPE REF TO
/SCMB/CL_ESDUS_MANAGER
Manager for Dynamic User Parameters



Exceptions of Method INIT

EO_ESDUS_MANAGERExportingTYPE REF TO
/SCMB/CL_ESDUS_MANAGERManager for Dynamic User ParametersMISSING_IMPORT_PARAMETER - User Name Not Transferred

Example ABAP coding


DATA: lv_EO_ESDUS_MANAGER TYPE /SCMB/CL_ESDUS_MANAGER,
lv_IT_COMBINED_FIELDS TYPE /SCMB/T_COMBINED_FIELDS,
lv_IT_VALUES_DEFINITION TYPE /SCMB/T_DEFAULT_VALUES_DET,
lv_IV_EXTENDED TYPE ABAP_BOOL,
lv_IV_IDENTIFIER TYPE /SCMB/DE_DUSACTION,
lv_IV_VALUES_STRUCTURE TYPE TABNAME,
lv_other TYPE c.

CALL METHOD /SCMB/CL_EES_DEFAULTS=>INIT(
EXPORTING
IT_COMBINED_FIELDS = lv_IT_COMBINED_FIELDS
IT_VALUES_DEFINITION = lv_IT_VALUES_DEFINITION
IV_EXTENDED = lv_IV_EXTENDED
IV_IDENTIFIER = lv_IV_IDENTIFIER
IV_VALUES_STRUCTURE = lv_IV_VALUES_STRUCTURE
IMPORTING
EO_ESDUS_MANAGER = lv_EO_ESDUS_MANAGER ).

Links to Related Class(s)

/SCMB/CL...
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!