RSWF_ALM_CREATE_MONITOR 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_ALM_CREATE_MONITOR 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: Create CCMS Monitor for SAP Business Workflow
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SALI_INTERNAL_SETTINGS CALL FUNCTION 'SALI_INTERNAL_SETTINGS' EXPORTING allow_systemwide = 'X' EXCEPTIONS setting_not_allowed = 1 OTHERS = 2.
SALI_MT_GET_TID_BY_NAME * CALL FUNCTION 'SALI_MT_GET_TID_BY_NAME' * EXPORTING * mt_full_name = c_root_name * IMPORTING * tid = l_root_id ** DETAILED_ERROR_TEXT = * EXCEPTIONS * unable_to_expand_name = 1 * name_not_found = 2 * communication_failure = 3 * other_problem = 4 * internal_error = 5 * wrong_segment = 6 * internal_failure_sals = 7 * OTHERS = 8.
SALI_MC_CREATE_ATTACH CALL FUNCTION 'SALI_MC_CREATE_ATTACH' EXPORTING mcname = c_root_name * NUMRANGE = AL_NR_AUTO owner = 'SAP_WORKFLOW' * SEGMENT = mt_class = 'SAP_WORKFLOW' * SYSID = SY-SYSID * client = mandts systemwide_context = 'X' * VISIBLE_ON_USERLEV = AL_VISIBLE_OPERATOR * desc_text_msgid = 'BBP_ADMIN' * desc_text_msgno = 3 * TOOL_COLLECTING = * TOOL_ONALERT = * TOOL_ANALYZE = IMPORTING root_tid = l_root_id EXCEPTIONS unable_to_expand_name = 1 segment_not_found = 2 communication_failure = 3 other_problem = 4 wrong_segment = 5 no_more_space = 6 OTHERS = 99.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RSWF_ALM_CREATE_MONITOR - Create CCMS Monitor for SAP Business Workflow RSWF_ALM_CREATE_MONITOR - Create CCMS Monitor for SAP Business Workflow RSWF_ALM_CREATE_ITEMS - Test Program for Creating CCMS Entries RSWF_ALM_CREATE_ITEMS - Test Program for Creating CCMS Entries RSWF_ADM_SWWWIDH - Restart of Suspended Entries (Deadline) RSWF_ADM_SWWWIDH - Restart of Suspended Entries (Deadline)