RMCSMCSI 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 RMCSMCSI into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
OMO, - Std Analyses: Delete Sel. Version
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: S_SELVS = Selection version
Selection Text: S_MCINF = Info structure
Selection Text: S_MCAPP = D Application
Selection Text: S_DATE = Storage date
Title: LIS Standard Analyses: Delete Selection Versions
Text Symbol: 001 = Do you want to delete ;
Text Symbol: 002 = the version? ;
Text Symbol: 003 = Delete selection version
Text Symbol: 004 = Do you want to delete ;
Text Symbol: 005 = the selected versions? ;
Text Symbol: 006 = Delete selection versions ;
Text Symbol: 007 = Ap;
Text Symbol: 008 = Anal:
Text Symbol: 009 = Selected by;
Text Symbol: 010 = Vers.;
Text Symbol: 011 = Description ;
Text Symbol: 012 = Selection
Text Symbol: 013 = List
Text Symbol: 014 = Selected on
Text Symbol: 015 = Info str;
Text Symbol: 016 = Variant
Text Symbol: F01 = Selection criteria
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM_WITH_VALUE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_VALUE' EXPORTING TEXT_BEFORE = AL_HLP_TEXT1 TEXT_AFTER = AL_HLP_TEXT2 TITEL = AL_TITEL DEFAULTOPTION = 'N' OBJECTVALUE = AL_OBJECTVALUE IMPORTING ANSWER = AL_POPUP_ANSWER.
RS_VARIANT_DELETE CALL FUNCTION 'RS_VARIANT_DELETE' EXPORTING REPORT = VD_MCRSV-REPID VARIANT = VD_MCRSV-SELSET FLAG_CONFIRMSCREEN = 'X' FLAG_DELALLCLIENT = 'X' EXCEPTIONS NOT_AUTHORIZED = 01 NOT_EXECUTED = 02 NO_REPORT = 03 REPORT_NOT_EXISTENT = 04 REPORT_NOT_SUPPLIED = 05 VARIANT_LOCKED = 06 VARIANT_NOT_EXISTENT = 07 VARIANT_PROTECTED = 08.
MCS_ANALYSE_CALL CALL FUNCTION 'MCS_ANALYSE_CALL' EXPORTING I_MCINF = MCRSV_TAB_DELETE-MCINF I_FLG_NO_SUBMIT = TRUE I_FLG_ANL_DEFAULT = TRUE IMPORTING E_REPORTNAME = VL_REPID EXCEPTIONS EVALUATIVE_INFO_STRUCTURE = 1 INFO_STRUCTURE_NOT_GENERATED = 2 NO_ANALYSIS_SELECTED = 3 INFO_STRUCTURE_DOES_NOT_EXIST = 4 OTHERS = 5.
MC_SELVS_DELETE CALL FUNCTION 'MC_SELVS_DELETE' EXPORTING I_SELECTION_VERSION = MCRSV_TAB_DELETE-SELVS * I_MCINF = I_WITH_CONFIRM = SPACE I_NO_DEL_VARIANT = 'X' EXCEPTIONS SELVS_NOT_FOUND = 1 CANCELED = 2 NO_AUTHORITY = 3 OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.