Search Results oe_items_ord_mv
Overview
OE_ITEMS_ORD_MV is an APPS-owned view within the Oracle Order Management (ONT) module, valid in both EBS 12.1.1 and 12.2.2. It is built directly on the materialized view OE_ITEMS_MV and, as its documented description states, "displays all the Orderable items after taking the Orderability Rules into account." In practical terms, the view answers the runtime question: given the current operating unit, customer, ship-to, order type, and sales context, which items may legitimately be entered on an order line?
The view is therefore a reporting and integration surface rather than a transactional table. Order Management's item validation engine consults this orderability logic when a user or interface attempts to add an item to an order. Downstream consumers — custom reports, order import interfaces, pricing engines, and configurators — can query OE_ITEMS_ORD_MV to reproduce the same visibility rules that the Order Management forms apply.
Underlying Base Objects
The documented base objects referenced by the view are:
- OE_ITEMS_MV (materialized view/table) — supplies the item master and descriptive attributes.
- OE_ITEM_ORDERABILITY (synonym) — the header-level orderability definition, filtered to item level (ITEM_LEVEL = 'I'), generally-available flag = 'N', and ENABLE_FLAG = 'Y'.
- OE_ITEM_ORDERABILITY_RULES (synonym) — the rule rows that qualify the header, matched by customer, customer class, customer category, region, order type, ship-to, sales channel, salesperson, end customer, bill-to, or deliver-to.
- OE_ITORD_UTIL (package) — supplies context at runtime through functions such as GET_OPERATING_UNIT_ID, GET_CUSTOMER_ID, GET_CUSTOMER_CLASS_ID, GET_CUSTOMER_CATEGORY_CODE, GET_REGION_IDS, GET_ORDER_TYPE_ID, GET_SHIP_TO_ORG_ID, GET_SALES_CHANNEL_CODE, GET_SALESREP_ID, GET_END_CUSTOMER_ID, GET_INVOICE_TO_ORG_ID, GET_DELIVER_TO_ORG_ID, and GET_ITEM_VALIDATION_ORG_ID.
The view joins OE_ITEM_ORDERABILITY to OE_ITEMS_MV and constrains item validation to the operating unit's organization and the user's language (LANGUAGE = USERENV('LANG')). Because the OE_ITORD_UTIL functions are session-context dependent, results vary by the environment in which the query executes.
Key Columns
- ITEM / ITEM_ID — the orderable item name and internal identifier.
- INVENTORY_ITEM_ID / INVENTORY_ITEM — the inventory-level item reference used to link to the order line.
- ITEM_DESCRIPTION — the item's descriptive text as presented to the user.
- ITEM_IDENTIFIER_TYPE — the identifier context (for example, internal name vs. cross-reference).
- SOLD_TO_ORG_ID / SITE_USE_ID — customer and site-use context for the orderability evaluation.
- ORGANIZATION_ID — the validation organization for the item.
- ITEM_STATUS / CROSS_REF_STATUS — status flags for the item and any cross-reference.
- ADDRESS / CUST_ADDRESS — address attributes carried from OE_ITEMS_MV.
- ITEM_DEFINITION_LEVEL / ITEM_DEFINITION_LEVEL_CODE — indicates whether the item is defined at master or organization level.
- RANK — ordering/priority value used to sequence results.
- LANGUAGE — the language context, restricted to USERENV('LANG').
- CATEGORY_ID — the item category reference.
- ORG_INDEPENDENT_FLAG — flags items defined independently of organization.
- CROSS_REF_ORG_ID — the organization associated with a cross-reference, where applicable.
Common Use Cases and Queries
Typical applications include validating whether an item is orderable for a specific customer before loading an order, diagnosing why an item does not appear in the Order Management item list, and reconciling orderability rule setups.
SELECT ITEM, ITEM_DESCRIPTION, INVENTORY_ITEM_ID, ORGANIZATION_ID
FROM APPS.OE_ITEMS_ORD_MV
WHERE INVENTORY_ITEM_ID = :p_inventory_item_id;
To list all orderable items currently visible for a given sold-to customer:
SELECT DISTINCT ITEM, ITEM_DESCRIPTION
FROM APPS.OE_ITEMS_ORD_MV
WHERE SOLD_TO_ORG_ID = :p_sold_to_org_id
ORDER BY ITEM;
Because the view invokes OE_ITORD_UTIL session functions, queries should be executed within the appropriate application context (for example, initialized via FND_GLOBAL) so that the operating unit, customer, and order-type values resolve correctly. For best performance, filter on INVENTORY_ITEM_ID or SOLD_TO_ORG_ID, and avoid unbounded full scans against OE_ITEMS_MV, which can be large. Note that references in older code to the single-table name OE_ITEMS_ORD_MV differ from OE_ITEMS_MV; the former applies rule filtering, while the latter does not.
-
View: 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, product: ONT - Order Management , description: This view is based on the materialized view OE_ITEMS_MV. This view displays all the Orderable items after taking the Orderability Rules into account. , implementation_dba_data: APPS.OE_ITEMS_ORD_MV ,
-
View: 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, product: ONT - Order Management , description: This view is based on the materialized view OE_ITEMS_MV. This view displays all the Orderable items after taking the Orderability Rules into account. , implementation_dba_data: APPS.OE_ITEMS_ORD_MV ,
-
VIEW: APPS.OE_RELATED_ITEMS_MV
12.1.1
-
VIEW: APPS.OE_RELATED_ITEMS_MV
12.2.2
-
SYNONYM: APPS.OE_ITEM_ORDERABILITY_RULES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_ITEM_ORDERABILITY_RULES, status:VALID,
-
SYNONYM: APPS.OE_ITEM_ORDERABILITY
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_ITEM_ORDERABILITY, status:VALID,
-
SYNONYM: APPS.OE_ITEM_ORDERABILITY
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OE_ITEM_ORDERABILITY, status:VALID,
-
SYNONYM: APPS.OE_ITEM_ORDERABILITY_RULES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OE_ITEM_ORDERABILITY_RULES, status:VALID,
-
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: 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: 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: 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 ,
-
TABLE: APPS.OE_ITEMS_MV
12.2.2
owner:APPS, object_type:TABLE, fnd_design_data:FND.OE_ITEMS_MV ONT.OE_ITEMS_MV, object_name:OE_ITEMS_MV, status:VALID,
-
TABLE: APPS.OE_ITEMS_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.OE_ITEMS_MV, object_name:OE_ITEMS_MV, 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
-
PACKAGE BODY: APPS.OE_ITORD_UTIL
12.1.1
-
PACKAGE BODY: APPS.OE_ITORD_UTIL
12.2.2
-
APPS.OE_ITORD_UTIL dependencies on WSH_REGIONS_SEARCH_PKG
12.1.1
-
APPS.OE_ITORD_UTIL dependencies on WSH_REGIONS_SEARCH_PKG
12.2.2
-
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. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
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 - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,