SIM_CREATE_ENVIRONMENT is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter SIM_CREATE_ENVIRONMENT into the relevant SAP transactions such as SE38 or SE80
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: P_ACTION = Create/Delete (C/D)
Selection Text: P_APPL = D Application
Selection Text: P_GJAHR = D Fiscal year
Selection Text: P_POPER = D Posting period
Selection Text: P_RUNDAY = D Last Day of Period
Selection Text: P_RUNTYP = D Costing run profile
Title: Create Simulation Environment
Text Symbol: 001 = Generating simulation environment...
Text Symbol: 002 = Processing valuation area &1...
Text Symbol: 003 = Deleting simulation environment...
INCLUDE SIM_C_E_TOP . "
INCLUDE CKML_RUN_SELSCREEN_PERIOD_EXT.
INCLUDE SIM_C_E_F01.
No SAP DATABASE tables are accessed within this REPORT code!
CKML_RUN_PERIOD_GET call function 'CKML_RUN_PERIOD_GET' exporting * i_run_id = ' ' I_RUN_TYPE = P_RUNTYP I_LAST_DAY = P_RUNDAY I_POPER = P_POPER I_GJAHR = P_GJAHR I_APPL = P_APPL importing ES_RUNPERIOD = G_RUNPERIOD * exceptions * run_not_existent = 1 * others = 2 .
CM_F_INFO call function 'CM_F_INFO' * EXPORTING * ALL = 'X' * APLID = ' ' * OBJECT = ' ' * OBJECT_ID = ' ' * WILDCARD_SEARCH = ' ' IMPORTING * APLIDENT = * A_MSG_COUNTER_PRO = * A_MSG_COUNTER_SCR = * E_MSG_COUNTER_PRO = * E_MSG_COUNTER_SCR = * I_MSG_COUNTER_PRO = * I_MSG_COUNTER_SCR = * MAX_SEVERITY_PRO = * MAX_SEVERITY_SCR = * MSGTY_PRO = * MSGTY_SCR = MSG_COUNTER_PRO = h_msg_counter_pro.
CM_F_DISPLAY_LOG call function 'CM_F_DISPLAY_LOG' EXPORTING * APLID = ' ' * HEADLINE = ' ' * OCS_ACTIV = ' ' * OCS_SEND_IMMEDIATE = ' ' SKIP_INFO_SCREEN = h_skip_info_screen * DISPLAY_IN_NEW_TASK = ' ' * TITLEBAR = ' ' * TITLE = ' ' * OBJECT = ' ' * WITH_OBJECTINDEPENDENT = 'X' * ADDITIONAL_INFO = * MSG_EXITCALL_ICON = ' ' GRID_DISPLAY = 'X' ALV_VARIANT = ckru0_co_msg_alv_variant.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
SIM_CREATE_ENVIRONMENT - Create Simulation Environment SIM_CREATE_ENVIRONMENT - Create Simulation Environment SIMPLE_TREE_MODEL_TOP - Include SIMPLE_TREE_MODEL_TOP SIMPLE_TREE_MODEL_O01 - Include SIMPLE_TREE_MODEL_O01 SIMPLE_TREE_MODEL_I01 - Include SIMPLE_TREE_MODEL_I01 SIMPLE_TREE_MODEL_F01 - Include SIMPLE_TREE_MODEL_F01