REA_SIMINDICES_CREATE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Create Indexes for Mass Simulation This report selects all installations for the specified selection parameters...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter REA_SIMINDICES_CREATE into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
EAMS10 - Create Simulation Indexes
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: XABLH = D Meter reading unit
Selection Text: XAKLASS = D Billing class
Selection Text: XANLAGE = D Installation
Selection Text: XBRANCHE = D Industry sector
Selection Text: XSERVICE = D Service Type
Selection Text: XSIMRID = D Simul. Period Identification
Selection Text: XSPARTE = D Division
Selection Text: XTTYP = D Rate category
Title: Create Simulation Indexes for Mass Simulation
Text Symbol: 001 = &1 simulation indexes were created
Text Symbol: 002 = Note: At least some of the indexes already existed
INCLUDE IEAMASSSIM.
No SAP DATABASE tables are accessed within this REPORT code!
ISU_DB_TE537_CHECK_CONSISTENCY CALL FUNCTION 'ISU_DB_TE537_CHECK_CONSISTENCY' EXPORTING x_simrunid = xsimrid IMPORTING y_te537 = wte537 EXCEPTIONS OTHERS = 1.
ISU_BI_SIMINDICES_CREATE CALL FUNCTION 'ISU_BI_SIMINDICES_CREATE' EXPORTING x_simrunid = xsimrid x_range_ableinh = xablh[] x_range_sparte = xsparte[] x_range_aklasse = xaklass[] x_range_tariftyp = xttyp[] x_range_anlage = xanlage[] x_range_branche = xbranche[] x_range_service = xservice[] IMPORTING y_count = count y_duplicate_keys = dup_keys EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
REA_SIMINDICES_CREATE - Create Simulation Indexes for Mass Simulation REA_SIMINDICES_CREATE - Create Simulation Indexes for Mass Simulation REA_SIMINDICES_COUNT - Statistics for Simulation Indexes REA_SIMINDICES_COUNT - Statistics for Simulation Indexes REA_SIMINDICES_BILL - Mass Billing of Simulation Indexes REA_SIMINDICES_BILL - Mass Billing of Simulation Indexes