SIMULATE SAP Method Call/Execute Simulation
Below is documentation, parameters and attributes of ABAP Method SIMULATE within SAP class CL_ISU_BILL_SIM_SCREEN. 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 CL_ISU_BILL_SIM_SCREEN 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 SIMULATE can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SIMULATE
.| Name | Type | Data Type | Description | Default Value |
| IM_EXECUTE_SIMULATION | Importing | TYPE KENNZX | Simulation Is to Be Executed | |
| IM_NO_DIALOG | Importing | TYPE REGEN-NO_DIALOG | Suppress maintenance screens | |
| IM_PREPARE_SIMULATION | Importing | TYPE KENNZX | Simulation Is to Be Prepared | |
| IM_SIMSCEN | Importing | TYPE EA_SIMSCEN | Simulation Scenario | |
| IM_SIMSCREEN_OBJECT | Importing | TYPE REF TO CL_ISU_BILL_SIM_SCREEN | Simulation Scenario: Screen Elements | |
| EXT_IEASIMLINE | Exporting | TYPE IEASIMLINE | Table Type for EASIMLINE |
Exceptions of Method SIMULATE
IEASIMLINE
Example ABAP coding
DATA: lv_EXT_IEASIMLINE TYPE IEASIMLINE,
lv_IM_EXECUTE_SIMULATION TYPE KENNZX,
lv_IM_NO_DIALOG TYPE REGEN-NO_DIALOG,
lv_IM_PREPARE_SIMULATION TYPE KENNZX,
lv_IM_SIMSCEN TYPE EA_SIMSCEN,
lv_IM_SIMSCREEN_OBJECT TYPE CL_ISU_BILL_SIM_SCREEN,
lv_other TYPE c.
CALL METHOD CL_ISU_BILL_SIM_SCREEN=>SIMULATE(
EXPORTING
IM_EXECUTE_SIMULATION = lv_IM_EXECUTE_SIMULATION
IM_NO_DIALOG = lv_IM_NO_DIALOG
IM_PREPARE_SIMULATION = lv_IM_PREPARE_SIMULATION
IM_SIMSCEN = lv_IM_SIMSCEN
IM_SIMSCREEN_OBJECT = lv_IM_SIMSCREEN_OBJECT
IMPORTING
EXT_IEASIMLINE = lv_EXT_IEASIMLINE ).
Links to Related Class(s)
CL_ISU_B...Full list of available SAP object classes
Search for further information about these or an SAP related objects