REL03F01 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 REL03F01 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: Forms for RGJARC01 (JV_OBJECT archiving)
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.
RS_REFRESH_FROM_SELECTOPTIONS CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS' EXPORTING curr_report = v_progname TABLES selection_table = lt_sel_params.
RS_REPORTSELECTIONS_INFO CALL FUNCTION 'RS_REPORTSELECTIONS_INFO' EXPORTING report = v_progname default_values = ' ' TABLES field_info = lt_field_info def_values = lt_def_values.
ARCHIVE_GET_NEXT_OBJECT CALL FUNCTION 'ARCHIVE_GET_NEXT_OBJECT' EXPORTING archive_handle = fv_read_handle EXCEPTIONS end_of_file = 1.
ARCHIVE_GET_INFORMATION CALL FUNCTION 'ARCHIVE_GET_INFORMATION' EXPORTING archive_handle = fv_read_handle IMPORTING archive_creation_release = fw_rl_statistic-ar_cr_rel archive_creation_system = fw_rl_statistic-ar_sys archive_document = fw_rl_statistic-document object = fw_rl_statistic-object EXCEPTIONS OTHERS = 3.
ARCHIVE_CLOSE_FILE CALL FUNCTION 'ARCHIVE_CLOSE_FILE' EXPORTING archive_handle = fv_read_handle.
POPUP_DISPLAY_TEXT_WITH_PARAMS CALL FUNCTION 'POPUP_DISPLAY_TEXT_WITH_PARAMS' EXPORTING language = sy-langu popup_title = text-pr1 start_column = 10 start_row = 3 text_object = lv_text_object IMPORTING cancelled = lv_answer TABLES parameters = lt_text_params EXCEPTIONS error_in_text = 1 text_not_found = 2 OTHERS = 3.
POPUP_DISPLAY_TEXT_WITH_PARAMS CALL FUNCTION 'POPUP_DISPLAY_TEXT_WITH_PARAMS' EXPORTING language = sy-langu popup_title = text-pr2 start_column = 10 start_row = 3 text_object = lv_text_object IMPORTING cancelled = lv_answer TABLES parameters = lt_text_params EXCEPTIONS error_in_text = 1 text_not_found = 2 OTHERS = 3.
ARCHIVE_OPEN_FOR_MOVE CALL FUNCTION 'ARCHIVE_OPEN_FOR_MOVE' EXPORTING object = c_arch_object test_mode = p_test IMPORTING archive_read_handle = fv_read_handle archive_write_handle = fv_write_handle EXCEPTIONS no_files_available = 4.
ARCHIVE_GET_NEXT_RECORD CALL FUNCTION 'ARCHIVE_GET_NEXT_RECORD' EXPORTING archive_handle = fv_read_handle IMPORTING * record = lw_data_s "< ALN UC record_structure = lv_structure RECORD_REF = LW_DATA_REF "< ALN UC EXCEPTIONS end_of_object = 1.
ARCHIVE_GET_TABLE CALL FUNCTION 'ARCHIVE_GET_TABLE' EXPORTING archive_handle = fv_read_handle record_structure = lv_structure all_records_of_object = ' ' TABLES table = AC_T8JVBA EXCEPTIONS end_of_object = 1.
JV_DATA_CHECK_TS CALL FUNCTION 'JV_DATA_CHECK_TS' EXPORTING i_selections = fv_archive_selections TABLES t_data = ft_data t_data_omitted = T8JVBA_select EXCEPTIONS ex_no_match_for_table = 1 ex_no_match_for_structure = 2.
JV_INSERT CALL FUNCTION 'JV_INSERT' EXPORTING i_structure_name = fv_structure i_line_insert = lv_yes TABLES t_data = ft_data t_data_omitted = T8JVBA_insert CHANGING e_statistic = lw_statistic EXCEPTIONS OTHERS = 1.
ARCHIVE_SAVE_OBJECT CALL FUNCTION 'ARCHIVE_SAVE_OBJECT' EXPORTING archive_handle = fv_write_handle.
ARCHIVE_SAVE_OBJECT CALL FUNCTION 'ARCHIVE_SAVE_OBJECT' EXPORTING archive_handle = fv_write_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.