/SAPPCE/DPC_ARCHIVE_READ_SEQU is a standard Executable ABAP Report 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 /SAPPCE/DPC_ARCHIVE_READ_SEQU 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: DP chain: Archiving - Read sequentially
Text Symbol: 002 = Total number of records read:
Text Symbol: 003 = Down Payment Chain:
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
/SAPPCE/DPC_CHECK_ERP_MEC_LIST CALL FUNCTION '/SAPPCE/DPC_CHECK_ERP_MEC_LIST' IMPORTING EV_CHECK_SWITCH_FLAG = lv_switch_flag EXCEPTIONS INVALID_SWITCH = 1 OTHERS = 2 .
ARCHIVE_OPEN_FOR_READ CALL FUNCTION 'ARCHIVE_OPEN_FOR_READ' EXPORTING object = c_object_dpc IMPORTING archive_handle = g_archive_handle.
ARCHIVE_GET_NEXT_OBJECT CALL FUNCTION 'ARCHIVE_GET_NEXT_OBJECT' EXPORTING archive_handle = g_archive_handle IMPORTING object_id = ls_chain_key object_offset = l_object_offset archive_name = l_archive_name EXCEPTIONS end_of_file = 1.
ARCHIVE_GET_NEXT_RECORD CALL FUNCTION 'ARCHIVE_GET_NEXT_RECORD' EXPORTING archive_handle = g_archive_handle IMPORTING record = l_record record_structure = l_record_type EXCEPTIONS end_of_object = 1.
ARCHIVE_CLOSE_FILE CALL FUNCTION 'ARCHIVE_CLOSE_FILE' EXPORTING archive_handle = g_archive_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.
/SAPPCE/DPC_ARCHIVE_READ_SEQU - DP chain: Archiving - Read sequentially /SAPPCE/DPC_ARCHIVE_READ_SEQU - DP chain: Archiving - Read sequentially /SAPPCE/DPC_ARCHIVE_PREPARE - Down payment chains - Flag down payment chains to be achived /SAPPCE/DPC_ARCHIVE_PREPARE - Down payment chains - Flag down payment chains to be achived /SAPPCE/DPC_ARCHIVE_INDEX_DEL - DP chain: Archiving - Index structure /SAPPCE/DPC_ARCHIVE_INDEX_DEL - DP chain: Archiving - Index structure