Search Results po_lines_release_items_v
Overview
PO_LINES_RELEASE_ITEMS_V is an APPS-owned database view in the Oracle E-Business Suite Purchasing (PO) module. The ETRM metadata designates it specifically for "10SC ONLY," indicating that its use is restricted to a particular implementation or localization scenario rather than being a general-purpose, cross-module reporting object. In EBS 12.1.1 and 12.2.2 the view maintains VALID status in the APPS schema and exposes a denormalized projection of purchase order lines joined to item and category key flexfield information.
Functionally, the view presents one row per open purchase order line that is tied to an inventory item, combining attributes from PO_LINES with descriptive flexfield concatenated segments for both items and categories. Where an item has been de-supported, the second branch of a UNION ALL returns the same line with null item and revision values while preserving category data. This construction makes the view useful for release-level and blanket agreement line reporting where a human-readable item and category description is required alongside transactional pricing and commitment amounts.
Underlying Base Objects
The view is defined over four documented base objects, all resolved through APPS synonyms: PO_LINES, MTL_SYSTEM_ITEMS_KFV, MTL_CATEGORIES_KFV, and FINANCIALS_SYSTEM_PARAMS_ALL. PO_LINES supplies the transactional line attributes — pricing, quantity, status, and header/line identifiers. MTL_SYSTEM_ITEMS_KFV provides the concatenated key flexfield description of the inventory item through MIS.CONCATENATED_SEGMENTS. MTL_CATEGORIES_KFV supplies the category flexfield concatenation via MCA.CONCATENATED_SEGMENTS, joined on CATEGORY_ID. FINANCIALS_SYSTEM_PARAMS_ALL anchors the item join by supplying the inventory organization, ensuring that the item description reflects the correct organization context.
The join logic enforces several filters: cancelled lines (CANCEL_FLAG = 'N' or null) are excluded, expired lines are filtered out via the expiration date comparison against SYSDATE, and lines with a CLOSED_CODE of 'FINALLY CLOSED' are removed. The item must be non-null and the organization context must match POL.ORG_ID.
Key Columns
- LINE_NUM, PO_HEADER_ID, PO_LINE_ID — identify the release line and its parent document.
- CONCATENATED_SEGMENTS (MIS) — the item flexfield description; returns null items through the UNION ALL branch.
- CONCATENATED_SEGMENTS (MCA) — the category flexfield description, present in both branches.
- ITEM_REVISION, ITEM_DESCRIPTION, ITEM_ID — item context; ITEM_ID is null in the second branch.
- QUANTITY_COMMITTED, COMMITTED_AMOUNT — commitment values for the line.
- UNIT_PRICE, LIST_PRICE_PER_UNIT, MARKET_PRICE, NOT_TO_EXCEED_PRICE — pricing attributes relevant to sourcing and approvals.
- EXPIRATION_DATE, CLOSED_CODE, CANCEL_FLAG — lifecycle and status controls.
- OKE_CONTRACT_HEADER_ID — links to Oracle Contracts where applicable.
- ORG_ID — operating unit context, aligned with the financial system parameters.
Common Use Cases and Queries
Typical applications include item-level line reporting for blanket releases, commitment analysis, and category flexfield-driven analytics. A representative query:
SELECT LINE_NUM, CONCATENATED_SEGMENTS, ITEM_DESCRIPTION, UNIT_PRICE, QUANTITY_COMMITTED FROM APPS.PO_LINES_RELEASE_ITEMS_V WHERE PO_HEADER_ID = :p_header_id ORDER BY LINE_NUM;
Because the view already resolves the MTL_CATEGORIES_KFV segments, it is commonly used where report authors searched for that object directly, avoiding a manual join to the category flexfield. Consumers should nevertheless be aware of the "10SC ONLY" designation and verify suitability before adopting it in a general production report or integration.
-
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: 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.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_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,
-
SYNONYM: APPS.MTL_CATEGORIES_KFV
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_CATEGORIES_KFV, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.MTL_CATEGORIES_KFV
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_CATEGORIES_KFV, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.PO_LINES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_LINES, status:VALID,
-
SYNONYM: APPS.FINANCIALS_SYSTEM_PARAMS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FINANCIALS_SYSTEM_PARAMS_ALL, status:VALID,
-
SYNONYM: APPS.PO_LINES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_LINES, status:VALID,
-
SYNONYM: APPS.FINANCIALS_SYSTEM_PARAMS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FINANCIALS_SYSTEM_PARAMS_ALL, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_KFV
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_KFV, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_KFV
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_KFV, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - PO Tables and Views
12.2.2
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - PO Tables and Views
12.2.2
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,