JBD_CHGPTR_DELETE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for ..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 JBD_CHGPTR_DELETE into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
JBDCD - Delete Change Pointers
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: DAT_TO = Created Before
Selection Text: DAYS_OLD = Older than No. of Days
Title: Delete Processed Change Indicators
Text Symbol: DAY = By Age
Text Symbol: DEL = Change pointers were deleted. Continue?
Text Symbol: DSP = By Date
Text Symbol: TIT = Delete Change Pointers
Text Symbol: WRK = Delete Change Pointers
INCLUDE JBD_CHGPTR_CONSTANTS.
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING TITLEBAR = text-tit * DIAGNOSE_OBJECT = ' ' TEXT_QUESTION = text-del * TEXT_BUTTON_1 = 'Ja'(001) * ICON_BUTTON_1 = ' ' * TEXT_BUTTON_2 = 'Nein'(002) * ICON_BUTTON_2 = ' ' DEFAULT_BUTTON = '2' DISPLAY_CANCEL_BUTTON = SPACE * USERDEFINED_F1_HELP = ' ' * START_COLUMN = 25 * START_ROW = 6 * POPUP_TYPE = IMPORTING ANSWER = answer * TABLES * PARAMETER = EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.