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 directlyThe 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
.| Name | Type | Data Type | Description | Default Value |
| IT_COMBINED_FIELDS | Importing | TYPE /SCMB/T_COMBINED_FIELDS | Field Combinations | |
| IT_VALUES_DEFINITION | Importing | TYPE /SCMB/T_DEFAULT_VALUES_DET | Details Default Values of Transaction/Process | |
| IV_EXTENDED | Importing | TYPE ABAP_BOOL | Enhanced Functions: Checkbox, DDLB, Field Pairs | |
| IV_IDENTIFIER | Importing | TYPE /SCMB/DE_DUSACTION | Action for Which Dynamic Settings Are Saved | |
| IV_VALUES_STRUCTURE | Importing | TYPE TABNAME | Table Name | |
| EO_ESDUS_MANAGER | Exporting | TYPE REF TO /SCMB/CL_ESDUS_MANAGER | Manager for Dynamic User Parameters |
Exceptions of Method INIT
/SCMB/CL_ESDUS_MANAGER
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