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 directlyThe 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
.| Name | Type | Data Type | Description | Default Value |
| IM_BILL_DOC | Importing | TYPE ISU2A_BILL_DOC | Billing Document (Internal) | |
| IM_ORIGINAL_DOC | Importing | TYPE KENNZX | Original Billing Category | |
| IM_SC | Importing | TYPE EASIMSCENDATA | Data for Simulation Scenario | |
| IM_SIMLINEKEY | Importing | TYPE EA_SIMLINEKEY | Key Characteristic for Result Lines from Billing Simulation | |
| IM_SIMLINEKEYTXT | Importing | TYPE EA_SIMLINEKEYTXT | Key Characteristic for Result Lines (Text) | |
| EX_ISIMLINE | Exporting | TYPE IEASIMLINE | Table Type for EASIMLINE |
Exceptions of Method GET_SIMLINES
IEASIMLINE
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