RWTYARCH03 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 RWTYARCH03 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: Program for Reading Archives for Warranty Claims (Technical Display)
Text Symbol: 001 = No File Opened
Text Symbol: 002 = Object ID:
Text Symbol: 010 = Claim Header Data:
Text Symbol: 011 = Claim Version Data:
Text Symbol: 012 = Claim Item Data:
Text Symbol: 013 = PNODID / IPPE Nodes:
Text Symbol: 014 = POSVID / IPPE Variants
Text Symbol: 015 = PNODTX / IPPE Node Texts - Short Texts Header / Version
Text Symbol: 016 = PALTID / IPPE Alternatives - Categories
Text Symbol: 017 = PRWTY / Relations
Text Symbol: 018 = WTYV_IRMG / Measurement Document Assignment
Text Symbol: 019 = WTY_RCLOBJ / Recall Objects
Text Symbol: 020 = WTY_RCLHST / Recall History
Text Symbol: 021 = KONV / Item Prices
Text Symbol: 022 = NAST / Message Records
Text Symbol: 023 = Header Long Text
Text Symbol: 024 = Long Text: Version
Text Symbol: 025 = Item Long Text
Text Symbol: 026 = Change Documents for Claim
Text Symbol: 027 = WTY_PARTNER_TAB / Partner
INCLUDE WTYARCHTOP.
No SAP DATABASE tables are accessed within this REPORT code!
ARCHIVE_OPEN_FOR_READ CALL FUNCTION 'ARCHIVE_OPEN_FOR_READ' EXPORTING object = gc_arch_obj IMPORTING archive_handle = handle EXCEPTIONS internal_error = 01 no_files_available = 02 object_not_found = 03 open_error = 04.
ARCHIVE_GET_NEXT_OBJECT CALL FUNCTION 'ARCHIVE_GET_NEXT_OBJECT' EXPORTING archive_handle = handle IMPORTING object_id = filepath-pathintern EXCEPTIONS end_of_file = 01 internal_error = 02 open_error = 03 wrong_access_to_archive = 04.
ARCHIVE_GET_NEXT_RECORD CALL FUNCTION 'ARCHIVE_GET_NEXT_RECORD' EXPORTING archive_handle = handle IMPORTING record_structure = rname record_ref = buffer_ref EXCEPTIONS end_of_object = 01 internal_error = 02 wrong_access_to_archive = 03.
TEXT_READ_ARCHIVE_OBJECT CALL FUNCTION 'TEXT_READ_ARCHIVE_OBJECT' EXPORTING archive_handle = handle id = gc_txtid_h language = sy-langu name = lv_txname object = 'WTY' client = sy-mandt IMPORTING header = gs_txt_header TABLES lines = gt_txt_lines EXCEPTIONS not_found = 1 wrong_access_to_archive = 2 OTHERS = 3.
TEXT_READ_ARCHIVE_OBJECT CALL FUNCTION 'TEXT_READ_ARCHIVE_OBJECT' EXPORTING archive_handle = handle id = gc_txtid_i language = sy-langu name = lv_txname object = 'WTY' client = sy-mandt IMPORTING header = gs_txt_header TABLES lines = gt_txt_lines EXCEPTIONS not_found = 1 wrong_access_to_archive = 2 OTHERS = 3.
TEXT_READ_ARCHIVE_OBJECT CALL FUNCTION 'TEXT_READ_ARCHIVE_OBJECT' EXPORTING archive_handle = handle id = gc_txtid_v language = sy-langu name = lv_txname object = 'WTY' client = sy-mandt IMPORTING header = gs_txt_header TABLES lines = gt_txt_lines EXCEPTIONS not_found = 1 wrong_access_to_archive = 2 OTHERS = 3.
CHANGEDOCU_READ_ARCHIVE_OBJECT CALL FUNCTION 'CHANGEDOCU_READ_ARCHIVE_OBJECT' EXPORTING archive_handle = handle client = sy-mandt * IMPORTING * ET_CDPOS_UID = * ET_CDKEYTAB = TABLES icdhdr = gt_cdhdr icdpos = gt_cdpos EXCEPTIONS wrong_access_to_archive = 1 OTHERS = 2 .
ARCHIVE_CLOSE_FILE CALL FUNCTION 'ARCHIVE_CLOSE_FILE' EXPORTING archive_handle = 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.
RWTYARCH03 - Program for Reading Archives for Warranty Claims (Technical Display) RWTYARCH03 - Program for Reading Archives for Warranty Claims (Technical Display) RWTYARCH02 - Program for Deleting Warranty Claims with Index Structure Using ADK RWTYARCH02 - Program for Deleting Warranty Claims with Index Structure Using ADK RWTYARCH01 - Program for Archiving of Warranty Claims -> Write to Archive RWTYARCH01 - Program for Archiving of Warranty Claims -> Write to Archive