Search Results mtl_demand_omoe
Overview
APPS.MRPBV_FORECAST_CONSUMPTIONS is a read-only Oracle EBS view that reconciles forecast updates against actual sales order demand. It exposes the relationship between rows in MRP_FORECAST_UPDATES (the forecast consumption/update records produced by the planning engine) and the corresponding sales order demand rows held in MTL_DEMAND_OMOE, with additional descriptive context joined from SO_LINES_ALL and SO_HEADERS_ALL. In practice, the view answers the question: "which sales order line consumed, or was matched to, a given forecast update?" and returns the schedule date, quantities, and demand class associated with that match.
The view is defined with a WITH READ ONLY clause, confirming it is intended strictly for query and reporting, not for DML. It is a common investigative object when users search for "mtl_demand_omoe," since MTL_DEMAND_OMOE is one of its principal underlying synonyms. Typical consumers are forecast consumption reconciliation reports, order-versus-forecast variance analyses, and integration extracts that need to correlate planning forecast records back to order management source documents.
Underlying Base Objects
The view is defined over four objects that appear in the FROM clause: SO_HEADERS_ALL, SO_LINES_ALL, MTL_DEMAND_OMOE, and MRP_FORECAST_UPDATES. The documented referenced base objects also include the INV_DECIMALS_PUB, INV_SALESORDER, MRP_OE, and OE_INSTALL packages, which supply supporting logic or are invoked indirectly by the underlying objects and their triggers.
The joins are all outer joins anchored on MRP_FORECAST_UPDATES (FORUPD): UPDATE_SEQ_NUM matches MTL_DEMAND_OMOE.DEMAND_ID and LINE_NUM matches MTL_DEMAND_OMOE.USER_LINE_NUM. MTL_DEMAND_OMOE.DEMAND_SOURCE_LINE then relates to SO_LINES_ALL.LINE_ID, and SO_LINES_ALL.HEADER_ID relates to SO_HEADERS_ALL.HEADER_ID. Because these are (+) outer joins, forecast updates are preserved even when no matching demand or sales order line exists, which is essential for identifying unconsumed forecast entries.
Key Columns
- SALES_ORDER_SCHEDULE_DATE — schedule date carried on the forecast update, reflecting the sales order demand date used for consumption.
- SALES_ORDER_QUANTITY — the sales order quantity associated with the forecast update record.
- FORECAST_UPDATE_DATE — the date the forecast update was processed.
- UPDATE_QUANTITY — the quantity applied against the forecast by the update record.
- DEMAND_CLASS — classification of the demand, used to segregate forecast consumption categories.
- TRANSACTION_ID — identifier of the transaction tied to the forecast update, useful for traceability.
- LINE_ID — the SO_LINES_ALL line identifier of the matched sales order line.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY — standard audit columns reflecting the most recent change to the forecast update row.
Common Use Cases and Queries
The view is most often queried to reconcile forecast consumption against sales order schedules and to locate sales order lines for a given forecast update. A representative query retrieves recent consumption records for a demand class:
SELECT sales_order_schedule_date,
sales_order_quantity,
update_quantity,
demand_class,
transaction_id,
line_id
FROM apps.mrpbv_forecast_consumptions
WHERE demand_class = :p_demand_class
AND forecast_update_date >= :p_from_date;
Because the view is read-only, it is safe to embed in custom reports. Note that the ORGANIZATION_ID filter is applied via the internal security predicate ('_SEC:FORUPD.ORGANIZATION_ID' IS NOT NULL), so results are constrained by the operating unit/organization context of the session. When MTL_DEMAND_OMOE rows are absent, the outer join yields nulls for line and header attributes — a pattern frequently used to identify forecast updates that were never matched to order demand.
-
VIEW: APPS.MRPBV_FORECAST_CONSUMPTIONS
12.1.1
-
VIEW: APPS.MRPBV_MDS_CONSUMPTIONS
12.1.1
-
VIEW: APPS.MRPFV_FORECAST_CONSUMPTIONS
12.1.1
-
VIEW: APPS.MRPBV_MDS_CONSUMPTIONS
12.2.2
-
VIEW: APPS.MRPBV_FORECAST_CONSUMPTIONS
12.2.2
-
VIEW: APPS.MRPFV_FORECAST_CONSUMPTIONS
12.2.2
-
VIEW: APPS.MRPBV_MDS_ENTRIES
12.1.1
-
VIEW: APPS.MRPBV_MDS_ENTRIES
12.2.2
-
SYNONYM: APPS.MTL_DEMAND_OMOE
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_DEMAND_OMOE, status:VALID,
-
SYNONYM: APPS.MTL_DEMAND_OMOE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_DEMAND_OMOE, status:VALID,
-
View: MRPBV_FORECAST_CONSUMPTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_FORECAST_CONSUMPTIONS, object_name:MRPBV_FORECAST_CONSUMPTIONS, status:VALID, product: MRP - Master Scheduling/MRP , implementation_dba_data: APPS.MRPBV_FORECAST_CONSUMPTIONS ,
-
View: MRPFV_FORECAST_CONSUMPTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_FORECAST_CONSUMPTIONS, object_name:MRPFV_FORECAST_CONSUMPTIONS, status:VALID, product: MRP - Master Scheduling/MRP , implementation_dba_data: APPS.MRPFV_FORECAST_CONSUMPTIONS ,
-
View: MRPBV_MDS_CONSUMPTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_MDS_CONSUMPTIONS, object_name:MRPBV_MDS_CONSUMPTIONS, status:VALID, product: MRP - Master Scheduling/MRP , implementation_dba_data: APPS.MRPBV_MDS_CONSUMPTIONS ,
-
VIEW: APPS.MRPFV_MDS_ENTRIES
12.1.1
-
VIEW: APPS.MRPFV_MDS_ENTRIES
12.2.2
-
View: MRPFV_FORECAST_CONSUMPTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_FORECAST_CONSUMPTIONS, object_name:MRPFV_FORECAST_CONSUMPTIONS, status:VALID, product: MRP - Master Scheduling/MRP , implementation_dba_data: APPS.MRPFV_FORECAST_CONSUMPTIONS ,
-
View: MRP_SO_UPDATES_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_SO_UPDATES_SUMMARY_V, object_name:MRP_SO_UPDATES_SUMMARY_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Sales order summary view , implementation_dba_data: APPS.MRP_SO_UPDATES_SUMMARY_V ,
-
View: MRPBV_MDS_CONSUMPTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_MDS_CONSUMPTIONS, object_name:MRPBV_MDS_CONSUMPTIONS, status:VALID, product: MRP - Master Scheduling/MRP , implementation_dba_data: APPS.MRPBV_MDS_CONSUMPTIONS ,
-
View: MRPBV_FORECAST_CONSUMPTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_FORECAST_CONSUMPTIONS, object_name:MRPBV_FORECAST_CONSUMPTIONS, status:VALID, product: MRP - Master Scheduling/MRP , implementation_dba_data: APPS.MRPBV_FORECAST_CONSUMPTIONS ,
-
PACKAGE BODY: APPS.GMPMPACT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMPMPACT, status:VALID,
-
PACKAGE BODY: APPS.MRP_MANAGER_PK
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MRP_MANAGER_PK, status:VALID,
-
PACKAGE BODY: APPS.MRP_MANAGER_PK
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MRP_MANAGER_PK, status:VALID,
-
View: MRPBV_MDS_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_MDS_ENTRIES, object_name:MRPBV_MDS_ENTRIES, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPBV_MDS_ENTRIES ,
-
PACKAGE BODY: APPS.MRP_HORIZONTAL_PLAN_SC
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MRP_HORIZONTAL_PLAN_SC, status:VALID,
-
View: MRP_SO_UPDATES_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_SO_UPDATES_SUMMARY_V, object_name:MRP_SO_UPDATES_SUMMARY_V, status:VALID, product: MRP - Master Scheduling/MRP , description: Sales order summary view , implementation_dba_data: APPS.MRP_SO_UPDATES_SUMMARY_V ,
-
VIEW: APPS.MRPBV_MDS_CONSUMPTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_MDS_CONSUMPTIONS, object_name:MRPBV_MDS_CONSUMPTIONS, status:VALID,
-
PACKAGE BODY: APPS.GMPMPACT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMPMPACT, status:VALID,
-
VIEW: APPS.MRPFV_FORECAST_CONSUMPTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_FORECAST_CONSUMPTIONS, object_name:MRPFV_FORECAST_CONSUMPTIONS, status:VALID,
-
VIEW: APPS.MRPFV_FORECAST_CONSUMPTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_FORECAST_CONSUMPTIONS, object_name:MRPFV_FORECAST_CONSUMPTIONS, status:VALID,
-
VIEW: APPS.MRPBV_FORECAST_CONSUMPTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_FORECAST_CONSUMPTIONS, object_name:MRPBV_FORECAST_CONSUMPTIONS, status:VALID,
-
PACKAGE BODY: APPS.MRP_EPI
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MRP_EPI, status:VALID,
-
PACKAGE BODY: APPS.MRP_EPI
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MRP_EPI, status:VALID,
-
VIEW: APPS.MRPBV_MDS_CONSUMPTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_MDS_CONSUMPTIONS, object_name:MRPBV_MDS_CONSUMPTIONS, status:VALID,
-
View: MRPBV_MDS_ENTRIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_MDS_ENTRIES, object_name:MRPBV_MDS_ENTRIES, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPBV_MDS_ENTRIES ,
-
PACKAGE BODY: APPS.MRP_HORIZONTAL_PLAN_SC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MRP_HORIZONTAL_PLAN_SC, status:VALID,
-
VIEW: APPS.MRPBV_FORECAST_CONSUMPTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_FORECAST_CONSUMPTIONS, object_name:MRPBV_FORECAST_CONSUMPTIONS, status:VALID,
-
VIEW: APPS.MRPBV_MDS_ENTRIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_MDS_ENTRIES, object_name:MRPBV_MDS_ENTRIES, status:VALID,
-
View: MRP_RHX_SALES_ORDERS_V
12.1.1
product: MRP - Master Scheduling/MRP , description: An Integration Toolkit view supporting information regarding the sales order demand for planned items. , implementation_dba_data: Not implemented in this database ,
-
View: MRPFV_MDS_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_MDS_ENTRIES, object_name:MRPFV_MDS_ENTRIES, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPFV_MDS_ENTRIES ,
-
View: MRPFV_MDS_ENTRIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_MDS_ENTRIES, object_name:MRPFV_MDS_ENTRIES, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPFV_MDS_ENTRIES ,
-
VIEW: APPS.MRPBV_MDS_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_MDS_ENTRIES, object_name:MRPBV_MDS_ENTRIES, status:VALID,
-
View: MRP_RHX_SALES_ORDERS_V
12.2.2
product: MRP - Master Scheduling/MRP , description: An Integration Toolkit view supporting information regarding the sales order demand for planned items. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.MRPFV_MDS_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_MDS_ENTRIES, object_name:MRPFV_MDS_ENTRIES, status:VALID,
-
VIEW: APPS.MTL_DEMAND_OM_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_DEMAND_OM_VIEW, object_name:MTL_DEMAND_OM_VIEW, status:VALID,
-
VIEW: APPS.MRPFV_MDS_ENTRIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_MDS_ENTRIES, object_name:MRPFV_MDS_ENTRIES, status:VALID,
-
VIEW: APPS.MTL_DEMAND_OM_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_DEMAND_OM_VIEW, object_name:MTL_DEMAND_OM_VIEW, status:VALID,
-
View: MRP_FLP_END_DEMAND_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_FLP_END_DEMAND_V, object_name:MRP_FLP_END_DEMAND_V, status:VALID, product: MRP - Master Scheduling/MRP , description: View of demand information for end assemblies , implementation_dba_data: APPS.MRP_FLP_END_DEMAND_V ,
-
View: MRP_FLP_END_DEMAND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_FLP_END_DEMAND_V, object_name:MRP_FLP_END_DEMAND_V, status:VALID, product: MRP - Master Scheduling/MRP , description: View of demand information for end assemblies , implementation_dba_data: APPS.MRP_FLP_END_DEMAND_V ,
-
VIEW: APPS.MRP_FLP_SUPPLY_DEMAND_V2
12.2.2
-
VIEW: APPS.MRP_FLP_SUPPLY_DEMAND_V2
12.1.1