RSWF_TST_BPML_INTERFACE 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 RSWF_TST_BPML_INTERFACE 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: PP_ACTIV = Activate
Selection Text: PP_CHECK = Check
Title: Program to Automatically Test WebFlow BPML Interface
Text Symbol: 001 = Workflow Definition Following Creation:
Text Symbol: 002 = Note: BPML files are created from the specified workflow definitions
Text Symbol: 003 = New workflows are then created by using these files (in $tmp)
Text Symbol: 004 = --- Test may take a few minutes ---
Text Symbol: 010 = Source WF
Text Symbol: 020 = Description
Text Symbol: 030 = Target Workflow
Text Symbol: 040 = Code
Text Symbol: 050 = Messages
Text Symbol: 090 = Select to Display BPML Files
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_VARIANT_DEFAULT_GET CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET' EXPORTING I_SAVE = G_SAVE CHANGING CS_VARIANT = G_VARIANT EXCEPTIONS others = 0.
REUSE_ALV_HIERSEQ_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = G_REPID * I_CALLBACK_PF_STATUS_SET = ' ' I_CALLBACK_USER_COMMAND = 'USER_COMMAND' IS_LAYOUT = GS_LAYOUT IT_FIELDCAT = GT_FIELDCAT[] * i_default = g_default I_SAVE = G_SAVE IS_VARIANT = G_VARIANT IT_EVENTS = GT_EVENTS[] I_TABNAME_HEADER = C_H_TABNAME I_TABNAME_ITEM = C_I_TABNAME IS_KEYINFO = GS_KEYINFO TABLES T_OUTTAB_HEADER = GT_CHECKS T_OUTTAB_ITEM = GT_MSG.
REUSE_ALV_EVENTS_GET CALL FUNCTION 'REUSE_ALV_EVENTS_GET' EXPORTING I_LIST_TYPE = 0 IMPORTING ET_EVENTS = P_GT_EVENTS.
SWD_GET_TASK_ATTRIBUTES CALL FUNCTION 'SWD_GET_TASK_ATTRIBUTES' EXPORTING im_task =
-WF_SOURCE IMPORTING EX_STEXT = l_stext EX_SHORT = l_short EXCEPTIONS OTHERS = 0.
SWF_XML_DISPLAY CALL FUNCTION 'SWF_XML_DISPLAY' EXPORTING im_stream =
-bpml.
SWD_GET_LATEST_WF_VERSION CALL FUNCTION 'SWD_GET_LATEST_WF_VERSION' EXPORTING act_task = l_task IMPORTING ACT_WFDKEY = l_wfdkey EXCEPTIONS OTHERS = 0.
SWF_WF_BUILDER_START CALL FUNCTION 'SWF_WF_BUILDER_START' EXPORTING im_task = l_task im_wfdkey = l_wfdkey im_display = space im_amodal = 'X'.
SWR_GET_PROCESS_DEF CALL FUNCTION 'SWR_GET_PROCESS_DEF' EXPORTING process_id = p_check-wf_source FORMAT = format OPTIONS = l_options IMPORTING XML_STREAM = p_check-bpml RETCODE = p_check-retcode tables message_lines = pt_messages message_struct = lt_msg.
SWR_CREATE_PROCESS_DEF CALL FUNCTION 'SWR_CREATE_PROCESS_DEF' EXPORTING xml_stream = p_check-bpml FORMAT = format IMPORTING PROCESS_ID = p_check-wf_target-wfd_id VERSION = p_check-wf_target-Version RETCODE = p_check-retcode tables message_lines = pt_messages message_struct = lt_msg.
SWR_CHECK_PROCESS_DEF CALL FUNCTION 'SWR_CHECK_PROCESS_DEF' EXPORTING process_id = p_check-wf_target-wfd_id VERSION = p_check-wf_target-Version IMPORTING RETCODE = p_check-retcode tables message_lines = pt_messages message_struct = lt_msg.
SWR_ACTIVATE_PROCESS_DEF CALL FUNCTION 'SWR_ACTIVATE_PROCESS_DEF' EXPORTING process_id = p_check-wf_target-wfd_id VERSION = p_check-wf_target-Version IMPORTING RETCODE = p_check-retcode tables message_lines = pt_messages message_struct = lt_msg.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.