GET_INSTANCE SAP Method GET INSTANCE of ESDUS Manager
Below is documentation, parameters and attributes of ABAP Method GET_INSTANCE within SAP class /SCMB/CL_ESDUS_MANAGER. 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_ESDUS_MANAGER 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 GET_INSTANCE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_INSTANCE
.| Name | Type | Data Type | Description | Default Value |
| IV_ACTION | Importing | TYPE /SCMB/DE_DUSACTION | Action for Which Dynamic Settings Are Held | |
| IV_UNAME | Importing | TYPE SYUNAME | User Name | |
| EO_ESDUS_MANAGER | Returning | TYPE REF TO /SCMB/CL_ESDUS_MANAGER | Manager for Dynamic User Parameters |
Exceptions of Method GET_INSTANCE
This method does not have any exceptionsExample ABAP coding
DATA: lv_EO_ESDUS_MANAGER TYPE /SCMB/CL_ESDUS_MANAGER,
lv_IV_ACTION TYPE /SCMB/DE_DUSACTION,
lv_IV_UNAME TYPE SYUNAME,
lv_other TYPE c.
CALL METHOD /SCMB/CL_ESDUS_MANAGER=>GET_INSTANCE(
EXPORTING
IV_ACTION = lv_IV_ACTION
IV_UNAME = lv_IV_UNAME
RECEIVING
EO_ESDUS_MANAGER = lv_EO_ESDUS_MANAGER )
"Alternate coding for Method Call with returning parameter
lv_EO_ESDUS_MANAGER = /SCMB/CL_ESDUS_MANAGER=>GET_INSTANCE(
EXPORTING
IV_ACTION = lv_IV_ACTION
IV_UNAME = lv_IV_UNAME ).
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