RSDL_ADBC_START 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 RSDL_ADBC_START 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: DBTNS = Exit
Selection Text: DBMETA = Metadata Check
Selection Text: DBDATA = Data Transfer Check
Selection Text: DBCONE = Connection Check
Selection Text: DBCALL = Connection Check (All)
Title: DB Connect - Check Program
Text Symbol: 102 = Selection of Database System
Text Symbol: 101 = Choose a Database Table
Text Symbol: 100 = Generated Structure
Text Symbol: 051 = Replicate DB DastaSources in BW?
Text Symbol: 050 = Metadata
Text Symbol: 010 = Available Database Tables -
Text Symbol: 002 = Database Tables Being Read
Text Symbol: 001 = DB Connect Test Program
INCLUDE RSDL_ADBCTOP .
No SAP DATABASE tables are accessed within this REPORT code!
RSDC_SLOGSYS_F4 ** call function 'RSDC_SLOGSYS_F4' ** exporting ** i_title = text-102 ** i_display = rs_c_false ** i_srctype_string = 'G' ** i_without_dialog = rs_c_false ** changing ** c_slogsys = l_rschar10.
SAPGUI_PROGRESS_INDICATOR ** CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' ** EXPORTING ** percentage = 0 ** text = 'Datenbanksysteme werden gelesen ......'(001).
SAPGUI_PROGRESS_INDICATOR **CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' ** EXPORTING ** percentage = 0 ** text = 'Datenbanktabellen werden gelesen ...'(002).
RSDL_DB_GET_ALL_TABLES **CALL FUNCTION 'RSDL_DB_GET_ALL_TABLES' ** EXPORTING ** i_langu = langu ** i_logsys = l_logsys ** IMPORTING ** e_s_dbcon = g_s_dbcon ** TABLES ** e_t_dbtables = l_t_dbobject ** e_t_dd02t = l_t_dd02t ** EXCEPTIONS ** error_occured = 1 ** unknown_logsys = 2 ** no_tables = 3 ** OTHERS = 4.
TH_SERVER_LIST call function 'TH_SERVER_LIST' tables list = l_t_imsxxlist exceptions no_server_list = 1 others = 2.
RSDL_CONNECTION_CHECK call function 'RSDL_CONNECTION_CHECK' destination l_s_imsxxlist-name exporting i_s_dbcon = l_s_dbcon i_s_msxxlist = l_s_imsxxlist importing e_s_balmi = l_s_balmi.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.