S_CREATE SAP Method Create Instance
Below is documentation, parameters and attributes of ABAP Method S_CREATE within SAP class IF_SIW_CONFIGURATION_SETUP. 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 IF_SIW_CONFIGURATION_SETUP 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 S_CREATE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method S_CREATE
.| Name | Type | Data Type | Description | Default Value |
| I_CLASSNAME | Importing | TYPE SIW_DTE_CONFIG_SETUP_CLASS | Class for Configuration Setup | |
| I_CONFIG_ID | Importing | TYPE SIW_DTE_CONFIG_ID | Configuration ID | |
| R_SETUP | Returning | TYPE REF TO IF_SIW_CONFIGURATION_SETUP | SIW: Projekt Setup Interface |
Exceptions of Method S_CREATE
This method does not have any exceptionsExample ABAP coding
DATA: lv_I_CLASSNAME TYPE SIW_DTE_CONFIG_SETUP_CLASS,
lv_I_CONFIG_ID TYPE SIW_DTE_CONFIG_ID,
lv_R_SETUP TYPE IF_SIW_CONFIGURATION_SETUP,
lv_other TYPE c.
CALL METHOD IF_SIW_CONFIGURATION_SETUP=>S_CREATE(
EXPORTING
I_CLASSNAME = lv_I_CLASSNAME
I_CONFIG_ID = lv_I_CONFIG_ID
RECEIVING
R_SETUP = lv_R_SETUP )
"Alternate coding for Method Call with returning parameter
lv_R_SETUP = IF_SIW_CONFIGURATION_SETUP=>S_CREATE(
EXPORTING
I_CLASSNAME = lv_I_CLASSNAME
I_CONFIG_ID = lv_I_CONFIG_ID ).
Links to Related Class(s)
IF_SIW_C...Full list of available SAP object classes
Search for further information about these or an SAP related objects