CFX_ARCH_READ_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 CFX_ARCH_READ_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 CFX_ARCH_WRITE_F01
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ARCHIVE_OPEN_FOR_READ CALL FUNCTION 'ARCHIVE_OPEN_FOR_READ' EXPORTING * ARCHIVE_DOCUMENT = '000000' * ARCHIVE_NAME = ' ' object = c_arch_obj * MAINTAIN_INDEX = ' ' IMPORTING archive_handle = a_handle * TABLES * ARCHIVE_FILES = * SELECTED_FILES = EXCEPTIONS file_already_open = 1 file_io_error = 2 internal_error = 3 no_files_available = 4 object_not_found = 5 open_error = 6 not_authorized = 7 OTHERS = 8 .
CRM_STATUS_READ_ARCHIVE_OBJECT CALL FUNCTION 'CRM_STATUS_READ_ARCHIVE_OBJECT' EXPORTING archive_handle = i_ahandle * I_MANDT = SY-MANDT * I_OBJNR = ' ' * I_APPEND = ' ' TABLES t_jsto = ct_jsto t_jcdo = ct_jcdo t_jest = ct_jest t_jcds = ct_jcds EXCEPTIONS wrong_access_to_archive = 1 not_enough_info = 2 OTHERS = 3 .
LOIO_READ_OBJECT CALL FUNCTION 'LOIO_READ_OBJECT' EXPORTING archive_handle = i_ahandle print_list = 'X' * SHOW_EMPTY_ENTRIES = ' ' * PROGRAM = * FORM_HIDE = * SHOW_PHIOS = 'X' * SHOW_REIOS = 'X' .
ACO_READ_OBJECT CALL FUNCTION 'ACO_READ_OBJECT' EXPORTING archive_handle = i_ahandle IMPORTING et_user = ct_user et_substitute = ct_substitute et_user_group = ct_user_group et_hr_object = ct_hr_object et_role = ct_role.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.