OPEN SAP Method Open Simulation Scenario









Below is documentation, parameters and attributes of ABAP Method OPEN within SAP class CL_ISU_BILL_SIM_SCREEN_RATECAT. 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_RATECAT 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 OPEN can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method OPEN

.

NameTypeData TypeDescriptionDefault Value
IM_SIMFROMImportingTYPE
BEGABRPE
Start of Billing Period
IM_SIMSCENImportingTYPE
EA_SIMSCEN
Simulation Scenario
IM_SIMTOImportingTYPE
ENDABRPE
End of billing period
IM_VERTRAGImportingTYPE
VERTRAG
Contract
EXT_EASIMPERCONSExportingTYPE
IEASIMPERCONS
Period Consumption for Billing Simulation
EXT_SIMULATE_RATECATExportingTYPE
ITARIFTYP
Table of Rate Categories
EX_SIMSCREEN_OBJECTExportingTYPE REF TO
CL_ISU_BILL_SIM_SCREEN
Simulation Scenario: Screen Elements



Exceptions of Method OPEN

EXT_EASIMPERCONSExportingTYPE
IEASIMPERCONSPeriod Consumption for Billing SimulationEXT_SIMULATE_RATECATExportingTYPE
ITARIFTYPTable of Rate CategoriesEX_SIMSCREEN_OBJECTExportingTYPE REF TO
CL_ISU_BILL_SIM_SCREENSimulation Scenario: Screen ElementsGENERAL_FAULT - General Error

Example ABAP coding


DATA: lv_EXT_EASIMPERCONS TYPE IEASIMPERCONS,
lv_EXT_SIMULATE_RATECAT TYPE ITARIFTYP,
lv_EX_SIMSCREEN_OBJECT TYPE CL_ISU_BILL_SIM_SCREEN,
lv_IM_SIMFROM TYPE BEGABRPE,
lv_IM_SIMSCEN TYPE EA_SIMSCEN,
lv_IM_SIMTO TYPE ENDABRPE,
lv_IM_VERTRAG TYPE VERTRAG,
lv_other TYPE c.

CALL METHOD CL_ISU_BILL_SIM_SCREEN_RATECAT=>OPEN(
EXPORTING
IM_SIMFROM = lv_IM_SIMFROM
IM_SIMSCEN = lv_IM_SIMSCEN
IM_SIMTO = lv_IM_SIMTO
IM_VERTRAG = lv_IM_VERTRAG
IMPORTING
EXT_EASIMPERCONS = lv_EXT_EASIMPERCONS
EXT_SIMULATE_RATECAT = lv_EXT_SIMULATE_RATECAT
EX_SIMSCREEN_OBJECT = lv_EX_SIMSCREEN_OBJECT ).

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!