Search Results process_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
-
VIEW: APPS.BOM_RTG_CURRENT_REV_VIEW
12.1.1
-
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: INV.MTL_RTG_ITEM_REVISIONS#
12.2.2
-
APPS.BOM_VALIDATE_RTG_REVISION SQL Statements
12.1.1
-
APPS.BOM_VALIDATE_RTG_REVISION SQL Statements
12.2.2
-
VIEW: APPS.MTL_ROUTING_REV_HIGHDATE_V
12.1.1
-
VIEW: APPS.BOM_ROUTING_REVISIONS_VIEW
12.1.1
-
APPS.B_RTG_REVS_PKG SQL Statements
12.1.1
-
VIEW: BOM.BOM_RTG_ITEM_REVISIONS_ARCHIV#
12.2.2
-
View: MTL_ROUTING_REV_HIGHDATE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ROUTING_REV_HIGHDATE_V, object_name:MTL_ROUTING_REV_HIGHDATE_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ROUTING_REV_HIGHDATE_V ,
-
View: MTL_ROUTING_REV_HIGHDATE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ROUTING_REV_HIGHDATE_V, object_name:MTL_ROUTING_REV_HIGHDATE_V, status:VALID, product: INV - Inventory , description: 10SC ONLY , implementation_dba_data: APPS.MTL_ROUTING_REV_HIGHDATE_V ,
-
VIEW: APPS.MTL_ROUTING_REV_HIGHDATE_V
12.2.2
-
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: APPS.BOM_ROUTING_REVISIONS_VIEW
12.2.2
-
View: BOM_ROUTING_REVISIONS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_ROUTING_REVISIONS_VIEW, object_name:BOM_ROUTING_REVISIONS_VIEW, status:VALID, product: BOM - Bills of Material , description: View of routing revisions with start and high dates , implementation_dba_data: APPS.BOM_ROUTING_REVISIONS_VIEW ,
-
APPS.B_RTG_REVS_PKG SQL Statements
12.2.2
-
APPS.BOM_ROUTINGREVISION_PVT SQL Statements
12.1.1
-
View: BOM_ROUTING_REVISIONS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_ROUTING_REVISIONS_VIEW, object_name:BOM_ROUTING_REVISIONS_VIEW, status:VALID, product: BOM - Bills of Material , description: View of routing revisions with start and high dates , implementation_dba_data: APPS.BOM_ROUTING_REVISIONS_VIEW ,
-
VIEW: INV.MTL_RTG_ITEM_REVS_INTERFACE#
12.2.2
-
VIEW: BOM.BOM_OP_ROUTINGS_INTERFACE#
12.2.2
-
APPS.BOM_REVISIONS SQL Statements
12.1.1
-
APPS.BOM_ROUTINGREVISION_PVT SQL Statements
12.2.2
-
APPS.BOM_RTG_REVISION_UTIL SQL Statements
12.2.2
-
PACKAGE BODY: APPS.B_RTG_REVS_PKG
12.1.1
-
PACKAGE BODY: APPS.B_RTG_REVS_PKG
12.2.2
-
VIEW: APPS.WIP_PCB_FLOW_ASSEMBLY_EVENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_PCB_FLOW_ASSEMBLY_EVENTS_V, object_name:WIP_PCB_FLOW_ASSEMBLY_EVENTS_V, status:VALID,
-
APPS.BOM_REVISIONS SQL Statements
12.2.2
-
APPS.BOM_RTG_REVISION_UTIL SQL Statements
12.1.1
-
VIEW: APPS.MTL_ROUTING_REV_HIGHDATE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ROUTING_REV_HIGHDATE_V, object_name:MTL_ROUTING_REV_HIGHDATE_V, status:VALID,
-
VIEW: APPS.WIP_PCB_FLOW_ASSEMBLIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_PCB_FLOW_ASSEMBLIES_V, object_name:WIP_PCB_FLOW_ASSEMBLIES_V, status:VALID,
-
VIEW: APPS.BOM_ROUTING_REVISIONS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_ROUTING_REVISIONS_VIEW, object_name:BOM_ROUTING_REVISIONS_VIEW, status:VALID,
-
VIEW: APPS.MTL_ROUTING_REV_HIGHDATE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_ROUTING_REV_HIGHDATE_V, object_name:MTL_ROUTING_REV_HIGHDATE_V, status:VALID,
-
VIEW: APPS.BOM_ROUTING_REVISIONS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_ROUTING_REVISIONS_VIEW, object_name:BOM_ROUTING_REVISIONS_VIEW, status:VALID,
-
VIEW: APPS.WIP_PCB_FLOW_ASSEMBLIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_PCB_FLOW_ASSEMBLIES_V, object_name:WIP_PCB_FLOW_ASSEMBLIES_V, status:VALID,
-
VIEW: APPS.WIP_PCB_FLOW_ASSEMBLY_EVENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_PCB_FLOW_ASSEMBLY_EVENTS_V, object_name:WIP_PCB_FLOW_ASSEMBLY_EVENTS_V, status:VALID,
-
VIEW: APPS.WIP_FLOW_ASSEMBLY_EVENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_FLOW_ASSEMBLY_EVENTS_V, object_name:WIP_FLOW_ASSEMBLY_EVENTS_V, status:VALID,
-
VIEW: APPS.WIP_FLOW_ASSEMBLIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_FLOW_ASSEMBLIES_V, object_name:WIP_FLOW_ASSEMBLIES_V, status:VALID,
-
VIEW: APPS.WIP_FLOW_ASSEMBLIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_FLOW_ASSEMBLIES_V, object_name:WIP_FLOW_ASSEMBLIES_V, status:VALID,
-
VIEW: INV.MTL_RTG_ITEM_REVISIONS#
12.2.2
owner:INV, object_type:VIEW, object_name:MTL_RTG_ITEM_REVISIONS#, status:VALID,
-
VIEW: BOM.BOM_RTG_ITEM_REVISIONS_ARCHIV#
12.2.2
owner:BOM, object_type:VIEW, object_name:BOM_RTG_ITEM_REVISIONS_ARCHIV#, status:VALID,
-
TABLE: INV.MTL_RTG_ITEM_REVISIONS
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_RTG_ITEM_REVISIONS, object_name:MTL_RTG_ITEM_REVISIONS, status:VALID,
-
VIEW: INV.MTL_RTG_ITEM_REVS_INTERFACE#
12.2.2
owner:INV, object_type:VIEW, object_name:MTL_RTG_ITEM_REVS_INTERFACE#, status:VALID,
-
TABLE: INV.MTL_RTG_ITEM_REVS_INTERFACE
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_RTG_ITEM_REVS_INTERFACE, object_name:MTL_RTG_ITEM_REVS_INTERFACE, status:VALID,
-
VIEW: APPS.WIP_FLOW_ASSEMBLY_EVENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_FLOW_ASSEMBLY_EVENTS_V, object_name:WIP_FLOW_ASSEMBLY_EVENTS_V, status:VALID,
-
Table: BOM_RTG_ITEM_REVISIONS_ARCHIVE
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_RTG_ITEM_REVISIONS_ARCHIVE, object_name:BOM_RTG_ITEM_REVISIONS_ARCHIVE, status:VALID, product: BOM - Bills of Material , description: Routing revisions archive , implementation_dba_data: BOM.BOM_RTG_ITEM_REVISIONS_ARCHIVE ,
-
Table: MTL_RTG_ITEM_REVISIONS
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_RTG_ITEM_REVISIONS, object_name:MTL_RTG_ITEM_REVISIONS, status:VALID, product: INV - Inventory , description: Routing revisions , implementation_dba_data: INV.MTL_RTG_ITEM_REVISIONS ,
-
TABLE: INV.MTL_RTG_ITEM_REVISIONS
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_RTG_ITEM_REVISIONS, object_name:MTL_RTG_ITEM_REVISIONS, status:VALID,
-
TABLE: INV.MTL_RTG_ITEM_REVS_INTERFACE
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_RTG_ITEM_REVS_INTERFACE, object_name:MTL_RTG_ITEM_REVS_INTERFACE, status:VALID,
-
Table: BOM_RTG_ITEM_REVISIONS_ARCHIVE
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_RTG_ITEM_REVISIONS_ARCHIVE, object_name:BOM_RTG_ITEM_REVISIONS_ARCHIVE, status:VALID, product: BOM - Bills of Material , description: Routing revisions archive , implementation_dba_data: BOM.BOM_RTG_ITEM_REVISIONS_ARCHIVE ,