REARCH_BCONT_WRITE_ILM_F01 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 REARCH_BCONT_WRITE_ILM_F01 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 REARCH_BCONT_WRITE_ILM_F01
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ARCHIVE_PROTOCOL_INIT CALL FUNCTION 'ARCHIVE_PROTOCOL_INIT' EXPORTING i_detailprotocol = p_prot i_protocol_output = p_prot_o.
ARCHIVE_OPEN_FOR_WRITE CALL FUNCTION 'ARCHIVE_OPEN_FOR_WRITE' EXPORTING call_delete_job_in_test_mode = p_deltst object = co_bcont_arch_obj create_archive_file = p_wriprd comments = p_coment do_not_delete_data = p_snap output_sel_screen_when_dialog = co_true output_sel_screen_when_batch = co_true destroy = p_dest IMPORTING archive_handle = g_archive_handle.
ARCHIVE_WRITE_STATISTICS CALL FUNCTION 'ARCHIVE_WRITE_STATISTICS' EXPORTING archive_handle = g_archive_handle.
ARCHIVE_PROTOCOL_WRITE CALL FUNCTION 'ARCHIVE_PROTOCOL_WRITE'.
ARCHIVE_CLOSE_FILE CALL FUNCTION 'ARCHIVE_CLOSE_FILE' EXPORTING archive_handle = g_archive_handle EXCEPTIONS OTHERS = 1.
PROGRESS_INDICATOR CALL FUNCTION 'PROGRESS_INDICATOR' EXPORTING i_text = text-002 i_processed = li_num_entries_processed IMPORTING e_progress_sent = lc_progress_send.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'. "otherwise messages will not appear in the job-log
PROGRESS_INDICATOR CALL FUNCTION 'PROGRESS_INDICATOR' EXPORTING i_text = text-002 i_processed = li_num_entries_processed i_output_immediately = co_true.
ARCHIVE_NEW_OBJECT CALL FUNCTION 'ARCHIVE_NEW_OBJECT' "New Object register EXPORTING archive_handle = g_archive_handle object_id = lc_archive_index EXCEPTIONS OTHERS = 1.
ARCHIVE_SAVE_OBJECT CALL FUNCTION 'ARCHIVE_SAVE_OBJECT' EXPORTING archive_handle = g_archive_handle EXCEPTIONS file_io_error = 1 internal_error = 2 open_error = 3 termination_requested = 4 wrong_access_to_archive = 5 data_object_not_saved = 6 OTHERS = 7.
ARCHIVE_PUT_RECORD CALL FUNCTION 'ARCHIVE_PUT_RECORD' EXPORTING archive_handle = i_archive_handle record_structure = i_structure_name record = i_input EXCEPTIONS OTHERS = 1.
ARCHIVE_PUT_TABLE CALL FUNCTION 'ARCHIVE_PUT_TABLE' EXPORTING archive_handle = i_archive_handle record_structure = i_structure_name TABLES table = it_input EXCEPTIONS internal_error = 1 wrong_access_to_archive = 2 invalid_record_structure = 3 OTHERS = 4.
ARCHIVE_GET_NEXT_STRUCT_SPECIF CALL FUNCTION 'ARCHIVE_GET_NEXT_STRUCT_SPECIF' EXPORTING archive_handle = x_archive_handle record_structure = x_structure_name IMPORTING record = y_output EXCEPTIONS end_of_level = 1 OTHERS = 2.
ARCHIVE_GET_TABLE CALL FUNCTION 'ARCHIVE_GET_TABLE' EXPORTING archive_handle = x_archive_handle record_structure = x_structure_name TABLES table = yt_output EXCEPTIONS end_of_object = 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.
REARCH_BCONT_WRITE_ILM_F01 - Include REARCH_BCONT_WRITE_ILM_F01 REARCH_BCONT_WRITE_ILM - Program for Archiving Business Partner Contacts REARCH_BCONT_WRITE_ILM - Program for Archiving Business Partner Contacts REARCH_BCONT_WRITE - Program for Archiving Business Partner Contacts REARCH_BCONT_WRITE - Program for Archiving Business Partner Contacts REARCH_BCONT_READ_SEQ - Program for Sequentially Reading Archived Business Partner Contacts