RSPROCESS 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 RSPROCESS 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.
Title: Process Variant Run
Text Symbol: 001 = Process Chain (Internal Use Only)
Text Symbol: 002 = Process Type
Text Symbol: 003 = Process Variant
Text Symbol: 004 = Event ID (Internal Use Only)
Text Symbol: 005 = Event Parameter (Internal Use Only)
Text Symbol: 006 = Waiting Time Before Start of Program (Optional)
Text Symbol: 007 = Log ID (Internal Use Only)
Text Symbol: 008 = Process Instance (Only for Internal Use)
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RSBATCH_INFORM_MANAGER CALL FUNCTION 'RSBATCH_INFORM_MANAGER' EXPORTING i_process_type = g_type i_pc_variant = g_variant i_status = '@09@' i_t_info = g_t_btcinfo IMPORTING e_batch_id = g_batchid.
ENQUEUE_ERSPCPROCESS CALL FUNCTION 'ENQUEUE_ERSPCPROCESS' EXPORTING type = type variante = variant _scope = '3' EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
RSSM_SLEEP_DEBUG CALL FUNCTION 'RSSM_SLEEP_DEBUG' EXPORTING i_seconds = 1 i_always = 'X'.
RSPC_PROCESS_GET_INFO CALL FUNCTION 'RSPC_PROCESS_GET_INFO' EXPORTING i_chain = chain i_type = type i_variant = variant i_logid = logid i_eventid = event i_eventparm = eventp i_wait = wait IMPORTING e_eventid = g_eventid e_eventparm = g_eventparm e_jobcount = g_jobcount e_batchdate = g_batchdate e_batchtime = g_batchtime e_object = g_object e_objtype = g_objtype e_t_processlist = g_t_processlist e_logid = g_logid e_t_variables = g_t_variables.
RSBATCH_INFORM_MANAGER CALL FUNCTION 'RSBATCH_INFORM_MANAGER' EXPORTING i_process_type = g_type i_pc_variant = g_variant i_pc_logid = g_logid i_status = '@09@' i_batch_id = g_batchid.
RSBATCH_INFORM_MANAGER CALL FUNCTION 'RSBATCH_INFORM_MANAGER' EXPORTING i_process_type = g_type i_pc_variant = g_variant i_pc_logid = g_logid i_pc_instance = g_instance i_status = '@09@' i_batch_id = g_batchid.
RSPC_PROCESS_FINISH CALL FUNCTION 'RSPC_PROCESS_FINISH' EXPORTING i_logid = g_logid i_chain = g_chain i_type = g_type i_variant = g_variant i_instance = g_instance i_state = g_state i_eventno = g_eventno i_hold = g_hold.
DEQUEUE_ERSPCPROCESS CALL FUNCTION 'DEQUEUE_ERSPCPROCESS' EXPORTING type = g_type variante = g_variant _scope = '3' _synchron = 'X'.
RSBATCH_INFORM_MANAGER CALL FUNCTION 'RSBATCH_INFORM_MANAGER' EXPORTING i_process_type = g_type i_pc_variant = g_variant i_pc_logid = g_logid i_pc_instance = g_instance i_status = g_batchstate i_batch_id = g_batchid.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.