SAP Reports / Programs

SIM_CREATE_ENVIRONMENT SAP ABAP Report - Create Simulation Environment







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT SIM_CREATE_ENVIRONMENT. "Basic submit
SUBMIT SIM_CREATE_ENVIRONMENT AND RETURN. "Return to original report after report execution complete
SUBMIT SIM_CREATE_ENVIRONMENT VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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...


INCLUDES used within this REPORT SIM_CREATE_ENVIRONMENT

INCLUDE SIM_C_E_TOP . "
INCLUDE CKML_RUN_SELSCREEN_PERIOD_EXT.
INCLUDE SIM_C_E_F01.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name SIM_CREATE_ENVIRONMENT or its description.