Search Results mtl_item_revisions
Overview
APPS.BOM_BILL_NO_HOLD_REVISIONS_V is a reporting view in Oracle EBS Bills of Material (BOM) that exposes item revision records which are not placed on engineering hold. It is derived primarily from MTL_ITEM_REVISIONS, joined to ENG_REVISED_ITEMS to filter out revisions whose engineering change status indicates a hold (STATUS_TYPE = 2). The view is commonly used in engineering, manufacturing, and planning reporting where only active, non-held revisions should be considered for effectivity, implementation, and revision sequencing.
The view is identified in ETRM metadata as owned by APPS and is available in both 12.1.1 and 12.2.2. Its name — "NO_HOLD_REVISIONS" — directly reflects its filtering logic, which excludes records where the associated engineering revised item has an engineering hold status. This makes it suitable for integration and reporting scenarios requiring clean revision data without engineering change holds.
Underlying Base Objects
The view is defined over two documented base objects (as SYNONYMs in APPS schema):
- MTL_ITEM_REVISIONS — Stores revision definitions per inventory item and organization, including revision label, effectivity date, and implementation date.
- ENG_REVISED_ITEMS — Engineering change revised items, providing STATUS_TYPE to identify revisions under engineering hold. STATUS_TYPE = 2 indicates a hold status, and such records are excluded by the view.
The view aliases MTL_ITEM_REVISIONS as MIR/MIR2 and ENG_REVISED_ITEMS as ERI/ERI2, using self-joins to compute the next revision's effectivity window. Outer joins (+) are used on ERI and MIR2 so that items without a matching engineering revised item or subsequent revision are still included, with NVL handling for a status of 0 when no hold is recorded.
Key Columns
The view exposes the following important columns:
- INVENTORY_ITEM_ID — Item identifier joining to MTL_SYSTEM_ITEMS_B.
- ORGANIZATION_ID — Organization context for the revision.
- REVISION — Revision label (e.g., 'A', 'B').
- EFFECTIVITY_DATE — Date the revision becomes effective.
- IMPLEMENTATION_DATE — Date the revision was implemented; drives a DECODE producing 1 (implemented) or 2 (not implemented).
- Derived effectivity end — An NVL/MIN expression computing the end of effectivity as either the next revision's effectivity date minus one second, or GREATEST(SYSDATE, EFFECTIVITY_DATE) if no later revision exists.
Common Use Cases and Queries
Typical usage includes identifying currently effective, non-held revisions for an item or organization, and building revision history reports. A common query pattern:
SELECT inventory_item_id, organization_id, revision, effectivity_date, implementation_date FROM apps.bom_bill_no_hold_revisions_v WHERE inventory_item_id = :item_id AND organization_id = :org_id ORDER BY effectivity_date;
Because the user search referenced mtl_item_revisions, this view is frequently discovered when developers need revision data but must exclude engineering holds — an operation not possible directly from MTL_ITEM_REVISIONS without joining ENG_REVISED_ITEMS and filtering STATUS_TYPE <> 2. The view therefore serves as a convenient, pre-filtered alternative for reports, concurrent programs, and integration extracts that require only non-held revision records.
-
VIEW: APPS.BOM_BILL_NO_HOLD_REVISIONS_V
12.2.2
-
VIEW: APPS.BOM_BILL_NO_HOLD_REVISIONS_V
12.1.1
-
VIEW: APPS.CLN_INV_ITEM_REVISIONS_V
12.1.1
-
VIEW: APPS.CLN_INV_ITEM_REVISIONS_V
12.2.2
-
VIEW: APPS.CLN_ITEMMST_ITEMHEADER_V
12.1.1
-
VIEW: APPS.GMF_XLA_ITEM_REVISIONS_V
12.2.2
-
VIEW: APPS.CST_XLA_INV_ITEM_REVS_REF_V
12.1.1
-
VIEW: APPS.GMF_XLA_ITEM_REVISIONS_V
12.1.1
-
VIEW: APPS.CLN_ITEMMST_ITEMHEADER_V
12.2.2
-
VIEW: APPS.CST_XLA_INV_ITEM_REVS_REF_V
12.2.2
-
VIEW: APPS.EDW_ITEMS_ITEM_REV_FKV
12.1.1
-
VIEW: APPS.MTL_ITEM_REVISIONS_ORG_VAL_V
12.2.2
-
APPS.ENG_ENGRCNDR_XMLP_PKG SQL Statements
12.1.1
-
APPS.ENG_ENGRCNDR_XMLP_PKG SQL Statements
12.2.2
-
VIEW: APPS.MTL_ITEM_REVISIONS_ORG_VAL_V
12.1.1
-
VIEW: APPS.ENG_REVISED_COMPONENTS_ERV
12.1.1
-
VIEW: APPS.ENG_REVISED_COMPONENTS_ERV
12.2.2
-
VIEW: APPS.ENG_IMPACTED_BILLS_ERV
12.1.1
-
VIEW: APPS.ENG_IMPACTED_BILLS_ERV
12.2.2
-
VIEW: APPS.INVBV_ORG_ITEM_REVISIONS
12.1.1
-
VIEW: APPS.INVFV_ITEM_REVISIONS
12.1.1
-
VIEW: APPS.INVFV_ITEM_REVISIONS
12.2.2
-
VIEW: APPS.INVBV_ORG_ITEM_REVISIONS
12.2.2
-
VIEW: APPS.INVFV_ORG_ITEM_REVISIONS
12.1.1
-
VIEW: APPS.INVBV_ITEM_REVISIONS
12.1.1
-
VIEW: APPS.INVFV_ORG_ITEM_REVISIONS
12.2.2
-
VIEW: APPS.INVBV_ITEM_REVISIONS
12.2.2
-
VIEW: APPS.EDWBV_ITEM_ITEMREV_LCV
12.1.1
-
View: BOM_BILL_NO_HOLD_REVISIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_BILL_NO_HOLD_REVISIONS_V, object_name:BOM_BILL_NO_HOLD_REVISIONS_V, status:VALID, product: BOM - Bills of Material , description: Item revisions not on hold , implementation_dba_data: APPS.BOM_BILL_NO_HOLD_REVISIONS_V ,
-
View: BOM_BILL_NO_HOLD_REVISIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_BILL_NO_HOLD_REVISIONS_V, object_name:BOM_BILL_NO_HOLD_REVISIONS_V, status:VALID, product: BOM - Bills of Material , description: Item revisions not on hold , implementation_dba_data: APPS.BOM_BILL_NO_HOLD_REVISIONS_V ,
-
VIEW: APPS.BOM_BILL_OF_MATERIALS_ERV
12.1.1
-
VIEW: APPS.BOM_BILL_OF_MATERIALS_ERV
12.2.2
-
VIEW: APPS.BOMBV_BOM_REVISIONS
12.2.2
-
VIEW: APPS.BOMBV_BOM_REVISIONS
12.1.1
-
APPS.PO_ORGS_SV2 SQL Statements
12.2.2
-
APPS.PO_ORGS_SV2 SQL Statements
12.1.1
-
VIEW: APPS.CLN_INVENTORY_REPORT_V
12.2.2
-
VIEW: APPS.CLN_INVENTORY_REPORT_V
12.1.1
-
View: ENG_REVISED_COMPONENTS_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_COMPONENTS_ERV, object_name:ENG_REVISED_COMPONENTS_ERV, status:VALID, product: ENG - Engineering , description: Pending, implemented, and cancelled revised components , implementation_dba_data: APPS.ENG_REVISED_COMPONENTS_ERV ,
-
View: ENG_REVISED_COMPONENTS_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_COMPONENTS_ERV, object_name:ENG_REVISED_COMPONENTS_ERV, status:VALID, product: ENG - Engineering , description: Pending, implemented, and cancelled revised components , implementation_dba_data: APPS.ENG_REVISED_COMPONENTS_ERV ,
-
PACKAGE BODY: APPS.MTL_ITEM_REVISIONS_SV1
12.1.1
-
View: CLN_ITEMMST_ITEMHEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_ITEMMST_ITEMHEADER_V, object_name:CLN_ITEMMST_ITEMHEADER_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View for the Header section of the Sync Item XML message , implementation_dba_data: APPS.CLN_ITEMMST_ITEMHEADER_V ,
-
View: CLN_ITEMMST_ITEMHEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_ITEMMST_ITEMHEADER_V, object_name:CLN_ITEMMST_ITEMHEADER_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View for the Header section of the Sync Item XML message , implementation_dba_data: APPS.CLN_ITEMMST_ITEMHEADER_V ,
-
APPS.POS_UTIL_PKG SQL Statements
12.1.1
-
APPS.MTL_ITEM_REVISIONS_SV1 SQL Statements
12.1.1
-
APPS.POS_UTIL_PKG SQL Statements
12.2.2
-
VIEW: APPS.EDWBV_ITEM_ITEMREV_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.EDWBV_ITEM_ITEMREV_LCV, object_name:EDWBV_ITEM_ITEMREV_LCV, status:VALID,
-
View: CLN_INV_ITEM_REVISIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CLN.CLN_INV_ITEM_REVISIONS_V, object_name:CLN_INV_ITEM_REVISIONS_V, status:VALID, product: CLN - Supply Chain Trading Connector for RosettaNet , description: View to be used for value-sets used in 4C1 concurrent program , implementation_dba_data: APPS.CLN_INV_ITEM_REVISIONS_V ,
-
View: CST_XLA_INV_ITEM_REVS_REF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_INV_ITEM_REVS_REF_V, object_name:CST_XLA_INV_ITEM_REVS_REF_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_XLA_INV_ITEM_REVS_REF_V ,
-
View: CST_XLA_INV_ITEM_REVS_REF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_INV_ITEM_REVS_REF_V, object_name:CST_XLA_INV_ITEM_REVS_REF_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_XLA_INV_ITEM_REVS_REF_V ,