RDDBASTB 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 RDDBASTB 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: Determine Basis Tables with Data and Environment
INCLUDE RDDRSCST.
No SAP DATABASE tables are accessed within this REPORT code!
SUBST_GET_SAPRELEASE CALL FUNCTION 'SUBST_GET_SAPRELEASE' IMPORTING EV_SAPRELEASE = GV_SAPRELEASE EXCEPTIONS NO_SVERS_ENTRY = 01.
SUBST_GET_BASIS_DATA_TABLES CALL FUNCTION 'SUBST_GET_BASIS_DATA_TABLES' TABLES TT_TABLES = T_TAB.
DD_TBFD_GET CALL FUNCTION 'DD_TBFD_GET' EXPORTING GET_STATE = 'A' TABL_NAME = T_TAB-TABNAME TABLES DD03P_TAB_A = DD03P_TAB DD03P_TAB_N = L_03P_N.
EM_CREATE_COMM call function 'EM_CREATE_COMM' exporting ic_trfunction = 'F' ic_trstatus = 'D' ic_tarsystem = 'SAP' ic_as4text = 'basis data tables' ic_overwrite = 'X' ic_sel_e071 = 'X' ic_sel_e071k = 'X' tables tt_e071 = E071_TAB tt_e071k = L_E071K CHANGING IC_TRKORR = GC_DDBASETAB exceptions order_exists = 1 create_failed = 2 others = 3.
SUBST_INIT_DEFAULT_PROTOCOL CALL FUNCTION 'SUBST_INIT_DEFAULT_PROTOCOL' EXPORTING IV_MSAG = GC_MSAG IV_ACTTYPE = GC_PROTO_PUT IV_FNAME = PC_PROTO_NAME IV_SUBDIR = GC_DIR_LOG IV_REPID = GC_REPID IMPORTING EV_FNAME = LV_PROTOCOL EXCEPTIONS SAPRELEASE_NOT_FOUND = 01.
SUBST_WRITE_DEFAULT_PROTOCOL CALL FUNCTION 'SUBST_WRITE_DEFAULT_PROTOCOL' EXPORTING IV_SUPPRESS_FOOTER = ' '.
SUBST_GET_REPORT_PARM CALL FUNCTION 'SUBST_GET_REPORT_PARM' EXPORTING IV_PARMNAME = LV_NAME IMPORTING EV_PARAMETER = LV_VALUE.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RDDBASTB - Determine Basis Tables with Data and Environment RDDBASTB - Determine Basis Tables with Data and Environment RDDAPPSE - Check for connected Application Servers RDDAPPSE - Check for connected Application Servers RDDAGG00 - documentation and ABAP source code RDDACLOG - Action Log for Requests and Tasks