Search Results oke_contract_header_id
Overview
APPS.PO_LINES_RELEASE_ITEMS_V is a supplementary view owned by the APPS schema in Oracle E-Business Suite, released under FND Design Data PO.PO_LINES_RELEASE_ITEMS_V. Its stated purpose is to simplify forms coding within the Purchasing module; Oracle explicitly warns that the view is not intended for direct query or data manipulation by customers, because its definition may change significantly across minor or major releases. In practice, the view presents purchasing document line and release information joined to item master and category attributes, giving a denormalized row per purchase order or release line. It is commonly encountered when reporting on committed amounts, negotiated pricing, and supplier-facing item details in the Procurement (PO) module on both EBS 12.1.1 and 12.2.2. The presence of the OKE_CONTRACT_HEADER_ID column links purchasing lines to Oracle Contracts (OKE) agreements, which is the reason this view surfaces in searches involving the term "oke_contract_header_id."
Underlying Base Objects
Per the documented ETRM metadata for 12.2.2, the view is defined over the following objects, all referenced through APPS synonyms:
- PO_LINES — the core Purchasing line table supplying line numbers, pricing, commitment, taxability, expiration, and closure attributes.
- MTL_SYSTEM_ITEMS_KFV — the key flexfield concatenated item view, providing ITEM, ITEM_DESCRIPTION, ITEM_ID, and revision context.
- MTL_CATEGORIES_KFV — the concatenated category key flexfield view supplying CATEGORY and the LINE_ITEM display value.
- FINANCIALS_SYSTEM_PARAMS_ALL — the financials system parameters table, used to derive organization-level defaults such as ORG_ID.
The dependency list also references APPS.FINANCIALS_SYSTEM_PA, indicating the view joins to financials system parameter data to resolve operating unit context for the returned lines.
Key Columns
- PO_HEADER_ID / PO_LINE_ID — primary keys identifying the owning document header and line; FROM_HEADER_ID and FROM_LINE_ID identify the source document when the line was created by referencing or copying.
- LINE_NUM / LINE_TYPE_ID — line sequence and line type, distinguishing goods, services, and other purchasing line categories.
- ITEM, ITEM_REVISION, ITEM_DESCRIPTION, ITEM_ID, VENDOR_PRODUCT_NUM — item and supplier item identification derived from MTL_SYSTEM_ITEMS_KFV and PO_LINES.
- COMMITTED_AMOUNT, QUANTITY_COMMITTED, UNIT_PRICE, LIST_PRICE_PER_UNIT, MARKET_PRICE, NOT_TO_EXCEED_PRICE — pricing and commitment values central to procurement reporting.
- OKE_CONTRACT_HEADER_ID — the Oracle Contracts header identifier associated with the line, enabling linkage between purchasing documents and contract agreements; this column is the direct answer to searches for "oke_contract_header_id" in this object.
- EXPIRATION_DATE, CLOSED_CODE, TAXABLE_FLAG, PRICE_BREAK_LOOKUP_CODE, UNIT_MEAS_LOOKUP_CODE — status, tax, pricing, and UOM reference attributes used in forms logic.
- CATEGORY, LINE_ITEM, ORG_ID — category flexfield, concatenated line-item display value, and operating unit identifier.
Common Use Cases and Queries
Typical uses include reviewing committed versus negotiated pricing on purchase lines, tracing lines back to their originating contracts through OKE_CONTRACT_HEADER_ID, and building item-level procurement reports. Although Oracle advises against querying the view directly, developers and analysts frequently do so in a read-only, reporting context.
A representative query retrieving contract-linked purchase lines is:
SELECT line_num, item, item_description, unit_price,
quantity_committed, committed_amount,
oke_contract_header_id, expiration_date, org_id
FROM apps.po_lines_release_items_v
WHERE oke_contract_header_id IS NOT NULL
AND org_id = :p_org_id;
A second query profiles pricing and commitment by category:
SELECT category, line_item, unit_price, committed_amount FROM apps.po_lines_release_items_v WHERE po_header_id = :p_po_header_id ORDER BY line_num;
Because the view is subject to change and is documented as forms-only, production integrations should prefer the underlying PO_LINES, MTL_SYSTEM_ITEMS_KFV, and MTL_CATEGORIES_KFV objects when stable, supported interfaces are required.
-
VIEW: APPS.PO_LINES_RELEASE_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_RELEASE_ITEMS_V, object_name:PO_LINES_RELEASE_ITEMS_V, status:VALID,
-
VIEW: APPS.PO_SGD_LINES_V
12.2.2
-
VIEW: APPS.PO_SGD_MOD_LINES_V
12.2.2
-
View: PO_SGD_MOD_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_SGD_MOD_LINES_V, object_name:PO_SGD_MOD_LINES_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_SGD_MOD_LINES_V ,
-
VIEW: APPS.PO_LINES_RELEASE_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_RELEASE_ITEMS_V, object_name:PO_LINES_RELEASE_ITEMS_V, status:VALID,
-
VIEW: APPS.PO_LINE_CHANGES_V
12.2.2
-
View: PO_SGD_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_SGD_LINES_V, object_name:PO_SGD_LINES_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_SGD_LINES_V ,
-
VIEW: PO.PO_LINES_ARCHIVE_ALL#
12.2.2
-
VIEW: PO.PO_LINES_ALL#
12.2.2
-
VIEW: PO.PO_LINES_DRAFT_ALL#
12.2.2
-
VIEW: PO.PO_REQUISITION_LINES_ALL#
12.2.2
-
VIEW: APPS.POBV_PLAN_PO_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PLAN_PO_LINES, object_name:POBV_PLAN_PO_LINES, status:VALID,
-
VIEW: APPS.POBV_PLAN_PO_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PLAN_PO_LINES, object_name:POBV_PLAN_PO_LINES, status:VALID,
-
View: PO_LINES_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_TRX_V, object_name:PO_LINES_TRX_V, status:VALID, product: PO - Purchasing , description: View on po_lines table. , implementation_dba_data: APPS.PO_LINES_TRX_V ,
-
VIEW: APPS.POFV_PLAN_PO_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_PLAN_PO_LINES, object_name:POFV_PLAN_PO_LINES, status:VALID,
-
VIEW: APPS.POBV_BKT_PO_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_BKT_PO_LINES, object_name:POBV_BKT_PO_LINES, status:VALID,
-
View: PO_REQUISITION_LINES_ALL_MRC_V
12.2.2
product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PO_LINES_DRAFT_DIFF_V
12.2.2
-
VIEW: APPS.PO_REQUISITION_LINES_CLM_V
12.2.2
-
VIEW: APPS.PO_LINES_TRX_V
12.2.2
-
View: PO_REQUISITION_LINES_ALL_MRC_V
12.1.1
product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.POFV_PLAN_PO_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_PLAN_PO_LINES, object_name:POFV_PLAN_PO_LINES, status:VALID,
-
View: PO_REQUISITION_LINES_MRC_V
12.2.2
product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: POBV_PLAN_PO_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PLAN_PO_LINES, object_name:POBV_PLAN_PO_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_PLAN_PO_LINES ,
-
View: PO_REQUISITION_LINES_MRC_V
12.1.1
product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.POBV_BKT_PO_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_BKT_PO_LINES, object_name:POBV_BKT_PO_LINES, status:VALID,
-
View: POBV_PLAN_PO_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PLAN_PO_LINES, object_name:POBV_PLAN_PO_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_PLAN_PO_LINES ,
-
VIEW: PO.PO_LINES_INTERFACE#
12.2.2
-
VIEW: APPS.POFV_BKT_PO_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_BKT_PO_LINES, object_name:POFV_BKT_PO_LINES, status:VALID,
-
VIEW: APPS.PO_LINES_DIFF_V
12.2.2
-
VIEW: PO.PO_REQUISITIONS_INTERFACE_ALL#
12.2.2
-
VIEW: APPS.POFV_BKT_PO_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_BKT_PO_LINES, object_name:POFV_BKT_PO_LINES, status:VALID,
-
View: POBV_STD_PO_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_STD_PO_LINES, object_name:POBV_STD_PO_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_STD_PO_LINES ,
-
View: POBV_STD_PO_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_STD_PO_LINES, object_name:POBV_STD_PO_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_STD_PO_LINES ,
-
View: POBV_PO_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PO_LINES, object_name:POBV_PO_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_PO_LINES ,
-
TYPE: APPS.PO_LINE_MOD_P_LOCK_ATTRS
12.2.2
owner:APPS, object_type:TYPE, object_name:PO_LINE_MOD_P_LOCK_ATTRS, status:VALID,
-
VIEW: APPS.POBV_PO_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PO_LINES, object_name:POBV_PO_LINES, status:VALID,
-
View: POBV_PO_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PO_LINES, object_name:POBV_PO_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_PO_LINES ,
-
View: POBV_BKT_PO_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_BKT_PO_LINES, object_name:POBV_BKT_PO_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_BKT_PO_LINES ,
-
View: PO_LINES_RELEASE_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_RELEASE_ITEMS_V, object_name:PO_LINES_RELEASE_ITEMS_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY , implementation_dba_data: APPS.PO_LINES_RELEASE_ITEMS_V ,
-
View: POBV_BKT_PO_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_BKT_PO_LINES, object_name:POBV_BKT_PO_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_BKT_PO_LINES ,
-
VIEW: APPS.PO_LINES_RFQQT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_RFQQT_V, object_name:PO_LINES_RFQQT_V, status:VALID,
-
VIEW: APPS.POBV_PO_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_PO_LINES, object_name:POBV_PO_LINES, status:VALID,
-
View: PO_LINES_RELEASE_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_RELEASE_ITEMS_V, object_name:PO_LINES_RELEASE_ITEMS_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY , implementation_dba_data: APPS.PO_LINES_RELEASE_ITEMS_V ,
-
VIEW: APPS.POBV_STD_PO_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_STD_PO_LINES, object_name:POBV_STD_PO_LINES, status:VALID,
-
VIEW: APPS.POBV_STD_PO_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_STD_PO_LINES, object_name:POBV_STD_PO_LINES, status:VALID,
-
VIEW: APPS.PO_LINES_RFQQT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_RFQQT_V, object_name:PO_LINES_RFQQT_V, status:VALID,
-
View: PO_LINES_RFQQT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_RFQQT_V, object_name:PO_LINES_RFQQT_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_LINES_RFQQT_V ,
-
View: PO_LINES_RFQQT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_RFQQT_V, object_name:PO_LINES_RFQQT_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_LINES_RFQQT_V ,
-
VIEW: APPS.POFV_PO_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_PO_LINES, object_name:POFV_PO_LINES, status:VALID,