Search Results okx_quote_headers_v
Overview
The OKX_QUOTE_HEADERS_V view is a reporting and integration object owned by the APPS schema within the OKX – Contracts Integration product in Oracle E-Business Suite. It exposes quote header information sourced from Oracle Advanced Pricing / Oracle Quoting quote entities, presenting a flattened, denormalized projection intended for external consumption by contracts integration flows, interfaces, and downstream reporting. The view is documented as VALID in both Oracle EBS 12.1.1 and 12.2.2 and carries the standard ETRM classification of Oracle Proprietary, Confidential Information.
Because the view joins quote header data to quote status definitions, it delivers a business-ready representation of a quote—including its current effective status, financial totals, currency, pricing context, and the applicable exchange rate details—without requiring the consumer to reconcile the underlying transactional tables themselves. For users searching on exchange_rate_date, this view is the principal OKX exposure of that attribute in the quote header context.
Underlying Base Objects
The view is defined over two documented base objects, both referenced through synonyms in the APPS schema:
- ASO_QUOTE_HEADERS_ALL – aliased as
HDR, supplying the quote header transactional data. - ASO_QUOTE_STATUSES_B – aliased as
QS, supplying the quote status code and its effective date ranges.
The two objects are joined on the status identifier:
WHERE QS.QUOTE_STATUS_ID = HDR.QUOTE_STATUS_ID
The view also synthesizes two literal/derived columns: ID1 is set to HDR.QUOTE_HEADER_ID and ID2 is a literal '#'. A derived STATUS column is produced via DECODE(QS.STATUS_CODE, 'ACCEPTED', 'A', 'I'), mapping documented status codes to a single-character active/inactive flag. The status effective dates are exposed as START_DATE_ACTIVE and END_DATE_ACTIVE from QS.EFFECTIVE_START_DATE and QS.EFFECTIVE_END_DATE respectively.
Key Columns
- QUOTE_HEADER_ID (ID1) – Primary identifier of the quote header; the integration key used by downstream consumers.
- ORG_ID – Operating unit context for multi-org security and filtering.
- QUOTE_NUMBER / QUOTE_VERSION – Business-facing quote identifier and version tracking.
- CURRENCY_CODE – Transaction currency of the quote.
- EXCHANGE_RATE – The rate applied to convert the quote currency.
- EXCHANGE_RATE_DATE – The date on which the exchange rate is effective; the column most commonly searched by integration users validating currency conversion timing.
- EXCHANGE_TYPE_CODE – The rate type (for example, Corporate or Spot) governing rate selection.
- TOTAL_QUOTE_PRICE, TOTAL_LIST_PRICE, TOTAL_ADJUSTED_AMOUNT – Pricing totals for the quote.
- STATUS / B_STATUS – Derived active flag and the raw status code.
- CONTRACT_ID, ORDER_ID, PARTY_ID, CUST_ACCOUNT_ID – Cross-references to contracts, orders, and trading partners.
- PRICE_LIST_ID, INVOICING_RULE_ID, ORDER_TYPE_ID – Pricing and fulfillment context.
- QUOTE_EXPIRATION_DATE, LAST_UPDATE_DATE – Validity and audit timestamps.
Common Use Cases and Queries
Typical uses include extracting quote headers for contract creation, validating exchange rate application on quotes, and reporting accepted versus inactive quotes. A representative query retrieving quotes with their exchange rate date is:
SELECT quote_number, currency_code, exchange_rate, exchange_rate_date, exchange_type_code, total_quote_price FROM okx_quote_headers_v WHERE org_id = :p_org_id AND status = 'A';- Filter by
exchange_rate_date BETWEEN :start_date AND :end_dateto reconcile currency conversion periods. - Join
ID1to contract or order interfaces to propagate quote pricing into downstream documents.
-
View: OKX_QUOTE_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_QUOTE_HEADERS_V, object_name:OKX_QUOTE_HEADERS_V, status:VALID, product: OKX - Contracts Integration , description: Quote header information , implementation_dba_data: APPS.OKX_QUOTE_HEADERS_V ,
-
View: OKX_QUOTE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_QUOTE_HEADERS_V, object_name:OKX_QUOTE_HEADERS_V, status:VALID, product: OKX - Contracts Integration , description: Quote header information , implementation_dba_data: APPS.OKX_QUOTE_HEADERS_V ,
-
VIEW: APPS.OKC_REL_OBJ_QUOTE_HEADERS_V
12.1.1
-
VIEW: APPS.OKC_REL_OBJ_QUOTE_HEADERS_V
12.2.2
-
View: OKC_REL_OBJ_QUOTE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_REL_OBJ_QUOTE_HEADERS_V, object_name:OKC_REL_OBJ_QUOTE_HEADERS_V, status:VALID, product: OKC - Contracts Core , implementation_dba_data: APPS.OKC_REL_OBJ_QUOTE_HEADERS_V ,
-
View: OKC_REL_OBJ_QUOTE_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_REL_OBJ_QUOTE_HEADERS_V, object_name:OKC_REL_OBJ_QUOTE_HEADERS_V, status:VALID, product: OKC - Contracts Core , implementation_dba_data: APPS.OKC_REL_OBJ_QUOTE_HEADERS_V ,
-
PACKAGE: APPS.OKC_OC_INT_KTQ_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKC_OC_INT_KTQ_PVT, status:VALID,
-
PACKAGE: APPS.OKC_OC_INT_KTO_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKC_OC_INT_KTO_PVT, status:VALID,
-
PACKAGE: APPS.OKC_OC_INT_KTQ_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKC_OC_INT_KTQ_PVT, status:VALID,
-
PACKAGE: APPS.OKC_OC_INT_PRICING_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKC_OC_INT_PRICING_PVT, status:VALID,
-
PACKAGE: APPS.OKC_OC_INT_SALESCDT_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKC_OC_INT_SALESCDT_PVT, status:VALID,
-
PACKAGE: APPS.OKC_OC_INT_SALESCDT_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKC_OC_INT_SALESCDT_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKC_OC_INT_KTO_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_OC_INT_KTO_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKC_OC_INT_KTO_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_OC_INT_KTO_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKC_OC_INT_QTK_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_OC_INT_QTK_PVT, status:VALID,
-
PACKAGE: APPS.OKC_OC_INT_PUB
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKC_OC_INT_PUB, status:VALID,
-
APPS.OKC_CRJ_PVT SQL Statements
12.2.2
-
PACKAGE: APPS.OKC_OC_INT_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKC_OC_INT_PUB, status:VALID,
-
PACKAGE: APPS.IBE_QUOTE_SAVE_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IBE_QUOTE_SAVE_PVT, status:VALID,
-
PACKAGE: APPS.OKC_OC_INT_KTO_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKC_OC_INT_KTO_PVT, status:VALID,
-
PACKAGE: APPS.OKC_OC_INT_QTK_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKC_OC_INT_QTK_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKC_CRJ_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_CRJ_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKC_CRJ_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_CRJ_PVT, status:VALID,
-
PACKAGE: APPS.OKC_OC_INT_PRICING_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKC_OC_INT_PRICING_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKC_OC_INT_SALESCDT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_OC_INT_SALESCDT_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKC_OC_INT_SALESCDT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_OC_INT_SALESCDT_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKC_OC_INT_QTK_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_OC_INT_QTK_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKC_OC_INT_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_OC_INT_PUB, status:VALID,
-
PACKAGE: APPS.OKC_OC_INT_QTK_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKC_OC_INT_QTK_PVT, status:VALID,
-
PACKAGE: APPS.IBE_QUOTE_SAVE_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:IBE_QUOTE_SAVE_PVT, status:VALID,
-
APPS.OKC_CRJ_PVT SQL Statements
12.1.1
-
SYNONYM: APPS.ASO_QUOTE_STATUSES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:ASO_QUOTE_STATUSES_B, status:VALID,
-
PACKAGE BODY: APPS.OKC_OC_INT_PRICING_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_OC_INT_PRICING_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKC_OC_INT_PRICING_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_OC_INT_PRICING_PVT, status:VALID,
-
SYNONYM: APPS.ASO_QUOTE_STATUSES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:ASO_QUOTE_STATUSES_B, status:VALID,
-
VIEW: APPS.OKC_REL_OBJ_QUOTE_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_REL_OBJ_QUOTE_HEADERS_V, object_name:OKC_REL_OBJ_QUOTE_HEADERS_V, status:VALID,
-
VIEW: APPS.OKC_REL_OBJ_QUOTE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKC.OKC_REL_OBJ_QUOTE_HEADERS_V, object_name:OKC_REL_OBJ_QUOTE_HEADERS_V, status:VALID,
-
PACKAGE BODY: APPS.OKC_OC_INT_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_OC_INT_PUB, status:VALID,
-
PACKAGE BODY: APPS.OKC_OC_INT_KTQ_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_OC_INT_KTQ_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKC_OC_INT_KTQ_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKC_OC_INT_KTQ_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.IBE_QUOTE_SAVE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_QUOTE_SAVE_PVT, status:VALID,
-
PACKAGE BODY: APPS.IBE_QUOTE_SAVE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IBE_QUOTE_SAVE_PVT, status:VALID,
-
APPS.OKC_OC_INT_KTQ_PVT SQL Statements
12.1.1
-
APPS.OKC_OC_INT_KTQ_PVT SQL Statements
12.2.2
-
SYNONYM: APPS.ASO_QUOTE_HEADERS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:ASO_QUOTE_HEADERS_ALL, status:VALID,
-
VIEW: APPS.OKX_QUOTE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_QUOTE_HEADERS_V, object_name:OKX_QUOTE_HEADERS_V, status:VALID,