CNV_MBT_NOTES_FORM is a standard ABAP INCLUDE 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 CNV_MBT_NOTES_FORM 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: Include CNV_MBT_NOTES_FORM
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CNV_MBT_NOTE_GET_NOTE CALL FUNCTION 'CNV_MBT_NOTE_GET_NOTE' EXPORTING ip_project = pp_proj ip_subproject = pp_subpro ip_packid = pp_packid IMPORTING ex_locked = pd_locked TABLES t_dokil = lt_dokil t_dokhl = lt_dokhl t_doktl = lt_doktl EXCEPTIONS note_not_exist = 1 err_read_doc_header = 2 err_read_text_lines = 3 OTHERS = 4.
CNV_MBT_NOTE_WRITE_NOTE CALL FUNCTION 'CNV_MBT_NOTE_WRITE_NOTE' EXPORTING ip_project = p_proj ip_subproject = p_subpro ip_packid = p_packid TABLES t_text_before = gt_text_init t_text_changed = gt_text_save EXCEPTIONS err_create_dokil = 1 err_create_dokhl = 2 err_create_doktl = 3 err_create_notes = 4 err_change_dokil = 5 err_read_dokhl = 6 err_change_dokhl = 7 err_delete_doktl = 8 OTHERS = 9.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = text-012 text_question = text-013 text_button_1 = 'Ja'(010) text_button_2 = 'Nein'(011) display_cancel_button = ' ' IMPORTING answer = ld_answer. "1=ja or 2=no
ENQUEUE_E_TABLE CALL FUNCTION 'ENQUEUE_E_TABLE' EXPORTING mode_rstable = 'E' tabname = p_tabname varkey = p_varkey EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
DEQUEUE_E_TABLE CALL FUNCTION 'DEQUEUE_E_TABLE' EXPORTING mode_rstable = 'E' tabname = p_tabname varkey = p_varkey.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.