Search Results oe_related_items_mv
Overview
OE_RELATED_ITEMS_MV is a read-only view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It is part of the ONT (Order Management) product family and exposes item relationship data — substitutes, related items, and cross-sell or up-sell associations — in a form suitable for order entry, pricing, and integration reporting. The view consolidates relationship definitions, item descriptive attributes, unit of measure, and list price into a single flat structure keyed by organization and inventory item. Because it joins to master organization parameters and joins MTL_SYSTEM_ITEMS_B to the current organization, it returns item relationships only for organizations that are enabled and mapped to the master organization, which keeps its output consistent with the operating units where Order Management transactions are processed. In practice the view serves as a reporting and validation surface for downstream logic that must resolve an ordered item to its valid substitutes or related items without re-implementing the relationship and lookup join logic.
Underlying Base Objects
The view is defined over six documented objects:
- MTL_RELATED_ITEMS_VIEW — supplies the core relationship rows (inventory item, related item, relationship type, reciprocal flag).
- OE_ITEMS_ORD_MV — a materialized view supplying item identifier, description, and organization context; the join enforces
ITEM_IDENTIFIER_TYPE = 'INT'. - MTL_SYSTEM_ITEMS_B — referenced as a synonym; provides primary UOM, list price, customer-order-enabled flag, and BOM item type.
- MTL_PARAMETERS — a synonym providing the master organization relationship used to align REL.ORGANIZATION_ID with MP.MASTER_ORGANIZATION_ID.
- MFG_LOOKUPS — resolves RELATIONSHIP_TYPE_ID against the
MTL_RELATIONSHIP_TYPESlookup type, filtering on enabled flag, effective dates, and exclusion of lookup code 14. - OE_ITORD_UTIL — the Order Management utility package documented as a referenced object, typically used for item validation and attribute derivation.
Joins are driven from MTL_RELATED_ITEMS_VIEW through the lookup table, OE_ITEMS_ORD_MV, MTL_SYSTEM_ITEMS_B, and finally MTL_PARAMETERS, so an item that lacks a current organization or master organization mapping will not appear.
Key Columns
- ORGANIZATION_ID — the operating organization context for the relationship and item.
- INVENTORY_ITEM_ID / RELATED_ITEM_ID — the ordered item and its associated item.
- RELATIONSHIP_TYPE_ID / RELATIONSHIP_TYPE — the relationship code and its decoded lookup meaning.
- RECIPROCAL_FLAG — indicates whether the relationship is bidirectional.
- RELATED_ITEM_DESCRIPTION / RELATED_ITEM — description and identifier of the related item.
- UOM / UNIT_PRICE — primary UOM code and list price per unit from MTL_SYSTEM_ITEMS_B.
- SUBSTITUTION_TYPE — derived via DECODE; returns 'R' for relationship type IDs 2, 4, and 8, otherwise 'A'.
- CUSTOMER_ORDER_ENABLED_FLAG / BOM_ITEM_TYPE — orderability and bill-of-material classification of the item.
Common Use Cases and Queries
Typical scenarios include substitute item validation during order capture, related-item cross-sell reporting, and data-quality audits reconciling relationship definitions with item setup. Because the user search referenced mtl_system_items_b, the view is frequently used as a pre-joined alternative to querying item master plus relationship tables separately.
List substitutes for a given item in an organization:
SELECT related_item, related_item_description, substitution_type, unit_price FROM oe_related_items_mv WHERE organization_id = :org_id AND inventory_item_id = :item_id AND substitution_type = 'R';
Audit relationships for orderable items only:
SELECT inventory_item_id, related_item, relationship_type, uom FROM oe_related_items_mv WHERE organization_id = :org_id AND customer_order_enabled_flag = 'Y' ORDER BY inventory_item_id, related_item;
Join back to MTL_SYSTEM_ITEMS_B for additional attributes such as item status or planning flags when the view's exposed columns are insufficient.
-
View: OE_RELATED_ITEMS_MV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_RELATED_ITEMS_MV, object_name:OE_RELATED_ITEMS_MV, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_RELATED_ITEMS_MV ,
-
View: OE_RELATED_ITEMS_MV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_RELATED_ITEMS_MV, object_name:OE_RELATED_ITEMS_MV, status:VALID, product: ONT - Order Management , description: This view is based on the materialized view OE_RELATED_ITEMS_MV. This view displays all the Orderable Related items after taking the Orderability Rules into account. , implementation_dba_data: APPS.OE_RELATED_ITEMS_MV ,
-
PACKAGE: APPS.OE_ITORD_UTIL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OE_ITORD_UTIL, status:VALID,
-
PACKAGE: APPS.OE_ITORD_UTIL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OE_ITORD_UTIL, status:VALID,
-
VIEW: APPS.OE_RELATED_ITEMS_MV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_RELATED_ITEMS_MV, object_name:OE_RELATED_ITEMS_MV, status:VALID,
-
VIEW: APPS.OE_RELATED_ITEMS_MV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_RELATED_ITEMS_MV, object_name:OE_RELATED_ITEMS_MV, status:VALID,
-
VIEW: APPS.MTL_RELATED_ITEMS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RELATED_ITEMS_VIEW, object_name:MTL_RELATED_ITEMS_VIEW, status:VALID,
-
VIEW: APPS.MTL_RELATED_ITEMS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_RELATED_ITEMS_VIEW, object_name:MTL_RELATED_ITEMS_VIEW, status:VALID,
-
VIEW: APPS.OE_ITEMS_ORD_MV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ITEMS_ORD_MV, object_name:OE_ITEMS_ORD_MV, status:VALID,
-
VIEW: APPS.OE_ITEMS_ORD_MV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ITEMS_ORD_MV, object_name:OE_ITEMS_ORD_MV, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.MFG_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_B, status:VALID,
-
VIEW: APPS.MFG_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_B, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
eTRM - ONT Tables and Views
12.2.2
description: OM WorkFlow Activity Skip Log. ,
-
eTRM - ONT Tables and Views
12.1.1
description: OM WorkFlow Activity Skip Log. ,
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - INV Tables and Views
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - ONT Tables and Views
12.2.2
description: OM WorkFlow Activity Skip Log. ,
-
eTRM - ONT Tables and Views
12.1.1
description: OM WorkFlow Activity Skip Log. ,
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2