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 directly

The 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

.

NameTypeData TypeDescriptionDefault Value
IM_EXECUTE_SIMULATIONImportingTYPE
KENNZX
Simulation Is to Be Executed
IM_NO_DIALOGImportingTYPE
REGEN-NO_DIALOG
Suppress maintenance screens
IM_PREPARE_SIMULATIONImportingTYPE
KENNZX
Simulation Is to Be Prepared
IM_SIMSCENImportingTYPE
EA_SIMSCEN
Simulation Scenario
IM_SIMSCREEN_OBJECTImportingTYPE REF TO
CL_ISU_BILL_SIM_SCREEN
Simulation Scenario: Screen Elements
EXT_IEASIMLINEExportingTYPE
IEASIMLINE
Table Type for EASIMLINE



Exceptions of Method SIMULATE

EXT_IEASIMLINEExportingTYPE
IEASIMLINETable Type for EASIMLINENO_RESULTS_AVAILABLE - No Simulation Results Have Been Generated

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



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!