SCWN_NOTE_DISPLAY is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for SAP Note Display This program displays SAP Notes in the system...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 SCWN_NOTE_DISPLAY 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: NUMM = SAP Note
Selection Text: VERSNO = Version
Title: Note Assistant: Note Display
INCLUDE: CWBNTCNS,
INCLUDE CWBNTINC.
No SAP DATABASE tables are accessed within this REPORT code!
SCWB_DOWNLOAD_OUTDATED_NOTES CALL FUNCTION 'SCWB_DOWNLOAD_OUTDATED_NOTES' EXPORTING it_notes = gt_notes iv_destination = gc_cwbadm_cs_nt iv_with_progress_indicator = true iv_ask_user_to_confirm_dwnld = true IMPORTING et_note_keys_dwnld = gt_notes_dwnld EXCEPTIONS OTHERS = 3.
SCWB_NOTE_SET_STATUS CALL FUNCTION 'SCWB_NOTE_SET_STATUS' CHANGING cs_note = cs_note.
SCWB_NOTE_READ CALL FUNCTION 'SCWB_NOTE_READ' EXPORTING iv_read_attributes = 'X' iv_read_loghndl = 'X' CHANGING cs_note = cs_note EXCEPTIONS note_not_found = 1 language_not_found = 2 corr_instruction_not_found = 3 unreadable_text_format = 4 OTHERS = 5.
SCWN_LOG_MSG_DISPLAY CALL FUNCTION 'SCWN_LOG_MSG_DISPLAY' CHANGING cs_notes = ls_notes EXCEPTIONS nothing_found = 1 OTHERS = 2.
HELP_OBJECT_SHOW CALL FUNCTION 'HELP_OBJECT_SHOW' EXPORTING dokclass = 'TX' dokname = p_dokname TABLES links = lt_links EXCEPTIONS object_not_found = 1 sapscript_error = 2 OTHERS = 3.
SCWB_NOTE_READ CALL FUNCTION 'SCWB_NOTE_READ' EXPORTING iv_read_attributes = 'X' iv_read_short_text = 'X' iv_read_all_texts = 'X' iv_read_validity = 'X' iv_read_corr_instructions = 'X' iv_read_customer_attributes = 'X' iv_read_customer_logfile = 'X' iv_use_fallback_languages = 'X' iv_read_loghndl = 'X' iv_read_fixes = 'X' CHANGING cs_note = gs_note EXCEPTIONS note_not_found = 1 language_not_found = 2 unreadable_text_format = 3 corr_instruction_not_found = 4 OTHERS = 5.
SCWB_NOTE_DISPLAY CALL FUNCTION 'SCWB_NOTE_DISPLAY' CHANGING cs_note = gs_note.
SCWB_NOTE_PRINT CALL FUNCTION 'SCWB_NOTE_PRINT' CHANGING cs_note = cs_note.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.