ISU_BI_MASS_SIMULATION is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name ISU_BI_MASS_SIMULATION into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
EAUR_IP
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISU_BI_MASS_SIMULATION' "Mass Billing of Simulation Indexes
EXPORTING
* x_range_anlage = " ranges_anlage Range for Installation
x_simrunid = " simrunid Identification of simulation run
x_param_ebisid = " ebisid Screen Field List: Billing/Simulation (Transaction EA01)
* x_no_update = SPACE " kennzx Indicator
* x_single_anlage = SPACE " anlage Installation
* x_block_size = 10 " i
* x_runtime_analyzer_no = 0 " i
IMPORTING
y_counter = " isu_mass_sim_counter Mass simulation: statistics counter
y_result = " bill_sim_set Standard table for structure BILL_SIM_SET
y_extnumber = " balhdr-extnumber Application Log: External Identification
y_handle = " emsg_gen-handle Message object identification
y_fatal_error = " kennzx Indicator
EXCEPTIONS
GENERAL_FAULT = 1 "
. " ISU_BI_MASS_SIMULATION
The ABAP code below is a full code listing to execute function module ISU_BI_MASS_SIMULATION including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| ld_y_counter | TYPE ISU_MASS_SIM_COUNTER , |
| ld_y_result | TYPE BILL_SIM_SET , |
| ld_y_extnumber | TYPE BALHDR-EXTNUMBER , |
| ld_y_handle | TYPE EMSG_GEN-HANDLE , |
| ld_y_fatal_error | TYPE KENNZX . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_y_counter | TYPE ISU_MASS_SIM_COUNTER , |
| ld_x_range_anlage | TYPE RANGES_ANLAGE , |
| ld_y_result | TYPE BILL_SIM_SET , |
| ld_x_simrunid | TYPE SIMRUNID , |
| ld_y_extnumber | TYPE BALHDR-EXTNUMBER , |
| ld_x_param_ebisid | TYPE EBISID , |
| ld_y_handle | TYPE EMSG_GEN-HANDLE , |
| ld_x_no_update | TYPE KENNZX , |
| ld_y_fatal_error | TYPE KENNZX , |
| ld_x_single_anlage | TYPE ANLAGE , |
| ld_x_block_size | TYPE I , |
| ld_x_runtime_analyzer_no | TYPE I . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name ISU_BI_MASS_SIMULATION or its description.
ISU_BI_MASS_SIMULATION - Mass Billing of Simulation Indexes ISU_BI_MASS_OUTSORT_RELEASE - Mass Billing of Simulation Indexes ISU_BI_MASS_OUTSORT_DISPLAY - Outsorting Dialog During Mass Simulation ISU_BI_BACKLOG_REDUCE - ISU_BI_ADDR_DATA_READ - ISU_BIPR_DX_INTERVALS_CLS - INTERNAL: Interval Creation via GPART for Bill Printout, Close FM