RBDTBDA1 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Activate change pointers generally (check box and save) Authorizationg EDI0 (table group) is required...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 RBDTBDA1 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
BD61 - Activate Change Pointers - Generally
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: Activate Change Pointers
Text Symbol: 000 = Table group authorization EDI0 missing
Text Symbol: 001 = Change pointers are active
Text Symbol: 002 = Change pointers are inactive
Text Symbol: 003 = Data has been changed.
Text Symbol: 004 = Save changes first?
Text Symbol: 005 = Cancel without saving?
Text Symbol: 006 = Data has been changed. Do you want to save the changes first?
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING text_question = text-006 * TEXT_BUTTON_1 = 'Ja'(001) * TEXT_BUTTON_2 = 'Nein'(002) DEFAULT_BUTTON = '1' DISPLAY_CANCEL_BUTTON = 'X' IMPORTING ANSWER = answer
EXCEPTIONS OTHERS = 0 .
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING text_question = text-006 * TEXT_BUTTON_1 = 'Ja'(001) * TEXT_BUTTON_2 = 'Nein'(002) DEFAULT_BUTTON = '1' DISPLAY_CANCEL_BUTTON = 'X' IMPORTING ANSWER = answer
EXCEPTIONS OTHERS = 0 .
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING * TITLEBAR = ' ' * DIAGNOSE_OBJECT = ' ' text_question = 'Bearbeitung ohne Sichern abbrechen?'(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 = 10 start_row = 6 * POPUP_TYPE = IMPORTING answer = answer * TABLES * PARAMETER = EXCEPTIONS OTHERS = 0 .
TR_OBJECT_CHECK CALL FUNCTION 'TR_OBJECT_CHECK' EXPORTING wi_ko200 = wi_ko200 IMPORTING we_order = we_order we_task = we_task we_ko200 = we_ko200 TABLES wt_e071k = wt_e071k EXCEPTIONS error_message = 01.
TR_OBJECT_INSERT CALL FUNCTION 'TR_OBJECT_INSERT' EXPORTING wi_order = we_order wi_ko200 = wi_ko200 IMPORTING we_order = we_order we_task = we_task we_ko200 = we_ko200 TABLES wt_e071k = wt_e071k EXCEPTIONS error_message = 01.
VIEW_MARK_WRITE CALL FUNCTION 'VIEW_MARK_WRITE' EXPORTING objname = 'BD61' begin = 'X'.
VIEW_MARK_WRITE CALL FUNCTION 'VIEW_MARK_WRITE' EXPORTING objname = 'BD61' begin = space.
VIEW_MARK_WRITE CALL FUNCTION 'VIEW_MARK_WRITE' EXPORTING objname = 'BD61' begin = 'X'.
VIEW_MARK_WRITE CALL FUNCTION 'VIEW_MARK_WRITE' EXPORTING objname = 'BD61' begin = space.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.