RSDDTPS_MPRO_EXCLUDE 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 RSDDTPS_MPRO_EXCLUDE 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: I_MPRO = MultiProvider
Title: Program RSDDTPS_MPRO_EXCLUDE
Text Symbol: 001 = Exclude InfoObjects
Text Symbol: 002 = Select a MultiProvider
Text Symbol: 003 = MultiProvider
Text Symbol: 004 = Does not exist or is inconsistent
Text Symbol: 005 = Select InfoObjects to exclude
Text Symbol: 006 = You have modified the list of InfoObjects to exclude
Text Symbol: 007 = Changing the InfoObjects to be excluded will delete the BWA index. Continue?
Text Symbol: 008 = Yes
Text Symbol: 009 = Cancel
Text Symbol: 010 = Changes saved
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RSD_CUBE_F4 CALL FUNCTION 'RSD_CUBE_F4' EXPORTING i_objvers = rs_c_objvers-active i_cubetype = rsd_c_cubetype-multi_ic CHANGING c_infocube = i_mpro EXCEPTIONS OTHERS = 2.
RSD_COB_PRO_ALL_GET CALL FUNCTION 'RSD_COB_PRO_ALL_GET' EXPORTING i_infocube = i_mpro i_objvers = rs_c_objvers-active IMPORTING e_t_cob_pro = l_t_cob_pro EXCEPTIONS infocube_not_found = 1 error_reading_infocatalog = 2 illegal_input = 3.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING retfield = 'IOBJNM' window_title = 'Markieren Sie InfoObjekte, die ausgschlossen werden sollen'(005) value_org = 'S' multiple_choice = 'X' mark_tab = l_t_mark_tab IMPORTING user_reset = l_user_reset TABLES value_tab = l_t_output return_tab = l_t_retval EXCEPTIONS OTHERS = 3.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = 'Sie haben die Liste auszuschließender InfoObjekte geändert'(006) text_question = 'Eine Änderung der auszuschließenden InfoObjekte führt zum Löschen des BIA Index. Fortfahren?'(007)
RSDDTPS_DELETE_SNAPSHOT CALL FUNCTION 'RSDDTPS_DELETE_SNAPSHOT' EXPORTING i_infoprov = i_mpro.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.