RBDCPMONI 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 RBDCPMONI 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: P2_READY = D .
Selection Text: P1_OLD = D .
Selection Text: P2_TIME = Created At
Selection Text: P2_DATE = Created On
Selection Text: MESTYP = Message Type
Title: Change Pointer Monitor
Text Symbol: 420 = Entries:
Text Symbol: 410 = Processed:
Text Symbol: 400 = Active:
Text Symbol: 325 = Status
Text Symbol: 310 = Buffer
Text Symbol: 305 = Change Pointers
Text Symbol: 301 = Message Type
Text Symbol: 220 = Change Pointers in Old Buffer
Text Symbol: 215 = Change pointers were not migrated
Text Symbol: 210 = Change pointers are active
Text Symbol: 205 = Change pointers are not active
Text Symbol: 202 = Scan Tables
Text Symbol: 015 = Number of Processed and Active Change Pointers
Text Symbol: 014 = / Status Recs
Text Symbol: 010 = Number of Processed Change Pointers
Text Symbol: 00I = Data is being selected
Text Symbol: 000 = Number of Active Change Pointers
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'icon_yellow_light' info = mess_activ IMPORTING result = cp_not_activ EXCEPTIONS OTHERS = 1.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'icon_green_light' info = mess_activ IMPORTING result = cp_activ EXCEPTIONS OTHERS = 1.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'icon_red_light' info = mess_activ IMPORTING result = cp_not_migrated EXCEPTIONS OTHERS = 1.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'icon_failure' info = mess_activ IMPORTING result = cp_still_old_tables EXCEPTIONS OTHERS = 1.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING text = gv_output_text.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = 0 text = gv_output_text.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = sy-repid i_callback_pf_status_set = g_status_set i_grid_title = header it_fieldcat = gt_fieldcat[] it_excluding = gs_excluding[] is_layout = gsi_layout is_print = gs_print TABLES t_outtab = outtab EXCEPTIONS OTHERS = 0.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING percentage = percent text = output_text.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.