RADMASDL 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 RADMASDL 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: TIME = Time Measurement
Selection Text: TESTDEL = Test Request (D not relevant)
Selection Text: TABOUT = Detailed Table Output
Selection Text: PROT_DEV = Log Medium (D,T,F)
Selection Text: PROTOCOL = Log (X if yes)
Selection Text: MODUS = Mode (I,A,O)
Selection Text: DEL_STAT = Del. Set (*=all,A=active src)
Selection Text: DEL_OPT = Del. Option(N=no,A=all,P=part)
Selection Text: COMFILE = Request
Selection Text: CHECK = Reference Check
Title: DD: Mass Deleting Program
Text Symbol: 071 = - dep. tab. w/o duplic.:
Text Symbol: 080 = Domain
Text Symbol: 081 = Data Element
Text Symbol: 082 = Table Pool/Cluster
Text Symbol: 083 = Table
Text Symbol: 084 = View
Text Symbol: 085 = Lock Object
Text Symbol: 086 = Index
Text Symbol: 087 = Matchcode Object
Text Symbol: 088 = Matchcode ID
Text Symbol: 089 = Srch Help
Text Symbol: 090 = Table type
Text Symbol: 091 = DB Proced.Proxy
Text Symbol: 092 = Structured Object
Text Symbol: 093 = DDL Source
Text Symbol: 300 = Deleted Dictionary objects with ext. references
Text Symbol: 005 = No Trans. Request Defined
Text Symbol: 010 = not yet supported
Text Symbol: 020 = --- Delete canceled / new dependent objects
Text Symbol: 030 = - Deleted depend. objects :
Text Symbol: 031 = ** No. of domains:
Text Symbol: 032 = ** No. data elem.:
Text Symbol: 033 = ** Number SQL_Tab:
Text Symbol: 034 = ** No. of tables :
Text Symbol: 035 = ** No. of views :
Text Symbol: 036 = ** No. of indexes:
Text Symbol: 037 = ** No. of MC obj.:
INCLUDE RADMASDD.
INCLUDE RADBTOU0.
INCLUDE RADBTOUM.
INCLUDE RADBTSE0.
INCLUDE RADMASD2.
INCLUDE RADBTTM0.
INCLUDE RADBTDL0.
No SAP DATABASE tables are accessed within this REPORT code!
DD_RANGE_SELECT call function 'DD_RANGE_SELECT' exporting pointer = 'NAME' formid = 'GET_NON_DELETED_OBJECTS' repid = 'RADMASDL' par1 = objtyp tables result_tab = resulttab symbol_tab = names exceptions illegal_value = 1 others = 2.
TR_READ_COMM call function 'TR_READ_COMM' exporting wi_trkorr = comfile wi_sel_e071 = 'X' tables wt_e071 = e071_tab exceptions not_exist_e070 = 4 no_authorization = 8.
DD_E071_TO_DD call function 'DD_E071_TO_DD' exporting object = objtyp obj_name = e071_tab-obj_name importing type = deltab-objtyp name = deltab-objname id = deltab-indxname.
TRINT_INSERT_COMM_HEADER call function 'TRINT_INSERT_COMM_HEADER' exporting wi_e070 = e070_wa wi_e07t = e07t_wa wi_sel_e070 = 'X' wi_sel_e07t = 'X' wi_save_user = 'X' importing we_e070 = e070_wa.
TRINT_APPEND_COMM call function 'TRINT_APPEND_COMM' exporting wi_trkorr = commname wi_sel_e071 = 'X' tables wt_e071 = e071_tab wt_e071k = e071k_tab.
VERS_BEFORE_CHANGED *call function 'VERS_BEFORE_CHANGED' * tables e071_tab = e071_tab.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.