ARCTCF01 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 ARCTCF01 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!
G_ADMI_AUTHORITY_CHECK CALL FUNCTION 'G_ADMI_AUTHORITY_CHECK' EXPORTING activity = '03' EXCEPTIONS not_authorized = 01.
POPUP_DISPLAY_TEXT_WITH_PARAMS CALL FUNCTION 'POPUP_DISPLAY_TEXT_WITH_PARAMS' EXPORTING language = sy-langu popup_title = text-p07 start_column = 10 start_row = 3 text_object = lc_text_object IMPORTING cancelled = lv_answer TABLES PARAMETERS = lt_text_params EXCEPTIONS error_in_text = 1 text_not_found = 2 OTHERS = 3.
RS_REPORTSELECTIONS_INFO CALL FUNCTION 'RS_REPORTSELECTIONS_INFO' EXPORTING report = gc_progname default_values = ' ' TABLES field_info = lt_field_info def_values = lt_def_values.
RS_REFRESH_FROM_SELECTOPTIONS CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS' EXPORTING curr_report = gc_progname TABLES selection_table = lt_sel_params.
G_TABLE_OPEN_CURSOR CALL FUNCTION 'G_TABLE_OPEN_CURSOR' EXPORTING i_tabname = lv_table_to_archive i_selection = lt_selections i_sortlist = lt_sortlist i_period_aggregation = gusl_c_peraggr_group i_with_hold = gusl_c_true i_zero_records = gusl_c_true i_db_commit = gusl_c_true "Hw 182527 IMPORTING e_cursor = lv_cursor_c.
G_FIELD_READ CALL FUNCTION 'G_FIELD_READ' EXPORTING fieldname = lt_fields_in_question table = fv_table IMPORTING field_attr = lw_dfies EXCEPTIONS not_found = 1 OTHERS = 2.
G_TABLE_FETCH CALL FUNCTION 'G_TABLE_FETCH' EXPORTING i_cursor = fv_cursor_c i_package_size = gc_package_size_def CHANGING c_t_glu1 = lt_data_glu1 * c_t_data = lt_data "wes270607 c_t_data =
"wes270607 EXCEPTIONS no_more_data = 1.
ARCHIVE_NEW_OBJECT CALL FUNCTION 'ARCHIVE_NEW_OBJECT' EXPORTING archive_handle = fv_handle object_id = ld_object_string.
ARCHIVE_NEW_OBJECT CALL FUNCTION 'ARCHIVE_NEW_OBJECT' EXPORTING archive_handle = fv_handle object_id = ld_object_string.
ARCHIVE_NEW_OBJECT CALL FUNCTION 'ARCHIVE_NEW_OBJECT' EXPORTING archive_handle = fv_handle object_id = ld_object_string.
G_TABLE_FETCH CALL FUNCTION 'G_TABLE_FETCH' EXPORTING i_cursor = fv_cursor_c i_package_size = gc_package_size_def CHANGING * c_t_data = lt_data "wes270607 c_t_data =
"wes270607 EXCEPTIONS no_more_data = 1.
ARCHIVE_GET_INFORMATION CALL FUNCTION 'ARCHIVE_GET_INFORMATION' EXPORTING archive_handle = fv_handle IMPORTING archive_creation_release = fw_statistics-ar_cr_rel archive_creation_system = fw_statistics-ar_sys object = fw_statistics-object EXCEPTIONS OTHERS = 3.
ARCHIVE_WRITE_STATISTICS CALL FUNCTION 'ARCHIVE_WRITE_STATISTICS' EXPORTING archive_handle = fv_handle EXCEPTIONS internal_error = 1 OTHERS = 2.
ARCHIVE_CLOSE_FILE CALL FUNCTION 'ARCHIVE_CLOSE_FILE' EXPORTING archive_handle = fv_handle.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.