RSTBPDEL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report deletes change documents from the table log database...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RSTBPDEL 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: EDATUM = End Date
Selection Text: TABELLEN = Tables
Title: Table Log Database Management: Delete Logs
Text Symbol: 001 = All logs chosen
Text Symbol: 002 = Delete change logs?
Text Symbol: 003 = Delete all change logs
Text Symbol: 004 = Delete change logs
Text Symbol: 005 = Delete all change logs?
Text Symbol: 006 = Delete change logs?
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
AUTHORITY_CHECK_TCODE CALL FUNCTION 'AUTHORITY_CHECK_TCODE' EXPORTING TCODE = 'SCU3' EXCEPTIONS OK = 1 NOT_OK = 2 OTHERS = 3.
VIEW_AUTHORITY_CHECK CALL FUNCTION 'VIEW_AUTHORITY_CHECK' EXPORTING VIEW_ACTION = 'U' VIEW_NAME = 'DBTABLOG' EXCEPTIONS INVALID_ACTION = 1 NO_AUTHORITY = 2 NO_CLIENTINDEPENDENT_AUTHORITY = 3 TABLE_NOT_FOUND = 4 NO_LINEDEPENDENT_AUTHORITY = 5 OTHERS = 6.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = 'Löschen aller Änderungsprotokolle'(003) * DIAGNOSE_OBJECT = ' ' text_question = 'Alle Änderungsprotokolle löschen?'(005) * TEXT_BUTTON_1 = 'Ja'(001) * ICON_BUTTON_1 = ' ' * TEXT_BUTTON_2 = 'Nein'(002) * ICON_BUTTON_2 = ' ' default_button = '2' display_cancel_button = ' ' * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = IMPORTING answer = antwort * TABLES * PARAMETER = EXCEPTIONS text_not_found = 1 OTHERS = 2.
POPUP_TO_CONFIRM_WITH_VALUE * CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_VALUE' * EXPORTING * defaultoption = 'N' * objectvalue =
* text_before = 'Alle Protokolle wurden ausgewählt.'(001)
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = 'Löschen von Änderungsprotokollen'(004) * DIAGNOSE_OBJECT = ' ' text_question = 'Änderungsprotokolle löschen?'(006) * TEXT_BUTTON_1 = 'Ja'(001) * ICON_BUTTON_1 = ' ' * TEXT_BUTTON_2 = 'Nein'(002) * ICON_BUTTON_2 = ' ' default_button = '2' display_cancel_button = ' ' * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = IMPORTING answer = antwort * TABLES * PARAMETER = EXCEPTIONS text_not_found = 1 OTHERS = 2.
POPUP_TO_CONFIRM_WITH_VALUE * CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_VALUE' * EXPORTING * defaultoption = 'J' * objectvalue =
* text_before = ' ' * text_after = ' Änderungsprotokolle löschen?'(002) * titel = 'Löschen von Änderungsprotokollen'(004) * IMPORTING * answer = antwort * EXCEPTIONS * text_too_long = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.