SAP Reports / Programs

RSPROCESS SAP ABAP Report - Process Variant Run







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


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 RSPROCESS. "Basic submit
SUBMIT RSPROCESS AND RETURN. "Return to original report after report execution complete
SUBMIT RSPROCESS VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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)


INCLUDES used within this REPORT RSPROCESS

No INCLUDES are used within this REPORT code!


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:

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.



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 RSPROCESS or its description.