PPC_CONF_ARCH_DSP is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Display Program for Archiving Object PP_CONF You use this program to display data that is stored in one or more archive files...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter PPC_CONF_ARCH_DSP 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: Read and Display Archived Data Sequentially
Text Symbol: KO1 = PCC
Text Symbol: KO2 = Cost Collector
Text Symbol: KO3 = Product Cost Collector
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 object = c_arch_object IMPORTING archive_handle = ls_handle 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.
ARCHIVE_GET_NEXT_OBJECT CALL FUNCTION 'ARCHIVE_GET_NEXT_OBJECT' EXPORTING archive_handle = ls_handle IMPORTING object_id = ls_object_id EXCEPTIONS end_of_file = 1 file_io_error = 2 internal_error = 3 open_error = 4 wrong_access_to_archive = 5 OTHERS = 6.
ARCHIVE_GET_NEXT_RECORD CALL FUNCTION 'ARCHIVE_GET_NEXT_RECORD' EXPORTING archive_handle = ls_handle IMPORTING record = ls_buffer-segment record_structure = ls_buffer-rname EXCEPTIONS end_of_object = 1 internal_error = 2 wrong_access_to_archive = 3 OTHERS = 4.
PPC1IP_RES_CONVERT CALL FUNCTION 'PPC1IP_RES_CONVERT' EXPORTING if_res_guid = ls_ppc_act-resource_guid IMPORTING ef_res_name = ls_show_ext_acts-resource_ext EXCEPTIONS OTHERS = 4.
PPC1IP_MOD_CONVERT CALL FUNCTION 'PPC1IP_MOD_CONVERT' EXPORTING if_mod_guid = ls_ppc_act-mode_guid IMPORTING ef_act_name = ls_show_ext_acts-activity_name ef_mod_num = ls_show_ext_acts-mode_no EXCEPTIONS OTHERS = 5.
PPC1RT_RES_CO_CONVERT CALL FUNCTION 'PPC1RT_RES_CO_CONVERT' EXPORTING if_resource_guid = lf_resguid if_key_date = sy-datlo "no posting date av.
PPC1RT_CONF_DISPLAY CALL FUNCTION 'PPC1RT_CONF_DISPLAY' EXPORTING if_hierarch = ' ' if_mode = 'H' if_error_level = 'S' if_expand = 'X' if_archive = 'X' TABLES it_heads = lt_show_ext_heads it_comps = lt_show_ext_comps it_acts = lt_show_ext_acts EXCEPTIONS insufficient_input = 1 OTHERS = 2.
ARCHIVE_CLOSE_FILE CALL FUNCTION 'ARCHIVE_CLOSE_FILE' EXPORTING archive_handle = ls_handle EXCEPTIONS internal_error = 1 wrong_access_to_archive = 2 OTHERS = 3.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_internal_tabname = c_tabname_head i_structure_name = 'PPC_ARCH_SHOW_EXT' i_client_never_display = c_on CHANGING ct_fieldcat = pt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_internal_tabname = c_tabname_item i_structure_name = 'PPC_ARCH_SHOW_EXT_GI' i_client_never_display = c_on CHANGING ct_fieldcat = pt_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
REUSE_ALV_VARIANT_DEFAULT_GET CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET' CHANGING cs_variant = ps_variant EXCEPTIONS wrong_input = 1 not_found = 2 program_error = 3 OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
PPC_CONF_ARCH_DSP - Read and Display Archived Data Sequentially PPC_CONF_ARCH_DSP - Read and Display Archived Data Sequentially PPC_CONF_ARCH_DEL - Deletion Program for Archiving Object PP_CONF PPC_CONF_ARCH_DEL - Deletion Program for Archiving Object PP_CONF PPC_CONFIRMATIONS_SHOW - Display of Backflushes Received PPC_CONFIRMATIONS_SHOW - Display of Backflushes Received