RGPDARCHPRE 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 RGPDARCHPRE 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.
Selection Text: P_PREPRD = D .
Selection Text: P_PRETST = D .
Selection Text: P_PROT = D .
Selection Text: P_PROT_O = D .
Title: Archiving GPD Replenishment Object: Preprocessing Program
Text Symbol: 001 = Replenishment Object Archiveable
Text Symbol: 002 = &1% (&2 of &3) of the replenishment objects processed
INCLUDE: RGPDARCHPRETOP,
ARCH_PREPROC_PRG_STANDARD2, "#EC INCL_OK
RGPDARCHPREF01.
No SAP DATABASE tables are accessed within this REPORT code!
ARCHIVE_PROTOCOL_LINE_DETAIL CALL FUNCTION 'ARCHIVE_PROTOCOL_LINE_DETAIL'.
ARCHIVE_PROTOCOL_INIT CALL FUNCTION 'ARCHIVE_PROTOCOL_INIT' EXPORTING i_detailprotocol = p_prot i_protocol_output = p_prot_o.
ARCHIVE_PROTOCOL_INIT CALL FUNCTION 'ARCHIVE_PROTOCOL_INIT' EXPORTING i_detailprotocol = p_prot i_protocol_output = p_prot_o IMPORTING e_protocol_handle = gv_log_handle.
BAL_LOG_HDR_READ CALL FUNCTION 'BAL_LOG_HDR_READ' EXPORTING i_log_handle = gv_log_handle " Log handle IMPORTING e_s_log = gs_log.
BAL_LOG_HDR_CHANGE CALL FUNCTION 'BAL_LOG_HDR_CHANGE' EXPORTING i_log_handle = gv_log_handle " Log handle i_s_log = gs_log. " Log header data
ARCHIVE_PROTOCOL_COLLECT CALL FUNCTION 'ARCHIVE_PROTOCOL_COLLECT' EXPORTING i_object = gs_repobj_err-repobj i_text = text-001 i_msgtype = 1 i_protocol_handle = gv_log_handle.
GPD_ARCH_SET_DEL_IND CALL FUNCTION 'GPD_ARCH_SET_DEL_IND' IN UPDATE TASK EXPORTING iv_repobj = gs_repobj_err-repobj.
ARCHIVE_PROTOCOL_COLLECT CALL FUNCTION 'ARCHIVE_PROTOCOL_COLLECT' EXPORTING i_object = gs_repobj_err-repobj i_msgtype = 2 i_msgid = 'GPDARCH' i_msgno = gs_repobj_err-errcod i_msgv1 = gs_repobj_err-msgv1 i_msgv2 = gs_repobj_err-msgv2 i_msgv3 = gs_repobj_err-msgv3 i_msgv4 = gs_repobj_err-msgv4 i_protocol_handle = gv_log_handle.
PROGRESS_INDICATOR CALL FUNCTION 'PROGRESS_INDICATOR' EXPORTING i_text = text-002 i_processed = gv_objects_processed i_total = gv_total_object_number IMPORTING e_progress_sent = gv_progress_send.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
PROGRESS_INDICATOR CALL FUNCTION 'PROGRESS_INDICATOR' EXPORTING i_text = text-002 i_processed = gv_objects_processed i_total = gv_total_object_number i_output_immediately = 'X'.
ARCHIVE_PROTOCOL_WRITE CALL FUNCTION 'ARCHIVE_PROTOCOL_WRITE' EXPORTING i_protocol_handle = gv_log_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.
RGPDARCHPRE - Archiving GPD Replenishment Object: Preprocessing Program RGPDARCHPRE - Archiving GPD Replenishment Object: Preprocessing Program RGPDARCHPOSTTOP - Include RGPDARCHPOSTTOP RGPDARCHPOSTF01 - Include RGPDARCHPOSTF01 RGPDARCHPOST - Archiving GPD Replenishment Object: Postprocessing Program RGPDARCHPOST - Archiving GPD Replenishment Object: Postprocessing Program