RSWF_CCMS_MONITOR_TEST 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_CCMS_MONITOR_TEST 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: P_ALERT = Execute Data Provider
Title: Test Program for Passive BPE Data Collector
Text Symbol: 001 = Name of Class
Text Symbol: 002 = Title
Text Symbol: 003 = GUI Stat
Text Symbol: 004 = Docu Object
Text Symbol: 005 = Start Data Collector by Double-Clicking
Text Symbol: 010 = Double-Click to Call CCMS Monitor
Text Symbol: 020 = Passive:
Text Symbol: 021 = Active:
INCLUDE ICONS.
No SAP DATABASE tables are accessed within this REPORT code!
SXMB_GET_XMB_HUB_CLIENT CALL FUNCTION 'SXMB_GET_XMB_HUB_CLIENT' IMPORTING hub_client = g_client.
SEO_CLASS_GET_ALL_SUBS CALL FUNCTION 'SEO_CLASS_GET_ALL_SUBS' EXPORTING CLSKEY = p_clskey IMPORTING INHKEYS = lt_CLSKEYS EXCEPTIONS OTHERS = 2.
SWF_CCMS_DATA_PROVIDER CALL FUNCTION 'SWF_CCMS_DATA_PROVIDER' EXPORTING DIALOG_MODE = '1' TABLES MT_TOOL_INFO = lt_tool_info EXCEPTIONS MT_TOOL_INFO_MISSING = 2 TOOL_INTENTIONALLY_ABORTED = 3 DONT_START_TOOL_AGAIN = 4 OTHERS = 5.
SEO_CLASS_ALL_IMPLEMENTG_GET CALL FUNCTION 'SEO_CLASS_ALL_IMPLEMENTG_GET' EXPORTING CLSKEY = l_clskey IMPORTING SET = lt_set EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.