FPCA_ARCH_BASE_READ 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 FPCA_ARCH_BASE_READ 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ARCHIVE_OPEN_FOR_DELETE CALL FUNCTION 'ARCHIVE_OPEN_FOR_DELETE' EXPORTING object = c_object test_mode = p_deltst output_sel_screen_when_dialog = ' ' output_sel_screen_when_batch = ' ' IMPORTING archive_handle = gs_archive-handle.
FPCA_ARCH_STAT_MODE CALL FUNCTION 'FPCA_ARCH_STAT_MODE' EXPORTING i_mode = 'D'.
ARCHIVE_OPEN_FOR_MOVE CALL FUNCTION 'ARCHIVE_OPEN_FOR_MOVE' EXPORTING object = c_object test_mode = p_deltst IMPORTING archive_read_handle = gs_archive-handle archive_write_handle = gs_archive-handle_rewrite.
FPCA_ARCH_STAT_MODE CALL FUNCTION 'FPCA_ARCH_STAT_MODE' EXPORTING i_mode = 'R'.
ARCHIVE_GET_INFORMATION CALL FUNCTION 'ARCHIVE_GET_INFORMATION' EXPORTING archive_handle = gs_archive-handle IMPORTING object_number_in_file = gv_objects_to_delete.
ARCHIVE_PROTOCOL_INIT CALL FUNCTION 'ARCHIVE_PROTOCOL_INIT' EXPORTING i_detailprotocol = p_prot.
ARCHIVE_GET_CUSTOMIZING_DATA CALL FUNCTION 'ARCHIVE_GET_CUSTOMIZING_DATA' EXPORTING object = c_object IMPORTING commit_count_for_delete_prg = gs_archive-commit_count.
PROGRESS_INDICATOR CALL FUNCTION 'PROGRESS_INDICATOR' EXPORTING i_msgid = 'PCA_SECURITY' i_msgno = 703 i_processed = gv_objects_processed i_total = gv_objects_to_delete i_output_immediately = 'X'.
ARCHIVE_WRITE_STATISTICS CALL FUNCTION 'ARCHIVE_WRITE_STATISTICS' EXPORTING archive_handle = gs_archive-handle statistics_only_per_file = 'X'.
FPCA_ARCH_STAT_WRITE CALL FUNCTION 'FPCA_ARCH_STAT_WRITE'.
ARCHIVE_PROTOCOL_WRITE CALL FUNCTION 'ARCHIVE_PROTOCOL_WRITE'.
ARCHIVE_CLOSE_FILE CALL FUNCTION 'ARCHIVE_CLOSE_FILE' EXPORTING archive_handle = gs_archive-handle.
ARCHIVE_GET_NEXT_OBJECT CALL FUNCTION 'ARCHIVE_GET_NEXT_OBJECT' EXPORTING archive_handle = gs_archive-handle IMPORTING object_id = s_buffer-objid EXCEPTIONS end_of_file = 1.
ARCHIVE_DELETE_OBJECT_DATA CALL FUNCTION 'ARCHIVE_DELETE_OBJECT_DATA' EXPORTING archive_handle = gs_archive-handle.
ARCHIVE_RELOAD_OBJECT_DATA CALL FUNCTION 'ARCHIVE_RELOAD_OBJECT_DATA' EXPORTING archive_handle = gs_archive-handle.
FPCA_ARCH_DETAIL_INIT CALL FUNCTION 'FPCA_ARCH_DETAIL_INIT' IMPORTING e_callback_parameter = v_callback.
FPCA_ARCH_DETAIL_SUPPLY_FINISH CALL FUNCTION 'FPCA_ARCH_DETAIL_SUPPLY_FINISH' EXPORTING i_objectid = s_buffer-objid IMPORTING e_callback_parameter = v_callback-t_par.
ARCHIVE_PROTOCOL_COLLECT CALL FUNCTION 'ARCHIVE_PROTOCOL_COLLECT' EXPORTING i_object = s_buffer-objid i_msgtype = 1 i_msgid = 'PCA_SECURITY' i_msgno = 701 i_callback_parameter = v_callback.
CALL FUNCTION 'ARCHIVE_PROTOCOL_COLLECT' EXPORTING i_object = s_buffer-objid i_msgtype = 1 i_msgid = 'PCA_SECURITY' i_msgno = 702 i_callback_parameter = v_callback.
PROGRESS_INDICATOR CALL FUNCTION 'PROGRESS_INDICATOR' EXPORTING i_msgid = 'PCA_SECURITY' i_msgno = 703 i_processed = gv_objects_processed i_total = gv_objects_to_delete.
ARCHIVE_GET_NEXT_OBJECT CALL FUNCTION 'ARCHIVE_GET_NEXT_OBJECT' EXPORTING archive_handle = gs_archive-handle IMPORTING object_id = s_buffer-objid EXCEPTIONS end_of_file = 1.
ARCHIVE_GET_TABLE CALL FUNCTION 'ARCHIVE_GET_TABLE' EXPORTING archive_handle = gs_archive-handle record_structure = iv_tabname all_records_of_object = 'X' TABLES TABLE = ot_table.
FPCA_ARCH_STAT_READ CALL FUNCTION 'FPCA_ARCH_STAT_READ' EXPORTING i_table = iv_tabname i_number = v_number.
FPCA_ARCH_DETAIL_SUPPLY_SINGLE CALL FUNCTION 'FPCA_ARCH_DETAIL_SUPPLY_SINGLE' EXPORTING i_table = iv_tabname i_number = v_number.
ARCHIVE_GIVE_STATISTICS CALL FUNCTION 'ARCHIVE_GIVE_STATISTICS' EXPORTING archive_handle = gs_archive-handle TABLES TABLE = t_stat.
FPCA_ARCH_STAT_USED CALL FUNCTION 'FPCA_ARCH_STAT_USED' EXPORTING i_table = iv_name i_number = iv_number.
FPCA_ARCH_STAT_INIT CALL FUNCTION 'FPCA_ARCH_STAT_INIT' EXPORTING i_tables = t_tab.
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 FPCA_ARCH_BASE_READ or its description.