GET_SIMLINES SAP Method Simulation Lines from Billing Document









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

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


Parameters of Method GET_SIMLINES

.

NameTypeData TypeDescriptionDefault Value
IM_BILL_DOCImportingTYPE
ISU2A_BILL_DOC
Billing Document (Internal)
IM_ORIGINAL_DOCImportingTYPE
KENNZX
Original Billing Category
IM_SCImportingTYPE
EASIMSCENDATA
Data for Simulation Scenario
IM_SIMLINEKEYImportingTYPE
EA_SIMLINEKEY
Key Characteristic for Result Lines from Billing Simulation
IM_SIMLINEKEYTXTImportingTYPE
EA_SIMLINEKEYTXT
Key Characteristic for Result Lines (Text)
EX_ISIMLINEExportingTYPE
IEASIMLINE
Table Type for EASIMLINE



Exceptions of Method GET_SIMLINES

EX_ISIMLINEExportingTYPE
IEASIMLINETable Type for EASIMLINEGENERAL_FAULT - General Error

Example ABAP coding


DATA: lv_EX_ISIMLINE TYPE IEASIMLINE,
lv_IM_BILL_DOC TYPE ISU2A_BILL_DOC,
lv_IM_ORIGINAL_DOC TYPE KENNZX,
lv_IM_SC TYPE EASIMSCENDATA,
lv_IM_SIMLINEKEY TYPE EA_SIMLINEKEY,
lv_IM_SIMLINEKEYTXT TYPE EA_SIMLINEKEYTXT,
lv_other TYPE c.

CALL METHOD CL_ISU_BILL_SIM_SCEN=>GET_SIMLINES(
EXPORTING
IM_BILL_DOC = lv_IM_BILL_DOC
IM_ORIGINAL_DOC = lv_IM_ORIGINAL_DOC
IM_SC = lv_IM_SC
IM_SIMLINEKEY = lv_IM_SIMLINEKEY
IM_SIMLINEKEYTXT = lv_IM_SIMLINEKEYTXT
IMPORTING
EX_ISIMLINE = lv_EX_ISIMLINE ).

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!