RSPC_MIGRATE_EVENT_CHAIN 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 RSPC_MIGRATE_EVENT_CHAIN 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: Generating a Process Chain from an Event Chain
Text Symbol: A05 = unsafe. SAP is unable to guarantee the correctness of the
Text Symbol: A06 = generated chain. Manual rework is absolutely necessary.
Text Symbol: A07 = The current events are neither used nor deactivated.
Text Symbol: A08 = In order to completely switch over to process chains, it is
Text Symbol: A09 = necessary to delete the subsequent processing event.
Text Symbol: 001 = Batch Event
Text Symbol: 002 = Event Parameter
Text Symbol: A01 = This program generates a process chain based on an event chain.
Text Symbol: A02 = The event you entered is followed forwards and backwards and
Text Symbol: A03 = generates process variants from the found jobs.
Text Symbol: A04 = Based on the available information, this process is extremely
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RSPC_MIGRATE_EVENT_CHAIN CALL FUNCTION 'RSPC_MIGRATE_EVENT_CHAIN' EXPORTING i_event = event i_eventp = eventp IMPORTING e_chain = l_chain CHANGING c_r_chain = l_r_chain EXCEPTIONS failed = 1 OTHERS = 2.
RSPC_CHAIN_MAINTAIN CALL FUNCTION 'RSPC_CHAIN_MAINTAIN' EXPORTING i_chain = l_chain EXCEPTIONS internal_error = 1 aborted_by_user = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RSPC_MIGRATE_EVENT_CHAIN - Generating a Process Chain from an Event Chain RSPC_MIGRATE_EVENT_CHAIN - Generating a Process Chain from an Event Chain RSPC_METADATA_CLEANUP - Report RSPC_METADATA_CLEANUP RSPC_METADATA_CLEANUP - Report RSPC_METADATA_CLEANUP RSPC_MAINTAIN_TYPE - Process Chain Maintenance Using a Type and Variant RSPC_MAINTAIN_TYPE - Process Chain Maintenance Using a Type and Variant