RJBRSTDD 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 RJBRSTDD into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
JBAX - Delete Saved Dataset
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: DELSTATE = Historical Dataset
Title: Delete Saved Datasets
Text Symbol: 001 = Delete Dataset
Text Symbol: 002 = The dataset with the following ID no. was deleted
Text Symbol: 003 = The dataset with the following ID no. could not be deleted
Text Symbol: 004 = The saved dataset will be
Text Symbol: 005 = irreversibly deleted
Text Symbol: ERL = Error occurred while deleting a dataset
INCLUDE RJBRCONS.
No SAP DATABASE tables are accessed within this REPORT code!
EH_INIT_ERROR_ITAB CALL FUNCTION 'EH_INIT_ERROR_ITAB' EXCEPTIONS OTHERS = 1.
RM_DELETE_HIST_STATE_OF_DATA CALL FUNCTION 'RM_DELETE_HIST_STATE_OF_DATA' EXPORTING DEL_STATE = DELSTATE TABLES ERROR_ITAB = ERROR_ITAB EXCEPTIONS NO_INPUT = 1 OTHERS = 2.
EH_APPEND_TO_ERROR_ITAB CALL FUNCTION 'EH_APPEND_TO_ERROR_ITAB' EXPORTING LOC_ERROR_TAB = ERROR_ITAB S_PROT = ' ' S_ERR_TAB = 'X' EXCEPTIONS OTHERS = 1.
EH_SHOW_ERROR_ITAB_NEW CALL FUNCTION 'EH_SHOW_ERROR_ITAB_NEW' EXPORTING TITLEBAR = TEXT-ERL * HEADING = i_auswtyp = '2' "VaR EXCEPTIONS OTHERS = 1.
MESSAGES_INITIALIZE * CALL FUNCTION 'MESSAGES_INITIALIZE' ** exporting ** COLLECT_AND_SEND = ' ' ** RESET = 'X' ** LINE_FROM = '000' ** LINE_TO = '999' * EXCEPTIONS * OTHERS = 1.
POPUP_TO_CONFIRM_LOSS_OF_DATA * CALL FUNCTION 'POPUP_TO_CONFIRM_LOSS_OF_DATA' * EXPORTING * TEXTLINE1 = TEXT-004 * TEXTLINE2 = TEXT-005 * TITEL = TEXT-001 ** START_COLUMN = 25 ** START_ROW = 6 * IMPORTING * ANSWER = WRK_ANSWER * EXCEPTIONS * OTHERS = 1.
ISB_RM_DATA_HS_DELETE *CALL FUNCTION 'ISB_RM_DATA_HS_DELETE' * EXPORTING * SRTFD = P_SRTFD * EXCEPTIONS * NO_CLUSTER_DATA_DELETED = 1 * NO_TABLE_DATA_DELETED = 2 * NO_CATALOG_CLUSTER_DATA_DELETE = 3 * OTHERS = 4.
POPUP_TO_INFORM * CALL FUNCTION 'POPUP_TO_INFORM' * EXPORTING * TITEL = TEXT-001 * TXT1 = TEXT-002 * TXT2 = P_SRTFD ** TXT3 = ' ' ** TXT4 = ' ' * EXCEPTIONS * OTHERS = 1.
POPUP_TO_INFORM * CALL FUNCTION 'POPUP_TO_INFORM' * EXPORTING * TITEL = TEXT-001 * TXT1 = TEXT-003 * TXT2 = P_SRTFD ** TXT3 = ' ' ** TXT4 = ' ' * EXCEPTIONS * OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.