Search Results icx_po_headers_archive_v
Overview
The ICX_PO_HEADERS_ARCHIVE_V view is an archived purchase order header view owned by the APPS schema and shipped with the Oracle iProcurement (ICX) product. In Oracle EBS 12.1.1 and 12.2.2, its status is VALID. It exposes purchase order header information drawn from the archived purchasing tables rather than the live transactional tables, so it is the natural source when reporting against historical or purged purchase order data. Its role in reporting and integration is to present a denormalized, human-readable picture of archived PO headers: the header attributes from PO_HEADERS_ARCHIVE are joined to document type names, agent names, vendor names, vendor site addresses, and vendor contact details, allowing self-service procurement reporting, reconciliation, and archival extracts without reconstructing these joins manually. Because the view lives in APPS and is defined on archived base objects, it is typically consumed by concurrent-program extracts, custom reports, and downstream integrations that need the "as-archived" state of a purchase order.
Underlying Base Objects
Per the ETRM documentation, ICX_PO_HEADERS_ARCHIVE_V is defined over the following referenced base objects: PO_HEADERS_ARCHIVE, PO_RELEASES_ARCHIVE, PO_DOCUMENT_TYPES, PO_VENDORS, PO_VENDOR_SITES, PO_VENDOR_CONTACTS, PO_LOOKUP_CODES, HR_LOCATIONS, AP_TERMS, and GL_DAILY_CONVERSION_TYPES, together with the packages PO_INQ_SV, PO_TOTALS_PO_SV, FND_GLOBAL, FND_CURRENCY, and HR_GENERAL.
The central table is PO_HEADERS_ARCHIVE, the archived counterpart of PO_HEADERS. The view's SELECT list references the archive synonym directly through the alias POH, and pulls related attributes from the document type table (PDT.TYPE_NAME), the vendor view (V.VENDOR_NAME), the vendor sites view (VS.VENDOR_SITE_CODE and address fields), and the vendor contacts view (VC.LAST_NAME, VC.FIRST_NAME). The PO_INQ_SV package function GET_PERSON_NAME is invoked to resolve POH.AGENT_ID into a buyer name. A constant literal 'N' is projected in the first position of the select list, and DECODE and NVL expressions are applied to reproduce the defaulted semantics of the live PO header (for example, defaulting AUTHORIZATION_STATUS to 'INCOMPLETE', CLOSED_CODE to 'OPEN', and several flag columns to 'N'). The presence of PO_RELEASES_ARCHIVE and the totals package in the referenced object list reflects that release-level archival data and PO totals are also within the view's dependency set.
Key Columns
- PO_HEADER_ID, FROM_HEADER_ID — identifiers linking the archived header to its originating and source documents.
- SEGMENT1 — the purchase order number (appears twice in the select list).
- TYPE_LOOKUP_CODE with TYPE_NAME — the PO document type code and its decoded descriptive name.
- AUTHORIZATION_STATUS, APPROVED_FLAG, APPROVED_DATE — approval and authorization state, with INCOMPLETE used as the default.
- CLOSED_CODE, CLOSED_DATE — closure indicator and date, defaulted to OPEN.
- VENDOR_ID, VENDOR_SITE_ID, VENDOR_CONTACT_ID with VENDOR_NAME, VENDOR_SITE_CODE, and address columns — full vendor identification and mailing details.
- AGENT_ID plus the PO_INQ_SV.GET_PERSON_NAME result — the buyer responsible for the order.
- CURRENCY_CODE, RATE, RATE_DATE, RATE_TYPE — currency and exchange rate information.
- TERMS_ID, FREIGHT_TERMS_LOOKUP_CODE, FOB_LOOKUP_CODE, SHIP_VIA_LOOKUP_CODE — commercial terms.
- CANCEL_FLAG, FROZEN_FLAG, USER_HOLD_FLAG, FIRM_STATUS_LOOKUP_CODE, CONFIRMING_ORDER_FLAG, ACCEPTANCE_REQUIRED_FLAG — status and control flags, several defaulted to 'N'.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — the DFF (descriptive flexfield) context and segments.
- Standard WHO columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, plus PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE, and REQUEST_ID.
Common Use Cases and Queries
This view is used for archived PO reporting, historical procurement reconciliation, and building extracts for downstream systems. A typical query lists archived headers with buyer and vendor detail:
SELECT po_header_id, segment1, type_name, authorization_status,
po_inq_sv.get_person_name(agent_id) buyer_name,
vendor_name, vendor_site_code, currency_code, creation_date
FROM apps.icx_po_headers_archive_v
WHERE creation_date >= :p_from_date
AND creation_date < :p_to_date;
For reconciliation against live data, the header ID or SEGMENT1 can be used to detect records that exist only in the archive. For closure or hold analysis, filter on CLOSED_CODE, FROZEN_FLAG, or USER_HOLD_FLAG, remembering that the view applies NVL and DECODE defaults and therefore returns normalized values rather than raw nulls. When joining to PO distributions or release data, join on PO_HEADER_ID and be aware that release-level archival data is part of the underlying model. Queries on this view should generally filter by CREATION_DATE, VENDOR_ID, or AGENT_ID to limit full scans of the archive tables.
-
View: ICX_PO_HEADERS_ARCHIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_HEADERS_ARCHIVE_V, object_name:ICX_PO_HEADERS_ARCHIVE_V, status:VALID, product: ICX - Oracle iProcurement , description: Archived Purchase Orders Header View , implementation_dba_data: APPS.ICX_PO_HEADERS_ARCHIVE_V ,
-
View: ICX_PO_HEADERS_ARCHIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_HEADERS_ARCHIVE_V, object_name:ICX_PO_HEADERS_ARCHIVE_V, status:VALID, product: ICX - Oracle iProcurement , description: Archived Purchase Orders Header View , implementation_dba_data: APPS.ICX_PO_HEADERS_ARCHIVE_V ,
-
PACKAGE: APPS.PO_TOTALS_PO_SV
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PO_TOTALS_PO_SV, status:VALID,
-
SYNONYM: APPS.PO_HEADERS_ARCHIVE
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_HEADERS_ARCHIVE, status:VALID,
-
PACKAGE: APPS.PO_TOTALS_PO_SV
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PO_TOTALS_PO_SV, status:VALID,
-
SYNONYM: APPS.PO_HEADERS_ARCHIVE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_HEADERS_ARCHIVE, status:VALID,
-
PACKAGE: APPS.PO_INQ_SV
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PO_INQ_SV, status:VALID,
-
PACKAGE: APPS.PO_INQ_SV
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PO_INQ_SV, status:VALID,
-
SYNONYM: APPS.PO_RELEASES_ARCHIVE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_RELEASES_ARCHIVE, status:VALID,
-
SYNONYM: APPS.PO_RELEASES_ARCHIVE
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_RELEASES_ARCHIVE, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.AP_TERMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AP_TERMS, status:VALID,
-
SYNONYM: APPS.AP_TERMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AP_TERMS, status:VALID,
-
SYNONYM: APPS.PO_DOCUMENT_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_DOCUMENT_TYPES, status:VALID,
-
SYNONYM: APPS.PO_DOCUMENT_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_DOCUMENT_TYPES, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.ICX_PO_HEADERS_ARCHIVE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_HEADERS_ARCHIVE_V, object_name:ICX_PO_HEADERS_ARCHIVE_V, status:VALID,
-
VIEW: APPS.ICX_PO_HEADERS_ARCHIVE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_HEADERS_ARCHIVE_V, object_name:ICX_PO_HEADERS_ARCHIVE_V, status:VALID,
-
VIEW: APPS.PO_VENDOR_CONTACTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDOR_CONTACTS, object_name:PO_VENDOR_CONTACTS, status:VALID,
-
SYNONYM: APPS.GL_DAILY_CONVERSION_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GL_DAILY_CONVERSION_TYPES, status:VALID,
-
SYNONYM: APPS.GL_DAILY_CONVERSION_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GL_DAILY_CONVERSION_TYPES, status:VALID,
-
VIEW: APPS.PO_VENDOR_CONTACTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDOR_CONTACTS, object_name:PO_VENDOR_CONTACTS, status:VALID,
-
PACKAGE: APPS.FND_CURRENCY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_CURRENCY, status:VALID,
-
PACKAGE: APPS.FND_CURRENCY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_CURRENCY, status:VALID,
-
VIEW: APPS.PO_LOOKUP_CODES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LOOKUP_CODES, object_name:PO_LOOKUP_CODES, status:VALID,
-
VIEW: APPS.PO_LOOKUP_CODES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LOOKUP_CODES, object_name:PO_LOOKUP_CODES, status:VALID,
-
VIEW: APPS.PO_VENDOR_SITES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_VENDOR_SITES SQLAP.PO_VENDOR_SITES, object_name:PO_VENDOR_SITES, status:VALID,
-
VIEW: APPS.PO_VENDOR_SITES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_VENDOR_SITES SQLAP.PO_VENDOR_SITES, object_name:PO_VENDOR_SITES, status:VALID,
-
VIEW: APPS.HR_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOCATIONS, object_name:HR_LOCATIONS, status:VALID,
-
VIEW: APPS.HR_LOCATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOCATIONS, object_name:HR_LOCATIONS, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - ICX Tables and Views
12.2.2
-
eTRM - ICX Tables and Views
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - ICX Tables and Views
12.2.2
-
eTRM - ICX Tables and Views
12.1.1