PARCHI01 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 PARCHI01 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: Archiving Includes
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ORDER_CHANGE_FOR_ACTIVITY CALL FUNCTION 'ORDER_CHANGE_FOR_ACTIVITY' EXPORTING flg_lkz = iv_loek flg_lvm = iv_loev selid = selid testrun = iv_testrun intervall = interval init_tables = yx maxnumber = maxnum export_msg_to_memory = space i_flg_summary_msg = iv_summary_msg TABLES caufv_tab = caufv_tab table_of_messages = mess_tab EXCEPTIONS nothing_to_do = 01 wrong_selid = 02.
ARCHIVE_PROTOCOL_INIT CALL FUNCTION 'ARCHIVE_PROTOCOL_INIT' EXPORTING i_detailprotocol = p_prot i_protocol_output = p_prot_o.
ARCHIVE_PROTOCOL_COLLECT_APPL CALL FUNCTION 'ARCHIVE_PROTOCOL_COLLECT_APPL' EXPORTING i_object = aufnr_text i_msgtype = 1 i_msgid = mess_tab-arbgb+0(20) i_msgno = ld_msgno i_msgv1 = mess_tab-msgv1 i_msgv2 = mess_tab-msgv2 i_msgv3 = mess_tab-msgv3 i_msgv4 = mess_tab-msgv4.
ARCHIVE_PROTOCOL_COLLECT_APPL CALL FUNCTION 'ARCHIVE_PROTOCOL_COLLECT_APPL' EXPORTING i_object = aufnr_text i_msgtype = 2 i_msgid = mess_tab-arbgb+0(20) i_msgno = ld_msgno i_msgv1 = mess_tab-msgv1 i_msgv2 = mess_tab-msgv2 i_msgv3 = mess_tab-msgv3 i_msgv4 = mess_tab-msgv4.
ARCHIVE_PROTOCOL_COLLECT_APPL CALL FUNCTION 'ARCHIVE_PROTOCOL_COLLECT_APPL' EXPORTING i_object = aufnr_text i_msgtype = 3 i_msgid = mess_tab-arbgb+0(20) i_msgno = ld_msgno i_msgv1 = mess_tab-msgv1 i_msgv2 = mess_tab-msgv2 i_msgv3 = mess_tab-msgv3 i_msgv4 = mess_tab-msgv4.
ARCHIVE_PROTOCOL_WRITE_APPL CALL FUNCTION 'ARCHIVE_PROTOCOL_WRITE_APPL'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.