RSWF_CRL_MAINTAIN 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_CRL_MAINTAIN 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_REPAIR = Re-Calculate Correlations
Selection Text: P_DISPL = Display List
Selection Text: P_COCHCK = Consistency check
Selection Text: PT_CRLNA = Correlation Name
Selection Text: PT_CMPTY = Component (Object Type)
Title: Check/Display Correlation Instances
Text Symbol: T14 = Work Item Active
Text Symbol: T12 = Event Linkage
Text Symbol: T10 = Creation Time
Text Symbol: T09 = Time
Text Symbol: T08 = Creation Date
Text Symbol: T07 = Date
Text Symbol: T06 = Expected Event
Text Symbol: T05 = Expected Component
Text Symbol: T04 = Expected Category
Text Symbol: T03 = Check
Text Symbol: T02 = Component
Text Symbol: T01 = Category
Text Symbol: 009 = Created Until
Text Symbol: 008 = Time
Text Symbol: 007 = Created Since
Text Symbol: 004 = Creation Date
Text Symbol: 003 = Options for Formatting the List
Text Symbol: 001 = Selection Criteria
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING * I_INTERFACE_CHECK = ' ' * I_BYPASSING_BUFFER = ' ' * I_BUFFER_ACTIVE = ' ' i_callback_program = l_repid i_callback_pf_status_set = 'ON_PF_STATUS_SET' i_callback_user_command = 'ON_USER_COMMAND' * I_CALLBACK_TOP_OF_PAGE = ' ' * I_CALLBACK_HTML_TOP_OF_PAGE = ' ' * I_CALLBACK_HTML_END_OF_LIST = ' ' * I_STRUCTURE_NAME = * I_BACKGROUND_ID = ' ' * I_GRID_TITLE = * I_GRID_SETTINGS = is_layout = l_layout it_fieldcat = lt_fieldcat * IT_EXCLUDING = * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = * I_DEFAULT = 'X' * I_SAVE = ' ' * IS_VARIANT = * IT_EVENTS = * IT_EVENT_EXIT = * IS_PRINT = * IS_REPREP_ID = * I_SCREEN_START_COLUMN = 0 * I_SCREEN_START_LINE = 0 * I_SCREEN_END_COLUMN = 0 * I_SCREEN_END_LINE = 0 * I_HTML_HEIGHT_TOP = 0 * I_HTML_HEIGHT_END = 0 * IT_ALV_GRAPHICS = * IT_HYPERLINK = * IT_ADD_FIELDCAT = * IT_EXCEPT_QINFO = * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = TABLES t_outtab = gt_outtab EXCEPTIONS * PROGRAM_ERROR = 1 OTHERS = 2 .
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING * I_PROGRAM_NAME = * I_INTERNAL_TABNAME = i_structure_name = 'SWFRCRLINST' i_client_never_display = 'X' * I_INCLNAME = * I_BYPASSING_BUFFER = * I_BUFFER_ACTIVE = CHANGING ct_fieldcat = pt_fieldcat EXCEPTIONS * INCONSISTENT_INTERFACE = 1 * PROGRAM_ERROR = 2 OTHERS = 3 .
SWL_WI_DISPLAY CALL FUNCTION 'SWL_WI_DISPLAY' EXPORTING wi_id = l_wi_id * DISP_WITH_ORG_RESTRICTION = ' ' * DISP_FLOW_HEADER = ' ' * EXTENDED_DISPLAY = 'X' * MULTI_MODE = ' ' * SHOW_STEPLOG = ' ' * IMPORTING * WORKITEM = * WORKITEM_MODIFIED = * MODIFIED_WORKITEM = * NEXT_FUNCTION = EXCEPTIONS read_failed = 1 OTHERS = 2 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.