RS_SYSTEM_SHUTDOWN 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 RS_SYSTEM_SHUTDOWN 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: DE_DOWN = Daemons
Selection Text: DE_UP = Daemons
Selection Text: DOWN = Shut down processes
Selection Text: PC_DOWN = Process Chains
Selection Text: PC_UP = Process Chains
Selection Text: UP = Start up processes
Selection Text: WAIT = Maximum Wait Time (Minutes)
Title: Shut down and start up BW processes
Text Symbol: 001 = & objects still active
Text Symbol: 002 = & active process chains
Text Symbol: 003 = & active InfoPackages
Text Symbol: 004 = & start processes suspended
Text Symbol: 005 = & RDA InfoPackages are stopped
Text Symbol: 006 = & start processes released again
Text Symbol: 007 = & daemons scheduled
Text Symbol: 008 = There are still & open requests in the RDA context (status is yellow)
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RSPC_SHUTDOWN CALL FUNCTION 'RSPC_SHUTDOWN' IMPORTING e_suspended = l_count EXCEPTIONS failed = 1 OTHERS = 2.
RS_EXCEPTION_TO_SYMSG CALL FUNCTION 'RS_EXCEPTION_TO_SYMSG' EXPORTING i_r_exception = l_rx_failed i_deepest = 'X'.
RSPC_GET_ACTIVE CALL FUNCTION 'RSPC_GET_ACTIVE' IMPORTING e_count = l_count_pc.
RS_EXCEPTION_TO_SYMSG CALL FUNCTION 'RS_EXCEPTION_TO_SYMSG' EXPORTING i_r_exception = l_rx_failed i_deepest = 'X'.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = l_text.
RSSM_SUBSTRACT_TIMESTAMPS CALL FUNCTION 'RSSM_SUBSTRACT_TIMESTAMPS' EXPORTING timestamp1 = l_start timestamp2 = l_now IMPORTING secs = l_waited.
RSSM_SLEEP_DEBUG CALL FUNCTION 'RSSM_SLEEP_DEBUG' EXPORTING i_seconds = 5 i_always = 'X'.
RSPC_STARTUP CALL FUNCTION 'RSPC_STARTUP' IMPORTING e_released = l_count.
RPY_FUNCTIONMODULE_READ * CALL FUNCTION 'RPY_FUNCTIONMODULE_READ' * EXPORTING * functionname = 'RSPC_GET_ACTIVE' * TABLES * import_parameter = import_parameter * changing_parameter = changing_parameter * export_parameter = export_parameter * tables_parameter = tables_parameter * exception_list = exception_list * documentation = documentation * source = source * EXCEPTIONS * error_message = 1 * function_not_found = 2 * invalid_name = 3 * OTHERS = 4.
SEO_COMPONENT_SIGNATURE_GET * CALL FUNCTION 'SEO_COMPONENT_SIGNATURE_GET' * EXPORTING * cpdkey = cpdkey * version = seoc_version_active * IMPORTING * parameters = parameters * EXCEPTIONS * not_existing = 1 * is_type = 2 * is_attribute = 3 * OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.