Search Results current_revision
Overview
APPS.BOM_RTG_CURRENT_REV_VIEW is a reporting view in the Oracle E-Business Suite Applications schema (APPS) that resolves the currently effective routing revision for each organization and inventory item combination. The view is defined over the routing item revisions table and returns only a single row per organization/item pairing: the row whose effectivity date is the latest date on or before the current system date (SYSDATE), and, within that effectivity date, the highest process revision number. In this way the view answers the question "what routing revision is in force right now for this item in this organization?" without requiring callers to write the nested MAX subqueries themselves.
Because routing revision data is versioned by both effectivity date and process revision, consumers of the base table must otherwise evaluate two dimensions of currency. BOM_RTG_CURRENT_REV_VIEW encapsulates that logic, making it useful for reporting, concurrent programs, interfaces, and integrations that need a stable, single-row snapshot of the active routing revision. The view is read-only and exposes no data of its own; its behavior is entirely derived from the underlying table at query time, so results always reflect the current contents of the base table and the current database system date.
Underlying Base Objects
The view is defined exclusively over MTL_RTG_ITEM_REVISIONS, referenced in the APPS schema as a synonym. MTL_RTG_ITEM_REVISIONS stores routing revisions for items, keyed by organization, inventory item, process revision, and effectivity date. In the view text the table is aliased as MRIR and is referenced both in the outer query and in two correlated subqueries. The first subquery determines the maximum effectivity date for the same organization and item that is less than or equal to SYSDATE. The second subquery determines the maximum process revision for that organization, item, and effectivity date. A row is returned only when both conditions match. No other base objects, joins, or views participate in the definition.
Key Columns
- ORGANIZATION_ID — The inventory organization that owns the item and routing revision. Forms part of the effective key along with the item.
- INVENTORY_ITEM_ID — The inventory item for which the routing revision applies. Combined with ORGANIZATION_ID it identifies the item within the organization.
- PROCESS_REVISION — The routing (process) revision identifier. The view returns the maximum revision available for the selected effectivity date.
- EFFECTIVITY_DATE — The date on which the revision becomes effective. The view returns the latest such date not exceeding SYSDATE.
Common Use Cases and Queries
The view is typically used to report or drive processing against the active routing revision for an item, to validate that a revision exists before scheduling or costing work, or to feed downstream integrations that expect a single current revision per item.
To retrieve the current routing revision for a specific item in an organization:
SELECT organization_id, inventory_item_id, process_revision, effectivity_date FROM apps.bom_rtg_current_rev_view WHERE organization_id = :org_id AND inventory_item_id = :item_id;
To list current revisions across an organization:
SELECT inventory_item_id, process_revision, effectivity_date FROM apps.bom_rtg_current_rev_view WHERE organization_id = :org_id ORDER BY inventory_item_id;
Because the view filters on SYSDATE, revise revision records with future effectivity dates do not appear until their effectivity date arrives. Ensure the session's date and timezone context are appropriate for the reporting requirement.
-
VIEW: APPS.BOM_RTG_CURRENT_REV_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_RTG_CURRENT_REV_VIEW, object_name:BOM_RTG_CURRENT_REV_VIEW, status:VALID,
-
VIEW: APPS.BOM_ITEM_CURRENT_REV_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_ITEM_CURRENT_REV_VIEW, object_name:BOM_ITEM_CURRENT_REV_VIEW, status:VALID,
-
VIEW: APPS.BOM_RTG_CURRENT_REV_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_RTG_CURRENT_REV_VIEW, object_name:BOM_RTG_CURRENT_REV_VIEW, status:VALID,
-
VIEW: APPS.BOM_ITEM_CURRENT_REV_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_ITEM_CURRENT_REV_VIEW, object_name:BOM_ITEM_CURRENT_REV_VIEW, status:VALID,
-
VIEW: APPS.BOM_PLM_EXPLOSION_TEMP
12.2.2
-
VIEW: APPS.BOM_PLM_EXPLOSION_TEMP
12.1.1
-
View: BOM_PLM_EXPLOSION_TEMP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_PLM_EXPLOSION_TEMP, object_name:BOM_PLM_EXPLOSION_TEMP, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.BOM_PLM_EXPLOSION_TEMP ,
-
View: BOM_PLM_EXPLOSION_TEMP
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_PLM_EXPLOSION_TEMP, object_name:BOM_PLM_EXPLOSION_TEMP, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.BOM_PLM_EXPLOSION_TEMP ,
-
VIEW: APPS.BOM_COPY_EXPLOSIONS_V
12.2.2
-
View: BOM_RTG_CURRENT_REV_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_RTG_CURRENT_REV_VIEW, object_name:BOM_RTG_CURRENT_REV_VIEW, status:VALID, product: BOM - Bills of Material , description: Routing current revisions , implementation_dba_data: APPS.BOM_RTG_CURRENT_REV_VIEW ,
-
VIEW: APPS.BOM_COPY_EXPLOSIONS_V
12.1.1
-
View: BOM_RTG_CURRENT_REV_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_RTG_CURRENT_REV_VIEW, object_name:BOM_RTG_CURRENT_REV_VIEW, status:VALID, product: BOM - Bills of Material , description: Routing current revisions , implementation_dba_data: APPS.BOM_RTG_CURRENT_REV_VIEW ,
-
View: BOM_INVENTORY_COMPONENTS_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_INVENTORY_COMPONENTS_ERV, object_name:BOM_INVENTORY_COMPONENTS_ERV, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.BOM_INVENTORY_COMPONENTS_ERV ,
-
APPS.CSD_ESTIMATES_FROM_BOM_PVT SQL Statements
12.1.1
-
APPS.CSD_ESTIMATES_FROM_BOM_PVT SQL Statements
12.2.2
-
VIEW: BOM.BOM_EXPLOSIONS_ALL#
12.2.2
-
View: BOM_ITEM_CURRENT_REV_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_ITEM_CURRENT_REV_VIEW, object_name:BOM_ITEM_CURRENT_REV_VIEW, status:VALID, product: BOM - Bills of Material , description: Item current revisions , implementation_dba_data: APPS.BOM_ITEM_CURRENT_REV_VIEW ,
-
View: BOM_INVENTORY_COMPONENTS_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_INVENTORY_COMPONENTS_ERV, object_name:BOM_INVENTORY_COMPONENTS_ERV, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.BOM_INVENTORY_COMPONENTS_ERV ,
-
View: BOM_ITEM_CURRENT_REV_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_ITEM_CURRENT_REV_VIEW, object_name:BOM_ITEM_CURRENT_REV_VIEW, status:VALID, product: BOM - Bills of Material , description: Item current revisions , implementation_dba_data: APPS.BOM_ITEM_CURRENT_REV_VIEW ,
-
View: ENG_ENGINEERING_CHANGES_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_ENGINEERING_CHANGES_ERV, object_name:ENG_ENGINEERING_CHANGES_ERV, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENG_ENGINEERING_CHANGES_ERV ,
-
View: ENG_ENGINEERING_CHANGES_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_ENGINEERING_CHANGES_ERV, object_name:ENG_ENGINEERING_CHANGES_ERV, status:VALID, product: ENG - Engineering , implementation_dba_data: APPS.ENG_ENGINEERING_CHANGES_ERV ,
-
View: BOM_COPY_EXPLOSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_COPY_EXPLOSIONS_V, object_name:BOM_COPY_EXPLOSIONS_V, status:VALID, product: BOM - Bills of Material , description: View for Multi level copy structure , implementation_dba_data: APPS.BOM_COPY_EXPLOSIONS_V ,
-
View: BOM_COPY_EXPLOSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_COPY_EXPLOSIONS_V, object_name:BOM_COPY_EXPLOSIONS_V, status:VALID, product: BOM - Bills of Material , description: View for Multi level copy structure , implementation_dba_data: APPS.BOM_COPY_EXPLOSIONS_V ,
-
VIEW: APPS.BOM_INVENTORY_COMPONENTS_ERV
12.2.2
-
VIEW: APPS.BOM_INVENTORY_COMPONENTS_ERV
12.1.1
-
VIEW: APPS.BOM_OPERATIONAL_ROUTINGS_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OPERATIONAL_ROUTINGS_ERV, object_name:BOM_OPERATIONAL_ROUTINGS_ERV, status:VALID,
-
TABLE: CSD.CSD_BOM_EXPL_TEMP
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_BOM_EXPL_TEMP, object_name:CSD_BOM_EXPL_TEMP, status:VALID,
-
VIEW: APPS.BOM_OPERATIONAL_ROUTINGS_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OPERATIONAL_ROUTINGS_ERV, object_name:BOM_OPERATIONAL_ROUTINGS_ERV, status:VALID,
-
TABLE: CSD.CSD_BOM_EXPL_TEMP
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_BOM_EXPL_TEMP, object_name:CSD_BOM_EXPL_TEMP, status:VALID,
-
View: BOM_OPERATIONAL_ROUTINGS_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OPERATIONAL_ROUTINGS_ERV, object_name:BOM_OPERATIONAL_ROUTINGS_ERV, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.BOM_OPERATIONAL_ROUTINGS_ERV ,
-
VIEW: APPS.ENG_ENGINEERING_CHANGES_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_ENGINEERING_CHANGES_ERV, object_name:ENG_ENGINEERING_CHANGES_ERV, status:VALID,
-
VIEW: APPS.ENG_ENGINEERING_CHANGES_ERV
12.1.1
-
VIEW: APPS.ENG_ENGINEERING_CHANGES_ERV
12.2.2
-
View: BOM_OPERATIONAL_ROUTINGS_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OPERATIONAL_ROUTINGS_ERV, object_name:BOM_OPERATIONAL_ROUTINGS_ERV, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.BOM_OPERATIONAL_ROUTINGS_ERV ,
-
VIEW: APPS.ENG_ENGINEERING_CHANGES_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_ENGINEERING_CHANGES_ERV, object_name:ENG_ENGINEERING_CHANGES_ERV, status:VALID,
-
VIEW: APPS.BOM_PLM_EXPLOSION_TEMP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_PLM_EXPLOSION_TEMP, object_name:BOM_PLM_EXPLOSION_TEMP, status:VALID,
-
VIEW: APPS.BOM_PLM_EXPLOSION_TEMP
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_PLM_EXPLOSION_TEMP, object_name:BOM_PLM_EXPLOSION_TEMP, status:VALID,
-
VIEW: APPS.BOM_EXPL_INQUIRY_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPL_INQUIRY_VIEW, object_name:BOM_EXPL_INQUIRY_VIEW, status:VALID,
-
VIEW: APPS.BOM_EXPL_INQUIRY_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPL_INQUIRY_VIEW, object_name:BOM_EXPL_INQUIRY_VIEW, status:VALID,
-
VIEW: APPS.BOM_WS_EXPLOSIONS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, object_name:BOM_WS_EXPLOSIONS_ALL_V, status:VALID,
-
VIEW: BOM.BOM_EXPLOSIONS_ALL#
12.2.2
owner:BOM, object_type:VIEW, object_name:BOM_EXPLOSIONS_ALL#, status:VALID,
-
VIEW: APPS.BOM_IMPLOSIONS_V
12.2.2
-
VIEW: APPS.BOM_INVENTORY_COMPONENTS_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_INVENTORY_COMPONENTS_ERV, object_name:BOM_INVENTORY_COMPONENTS_ERV, status:VALID,
-
VIEW: APPS.BOM_INVENTORY_COMPONENTS_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_INVENTORY_COMPONENTS_ERV, object_name:BOM_INVENTORY_COMPONENTS_ERV, status:VALID,
-
TABLE: BOM.BOM_EXPLOSIONS_ALL
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_EXPLOSIONS_ALL, object_name:BOM_EXPLOSIONS_ALL, status:VALID,
-
VIEW: APPS.BOM_IMPLOSIONS_V
12.1.1
-
View: BOM_EXPL_INQUIRY_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPL_INQUIRY_VIEW, object_name:BOM_EXPL_INQUIRY_VIEW, status:VALID, product: BOM - Bills of Material , description: Indented bill of material for window , implementation_dba_data: APPS.BOM_EXPL_INQUIRY_VIEW ,
-
TABLE: BOM.BOM_EXPLOSIONS_ALL
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_EXPLOSIONS_ALL, object_name:BOM_EXPLOSIONS_ALL, status:VALID,
-
View: BOM_EXPL_INQUIRY_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPL_INQUIRY_VIEW, object_name:BOM_EXPL_INQUIRY_VIEW, status:VALID, product: BOM - Bills of Material , description: Indented bill of material for window , implementation_dba_data: APPS.BOM_EXPL_INQUIRY_VIEW ,
-
APPS.BOMPBXIN SQL Statements
12.2.2