SCWB_NOTE_MONITOR 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 SCWB_NOTE_MONITOR 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.
Title: Report SCWB_NOTE_MONITOR
Text Symbol: 029 = Does not exist
Text Symbol: 028 = TR Status
Text Symbol: 027 = Version
Text Symbol: 026 = Software Component
Text Symbol: 025 = Installation
Text Symbol: 024 = Number
Text Symbol: 023 = ID
Text Symbol: 022 = User
Text Symbol: 021 = Processing Status
Text Symbol: 020 = Time
Text Symbol: 019 = Date
Text Symbol: 018 = Selection Options
Text Symbol: 017 = Filter Option
Text Symbol: 016 = Correction Instructions Log
Text Symbol: 015 = Note Log
Text Symbol: 014 = Processor
Text Symbol: 013 = Locked in Request
Text Symbol: 012 = Processing Status
Text Symbol: 011 = Download
Text Symbol: 010 = Note
Text Symbol: 007 = Monitor
Text Symbol: 005 = Request
Text Symbol: 004 = End (Time)
Text Symbol: 003 = End (Date)
Text Symbol: 002 = Start (Time)
Text Symbol: 001 = Start (Date)
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SELECT_OPTIONS_RESTRICT CALL FUNCTION 'SELECT_OPTIONS_RESTRICT' EXPORTING restriction = ls_restrict EXCEPTIONS OTHERS = 0.
SCWB_NOTE_IMPL_STATUS CALL FUNCTION 'SCWB_NOTE_IMPL_STATUS' EXPORTING iv_update_note = ' ' is_note = ls_note IMPORTING ev_status =
-prstatus EXCEPTIONS OTHERS = 1.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_buffer_active = 'X' i_callback_program = sy-repid it_fieldcat = lt_field_catalog it_sort = lt_sort TABLES t_outtab = lt_outtab EXCEPTIONS program_error = 1 OTHERS = 2.
SCWB_CINST_GET_STATUS CALL FUNCTION 'SCWB_CINST_GET_STATUS' IMPORTING ev_status =
-cistatus CHANGING cs_corr_instruction = ls_corr_instruction EXCEPTIONS OTHERS = 4.
SVRS_SHORT2LONG_NAME CALL FUNCTION 'SVRS_SHORT2LONG_NAME' EXPORTING objtype =
-object objname_short = lv_objname_s IMPORTING objname_long = lv_objname_l.
CLM_CWB_CINST_IMPLEMENTED CALL FUNCTION 'CLM_CWB_CINST_IMPLEMENTED' EXPORTING pgmid =
-pgmid object = -object obj_name = lv_e071_obj_name cinst = ls_corr_instruction-key IMPORTING pre_corr_mode = -pre_corr to_be_adjusted = -adjust.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_buffer_active = 'X' i_callback_program = sy-repid it_fieldcat = lt_field_catalog it_sort = lt_sort TABLES t_outtab = lt_outtab_ci EXCEPTIONS program_error = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.