Search Results archived_yn
Overview
APPS.OE_BLANKET_VERSIONS_V is a reporting view in the Oracle E-Business Suite Order Management (OE) module that consolidates the version history of blanket sales agreements. In Oracle EBS 12.1.1 and 12.2.2, blanket agreements can carry multiple versions as terms are renegotiated, re-approved, or re-signed. The view provides a single, uniform result set that exposes both the currently active version (held in the operational blanket header table) and prior versions retained in the history table, tagging each row with an ARCHIVED_YN flag to distinguish the two. This makes it a convenient source for inquiry screens, version-comparison reports, and integration interfaces that must present a customer's full blanket agreement lineage rather than just the current record.
Underlying Base Objects
The view is defined as a UNION of two synonyms, OE_BLANKET_HEADERS_ALL and OE_BLANKET_HEADERS_HIST, both owned by and resolved in the APPS schema. The first branch selects from OE_BLANKET_HEADERS_ALL and hard-codes ARCHIVED_YN as 'N', representing the live blanket header. The second branch selects from OE_BLANKET_HEADERS_HIST, filtered by VERSION_FLAG = 'Y', and hard-codes ARCHIVED_YN as 'Y', representing superseded versions moved to history. The VERSION_FLAG predicate restricts the historical branch to rows explicitly flagged as version records. Because the view is read-only and simply projects columns from these two tables, it inherits their security and multi-org characteristics; the caller's operating unit context and MO: Security profile determine which blanket headers are visible.
Key Columns
- HEADER_ID — Primary identifier of the blanket header record in each source table. Note that the same logical agreement may appear with different HEADER_ID values across the archive and current branches.
- SALES_DOCUMENT_TYPE_CODE — Identifies the document classification (for example, blanket sales agreement) for the version row.
- VERSION_NUMBER — The version sequence for the blanket agreement. The view is ordered by
VERSION_NUMBER DESC, so the most recent version appears first. - SIGNED_YN — Derived via
DECODE(NVL(TO_CHAR(CUSTOMER_SIGNATURE_DATE), 'N'), 'N', 'N', 'Y'). It evaluates to'Y'when a customer signature date exists on the version, otherwise'N'. - ARCHIVED_YN — The column most relevant to the "archived_yn" search. It is
'N'for rows drawn from the current blanket header table and'Y'for rows drawn from the history table, enabling callers to filter current versus superseded versions in a single query.
Common Use Cases and Queries
The dominant use case is retrieving the complete version audit trail of a blanket agreement, including which versions are archived and which remain active. A typical query returns all versions for a specific agreement or across agreements, ordered newest-first:
SELECT header_id, sales_document_type_code, version_number,
signed_yn, archived_yn
FROM apps.oe_blanket_versions_v
WHERE archived_yn = 'N'
ORDER BY version_number DESC;
Filtering ARCHIVED_YN = 'Y' isolates historical versions for audit or comparison reporting, while omitting the predicate on ARCHIVED_YN yields the full lineage. Because SIGNED_YN is exposed directly, reporting on signature compliance is straightforward, for example counting unsigned current versions with WHERE signed_yn = 'N' AND archived_yn = 'N'. Integrations that publish blanket version status to external systems commonly SELECT the projection above and key on HEADER_ID combined with SALES_DOCUMENT_TYPE_CODE. As with any APPS view, queries should be run in the appropriate operating unit context so that multi-org security filters apply correctly.
-
VIEW: APPS.OE_BLANKET_VERSIONS_V
12.1.1
-
VIEW: APPS.OE_BLANKET_VERSIONS_V
12.2.2
-
VIEW: APPS.OKC_REP_DOC_VERSIONS_V
12.2.2
-
VIEW: APPS.OKS_DOCUMENT_VERSIONS_V
12.1.1
-
VIEW: APPS.OE_ORDER_VERSIONS_V
12.1.1
-
VIEW: APPS.OE_ORDER_VERSIONS_V
12.2.2
-
View: OE_ORDER_VERSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_VERSIONS_V, object_name:OE_ORDER_VERSIONS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_VERSIONS_V ,
-
VIEW: APPS.OKC_REP_DOC_VERSIONS_V
12.1.1
-
View: OKC_REP_DOC_VERSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_REP_DOC_VERSIONS_V, object_name:OKC_REP_DOC_VERSIONS_V, status:VALID, product: OKC - Contracts Core , description: This view returns repository contract versions , implementation_dba_data: APPS.OKC_REP_DOC_VERSIONS_V ,
-
VIEW: APPS.PO_DOCUMENT_VERSIONS_V
12.2.2
-
VIEW: APPS.PO_DOCUMENT_VERSIONS_V
12.1.1
-
VIEW: APPS.OKS_DOCUMENT_VERSIONS_V
12.2.2
-
View: PO_DOCUMENT_VERSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_DOCUMENT_VERSIONS_V, object_name:PO_DOCUMENT_VERSIONS_V, status:VALID, product: PO - Purchasing , description: This view is required to provide version information on documents for contracts. , implementation_dba_data: APPS.PO_DOCUMENT_VERSIONS_V ,
-
View: OE_BLANKET_VERSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_VERSIONS_V, object_name:OE_BLANKET_VERSIONS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_BLANKET_VERSIONS_V ,
-
View: OE_BLANKET_VERSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_VERSIONS_V, object_name:OE_BLANKET_VERSIONS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_BLANKET_VERSIONS_V ,
-
View: PO_DOCUMENT_VERSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_DOCUMENT_VERSIONS_V, object_name:PO_DOCUMENT_VERSIONS_V, status:VALID, product: PO - Purchasing , description: This view is required to provide version information on documents for contracts. , implementation_dba_data: APPS.PO_DOCUMENT_VERSIONS_V ,
-
View: OKC_REP_DOC_VERSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_REP_DOC_VERSIONS_V, object_name:OKC_REP_DOC_VERSIONS_V, status:VALID, product: OKC - Contracts Core , description: This view returns repository contract versions , implementation_dba_data: APPS.OKC_REP_DOC_VERSIONS_V ,
-
View: OE_ORDER_VERSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_VERSIONS_V, object_name:OE_ORDER_VERSIONS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_VERSIONS_V ,
-
View: OKS_DOCUMENT_VERSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_DOCUMENT_VERSIONS_V, object_name:OKS_DOCUMENT_VERSIONS_V, status:VALID, product: OKS - Service Contracts , description: This view is used to provide achived versions of a contract , implementation_dba_data: APPS.OKS_DOCUMENT_VERSIONS_V ,
-
View: OKS_DOCUMENT_VERSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_DOCUMENT_VERSIONS_V, object_name:OKS_DOCUMENT_VERSIONS_V, status:VALID, product: OKS - Service Contracts , description: This view is used to provide achived versions of a contract , implementation_dba_data: APPS.OKS_DOCUMENT_VERSIONS_V ,
-
VIEW: APPS.OE_ORDER_VERSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_VERSIONS_V, object_name:OE_ORDER_VERSIONS_V, status:VALID,
-
VIEW: OKC.OKC_K_HEADERS_ALL_B#
12.2.2
-
VIEW: APPS.OE_ORDER_VERSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_VERSIONS_V, object_name:OE_ORDER_VERSIONS_V, status:VALID,
-
VIEW: APPS.OE_BLANKET_VERSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_VERSIONS_V, object_name:OE_BLANKET_VERSIONS_V, status:VALID,
-
VIEW: APPS.OE_BLANKET_VERSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_VERSIONS_V, object_name:OE_BLANKET_VERSIONS_V, status:VALID,
-
VIEW: APPS.OKS_DOCUMENT_VERSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_DOCUMENT_VERSIONS_V, object_name:OKS_DOCUMENT_VERSIONS_V, status:VALID,
-
VIEW: OKC.OKC_K_HEADERS_ALL_BH#
12.2.2
-
VIEW: APPS.PO_DOCUMENT_VERSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_DOCUMENT_VERSIONS_V, object_name:PO_DOCUMENT_VERSIONS_V, status:VALID,
-
VIEW: APPS.OKC_REP_DOC_VERSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_REP_DOC_VERSIONS_V, object_name:OKC_REP_DOC_VERSIONS_V, status:VALID,
-
VIEW: APPS.PO_DOCUMENT_VERSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_DOCUMENT_VERSIONS_V, object_name:PO_DOCUMENT_VERSIONS_V, status:VALID,
-
VIEW: APPS.OKS_DOCUMENT_VERSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKS.OKS_DOCUMENT_VERSIONS_V, object_name:OKS_DOCUMENT_VERSIONS_V, status:VALID,
-
VIEW: APPS.OKC_REP_DOC_VERSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_REP_DOC_VERSIONS_V, object_name:OKC_REP_DOC_VERSIONS_V, status:VALID,
-
View: OKC_K_HDR_AGREEDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_HDR_AGREEDS_V, object_name:OKC_K_HDR_AGREEDS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_CONTRACT_HEADERS_B , implementation_dba_data: APPS.OKC_K_HDR_AGREEDS_V ,
-
View: OKC_K_HDR_AGREEDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_HDR_AGREEDS_V, object_name:OKC_K_HDR_AGREEDS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_CONTRACT_HEADERS_B , implementation_dba_data: APPS.OKC_K_HDR_AGREEDS_V ,
-
VIEW: APPS.OKC_K_HDR_AGREEDS_V
12.1.1
-
VIEW: APPS.OKC_K_HDR_AGREEDS_V
12.2.2
-
View: OKL_VP_AGREEMENT_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_VP_AGREEMENT_UV, object_name:OKL_VP_AGREEMENT_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_VP_AGREEMENT_UV ,
-
View: OKC_K_HEADERS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_HEADERS_ALL_V, object_name:OKC_K_HEADERS_ALL_V, status:VALID, product: OKC - Contracts Core , implementation_dba_data: APPS.OKC_K_HEADERS_ALL_V ,
-
View: OKL_VP_AGREEMENT_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_VP_AGREEMENT_UV, object_name:OKL_VP_AGREEMENT_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_VP_AGREEMENT_UV ,
-
View: OKC_K_HEADERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_HEADERS_ALL_V, object_name:OKC_K_HEADERS_ALL_V, status:VALID, product: OKC - Contracts Core , implementation_dba_data: APPS.OKC_K_HEADERS_ALL_V ,
-
View: OKC_K_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_HEADERS_V, object_name:OKC_K_HEADERS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_CONTRACT_HEADERS_B , implementation_dba_data: APPS.OKC_K_HEADERS_V ,
-
View: OKC_K_HEADERS_HV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_HEADERS_HV, object_name:OKC_K_HEADERS_HV, status:VALID, product: OKC - Contracts Core , description: History view for OKC_K_HEADERS. , implementation_dba_data: APPS.OKC_K_HEADERS_HV ,
-
View: OKC_K_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_HEADERS_V, object_name:OKC_K_HEADERS_V, status:VALID, product: OKC - Contracts Core , description: View for table OKC_CONTRACT_HEADERS_B , implementation_dba_data: APPS.OKC_K_HEADERS_V ,
-
View: OKC_K_HEADERS_ALL_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_HEADERS_ALL_HV, object_name:OKC_K_HEADERS_ALL_HV, status:VALID, product: OKC - Contracts Core , implementation_dba_data: APPS.OKC_K_HEADERS_ALL_HV ,
-
View: OKC_K_HEADERS_ALL_HV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_HEADERS_ALL_HV, object_name:OKC_K_HEADERS_ALL_HV, status:VALID, product: OKC - Contracts Core , implementation_dba_data: APPS.OKC_K_HEADERS_ALL_HV ,
-
View: OKC_K_HEADERS_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_K_HEADERS_HV, object_name:OKC_K_HEADERS_HV, status:VALID, product: OKC - Contracts Core , description: History view for OKC_K_HEADERS. , implementation_dba_data: APPS.OKC_K_HEADERS_HV ,
-
VIEW: OKC.OKC_K_HEADERS_ALL_BH#
12.2.2
owner:OKC, object_type:VIEW, object_name:OKC_K_HEADERS_ALL_BH#, status:VALID,
-
VIEW: OKC.OKC_K_HEADERS_ALL_B#
12.2.2
owner:OKC, object_type:VIEW, object_name:OKC_K_HEADERS_ALL_B#, status:VALID,
-
VIEW: APPS.OKC_K_HEADERS_HV
12.1.1
-
VIEW: APPS.OKC_K_HEADERS_HV
12.2.2