SAP Reports / Programs | Basis Components | Upgrade - General | SAP Note Assistant(BC-UPG-NA) SAP BC

SCWN_NOTE_DISPLAY SAP ABAP Report - Note Assistant: Note Display







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT SCWN_NOTE_DISPLAY. "Basic submit
SUBMIT SCWN_NOTE_DISPLAY AND RETURN. "Return to original report after report execution complete
SUBMIT SCWN_NOTE_DISPLAY VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: NUMM = SAP Note
Selection Text: VERSNO = Version
Title: Note Assistant: Note Display


INCLUDES used within this REPORT SCWN_NOTE_DISPLAY

INCLUDE: CWBNTCNS,
INCLUDE CWBNTINC.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name SCWN_NOTE_DISPLAY or its description.