RSDBSPDS 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 RSDBSPDS 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: RSDBRUNT help: Dynamic Seelctions
Text Symbol: 270 = Dynamic selections
Text Symbol: 271 = active
INCLUDE RSDBCOM4.
INCLUDE RSDBCSTY.
INCLUDE RSDBC1XX.
No SAP DATABASE tables are accessed within this REPORT code!
RS_DS_INT_BREPI CALL FUNCTION 'RS_DS_INT_BREPI' EXPORTING P_TEXPR = DYN_SEL-TEXPR P_EDIT = L_EDIT TABLES P_FIELDS = DYNS_FIELDS P_VALUES = P_VALUES P_DESC = P_DESC P_NODES_TO_STRUCT = L_NODES EXCEPTIONS others = 0.
FREE_SELECTIONS_DIALOG CALL FUNCTION 'FREE_SELECTIONS_DIALOG' "#EC * EXPORTING SELECTION_ID = DYNS-SELID TITLE = SY-TITLE AS_WINDOW = l_window * FRAME_TEXT = 'Test !!!!!!!!!!!!!' * STATUS = 1 NO_INTERVALS = 'X' as_subscreen = l_sub IMPORTING WHERE_CLAUSES = DYN_SEL-CLAUSES EXPRESSIONS = DYN_SEL-TEXPR FIELD_RANGES = DYN_SEL-TRANGE NUMBER_OF_ACTIVE_FIELDS = DYNS-ACTIVE_SELECTIONS TABLES FIELDS_TAB = DYNS_FIELDS EXCEPTIONS INTERNAL_ERROR = 10 NO_ACTION = 02 SELID_NOT_FOUND = 10 * ERROR_MESSAGE = 10 OTHERS = 10.
RS_DS_INT_INIT_LDB CALL FUNCTION 'RS_DS_INT_INIT_LDB' "#EC * EXPORTING P_TEXPR = P_TEXPR P_SUBMODE = SCREEN_PROGS-SUBMODE IMPORTING P_TWHERE = DYN_SEL-CLAUSES P_SELID = DYNS-SELID P_TEXPR = P_TEXPR P_ACTNUM = P_SELACTIVE P_TRANGE = DYN_SEL-TRANGE TABLES P_NODES = P_NODES P_FIELDS = P_FIELDS P_VARIDYN = P_VARIDYN EXCEPTIONS TABLE_NOT_FOUND = 3 NO_TABLES = 4 OTHERS = 5.
RS_DS_INT_INIT_LDB CALL FUNCTION 'RS_DS_INT_INIT_LDB' "#EC * EXPORTING P_TEXPR = P_TEXPR P_SUBMODE = SCREEN_PROGS-SUBMODE p_ldbpg = screen_progs-ldbpg IMPORTING P_TWHERE = DYN_SEL-CLAUSES P_SELID = DYNS-SELID P_TEXPR = P_TEXPR P_ACTNUM = P_SELACTIVE P_TRANGE = DYN_SEL-TRANGE TABLES P_NODES = P_NODES P_FIELDS = P_FIELDS P_VARIDYN = P_VARIDYN EXCEPTIONS TABLE_NOT_FOUND = 3 NO_TABLES = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.