RMCSAUSW 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 RMCSAUSW into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
MC16 - LIS: Delete Evaluation Structure
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: UPDWUSED = Refresh where-used list
Selection Text: TESTMODE = Test Mode
Selection Text: EXSAP = Exclude S001-S500
Selection Text: EVALSTRU = Evaluation Structure
Title: LIS: Delete Evaluation Structures and Evaluations
Text Symbol: 127 = could not be deleted completely.
Text Symbol: 126 = have been completely deleted
Text Symbol: 125 = Dependent sets & variables for evaluation str.
Text Symbol: 124 = as well as depend. sets & variables
Text Symbol: 123 = Library
Text Symbol: 122 = Report
Text Symbol: 121 = Report Group
Text Symbol: 113 = Evaluation
Text Symbol: 104 = The following objects could not be deleted:
Text Symbol: 103 = The following objects were deleted:
Text Symbol: 102 = The following objects wld be deleted:
Text Symbol: 101 = Deletion Log
Text Symbol: 028 = Variables
Text Symbol: 027 = Sets
Text Symbol: 026 = Determine variables...
Text Symbol: 025 = Determine sets...
Text Symbol: 024 = Determine sets & variables to be deleted..
Text Symbol: 023 = Libraries
Text Symbol: 022 = Reports
Text Symbol: 021 = Report Groups
Text Symbol: 013 = Evaluations
Text Symbol: 012 = Eval. Structure
Text Symbol: 011 = Det. evaluation structures & evaluations to be deleted...
Text Symbol: 002 = Where-used list is being re-generated...
Text Symbol: 001 = Do you really want to delete?
Text Symbol: 000 = Delete Evaluation Structures and Dependent Objects
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING defaultoption = 'N' textline1 = text-001 titel = text-000 cancel_display = 'X' IMPORTING answer = testmode EXCEPTIONS OTHERS = 1.
G_RP_DELETE_REPORT CALL FUNCTION 'G_RP_DELETE_REPORT' EXPORTING lib = deltab-mclib rname = int_t800-rname EXCEPTIONS report_not_found = 01.
G_SET_LIST_SELECT CALL FUNCTION 'G_SET_LIST_SELECT' EXPORTING setclass = gsetc_fisl_setclass tabname = tabname shortname = '3*' TABLES matching_sets = delset.
G_SET_LIST_SELECT CALL FUNCTION 'G_SET_LIST_SELECT' EXPORTING setclass = gsetc_fisl_setclass tabname = tabname shortname = '2*' TABLES matching_sets = delset2.
G_SET_LIST_SELECT CALL FUNCTION 'G_SET_LIST_SELECT' EXPORTING setclass = gsetc_report_setclass tabname = tabname lib = '*' shortname = '2*' TABLES matching_sets = delset2.
G_SET_LIST_SELECT CALL FUNCTION 'G_SET_LIST_SELECT' EXPORTING setclass = gsetc_report_setclass tabname = tabname lib = '*' shortname = '3*' TABLES matching_sets = delset2.
G_SET_LIST_SELECT CALL FUNCTION 'G_SET_LIST_SELECT' EXPORTING setclass = gsetc_report_setclass lib = deltab-mclib rname = '*' TABLES matching_sets = delset2.
G_SET_TREE_DELETE CALL FUNCTION 'G_SET_TREE_DELETE' EXPORTING set = delset-setname no_authority_check = 'X' EXCEPTIONS set_is_used = 1 set_is_blocked = 2 OTHERS = 0.
G_VARIABLE_DELETE CALL FUNCTION 'G_VARIABLE_DELETE' EXPORTING variable = delvar-var force_deletion = 'X' EXCEPTIONS variable_used = 1.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = pc text = progress_message EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.