Search Results source_forecast_name
Overview
APPS.MRPBV_MDS_ENTRIES is a Business Intelligence (BI) system view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2, registered under FND Design Data MRP.MRPBV_MDS_ENTRIES with a status of VALID. It presents the schedule entries belonging to a Master Demand Schedule (MDS) in Oracle Advanced Supply Chain Planning / Material Requirements Planning. Each row represents a demand entry for a given master demand schedule item, for a specified quantity, on a specified date. Because the object is a view rather than a table, it exposes already-joined and decoded information drawn from the base MDS tables and supporting utilities, making it suitable for reporting, extract, and integration use without requiring direct navigation of the underlying normalized structures.
Underlying Base Objects
The view is defined over a set of documented base objects. The schedule structure itself is sourced from MRP_SCHEDULE_ITEMS, which holds the item-level entries for a master demand schedule, while MRP_SCHEDULE_DATES supplies the bucket and date information associated with those entries. MRP_SCHEDULE_DESIGNATORS supplies the schedule designation (the named MDS, referenced in the SCHEDULE_NAME and SOURCE_SCHEDULE_NAME columns). Demand originating from sales orders is resolved through MTL_DEMAND_OMOE, with the packaged logic of MRP_OE and INV_SALESORDER handling order-management linkage, and OE_INSTALL guarding references to Order Management installation. Lookup decoding is provided by MFG_LOOKUPS, and numeric formatting by the package INV_DECIMALS_PUB. No database object is documented as referencing this view; it is a terminal, read-only reporting construct.
Key Columns
MDS_ENTRY_ID— Primary identifier of the master demand schedule entry.SCHEDULE_NAME— Name (designator) of the master demand schedule to which the entry belongs.SOURCE_SCHEDULE_NAME— Name of the originating or source schedule from which the entry was referenced, of particular interest to users tracing demand provenance.SCHEDULE_DATEandEND_DATE— Bucket start and end dates for the entry.CURRENT_QUANTITYandORIGINAL_QUANTITY— Present and originally loaded demand quantities, respectively.REPETITIVE_ITEM_DAILY_RATE— Daily rate used for repetitive manufacturing items.ORIGINATION_TYPE— Classification of how the demand entry was created (for example, manually entered or triggered by a sales order).INVENTORY_ITEM_IDandORGANIZATION_ID— Inventory item and the organization context of the entry.SOURCE_ORGANIZATION_ID— Organization from which the source demand originated.SOURCE_FORECAST_NAMEandFORECAST_ENTRY_ID— Forecast linkage when demand is forecast-derived.SALES_ORDER_LINE_ID— Sales order line linkage for order-driven demand.PROJECT_ID,TASK_ID,LINE_ID— Project and task associations for project-referenced demand.PLAN_SUPPLY_ID,COMMENTS,UNIT_NUMBER, and the standard audit columns (LAST_UPDATE_DATE,LAST_UPDATED_BY,CREATION_DATE,CREATED_BY).
Common Use Cases and Queries
Typical usage includes validating MDS loads, reconciling demand quantities by schedule and item, tracing the origin of a demand entry back to a source schedule, and extracting MDS data into planning or BI repositories. The following example lists all entries for a given schedule, filtered by source schedule name:
SELECT msa.schedule_name, msa.source_schedule_name, msa.schedule_date, msa.inventory_item_id, msa.current_quantity, msa.original_quantity, msa.origination_type FROM apps.mrpbv_mds_entries msa WHERE msa.schedule_name = :schedule_name AND msa.source_schedule_name = :source_schedule_name ORDER BY msa.schedule_date, msa.inventory_item_id;
A second common pattern aggregates current demand per item within a schedule for comparison against a source bucket:
SELECT inventory_item_id, SUM(current_quantity) AS total_qty FROM apps.mrpbv_mds_entries WHERE schedule_name = :schedule_name AND schedule_date BETWEEN :from_date AND :to_date GROUP BY inventory_item_id;
Because the view performs the joins to schedule dates, designators, and sales order demand internally, these queries avoid direct manipulation of the underlying MDS tables and remain stable across the 12.1.1 and 12.2.2 releases.
-
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: APPS.MRPBV_MPS_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_MPS_ENTRIES, object_name:MRPBV_MPS_ENTRIES, status:VALID,
-
VIEW: APPS.MRPBV_FORECAST_ENTRIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_FORECAST_ENTRIES, object_name:MRPBV_FORECAST_ENTRIES, status:VALID,
-
VIEW: APPS.MRPBV_FORECAST_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_FORECAST_ENTRIES, object_name:MRPBV_FORECAST_ENTRIES, status:VALID,
-
VIEW: APPS.MRPBV_MPS_ENTRIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_MPS_ENTRIES, object_name:MRPBV_MPS_ENTRIES, 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: 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.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.MRPFV_MPS_ENTRIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_MPS_ENTRIES, object_name:MRPFV_MPS_ENTRIES, status:VALID,
-
VIEW: APPS.MRPFV_MPS_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_MPS_ENTRIES, object_name:MRPFV_MPS_ENTRIES, status:VALID,
-
VIEW: APPS.MRPFV_FORECAST_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_FORECAST_ENTRIES, object_name:MRPFV_FORECAST_ENTRIES, status:VALID,
-
VIEW: APPS.MRPFV_FORECAST_ENTRIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_FORECAST_ENTRIES, object_name:MRPFV_FORECAST_ENTRIES, status:VALID,
-
View: MRPBV_MPS_ENTRIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_MPS_ENTRIES, object_name:MRPBV_MPS_ENTRIES, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPBV_MPS_ENTRIES ,
-
View: MRPBV_FORECAST_ENTRIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_FORECAST_ENTRIES, object_name:MRPBV_FORECAST_ENTRIES, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPBV_FORECAST_ENTRIES ,
-
View: MRPBV_FORECAST_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_FORECAST_ENTRIES, object_name:MRPBV_FORECAST_ENTRIES, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPBV_FORECAST_ENTRIES ,
-
View: MRPFV_MPS_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_MPS_ENTRIES, object_name:MRPFV_MPS_ENTRIES, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPFV_MPS_ENTRIES ,
-
View: MRPFV_FORECAST_ENTRIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_FORECAST_ENTRIES, object_name:MRPFV_FORECAST_ENTRIES, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPFV_FORECAST_ENTRIES ,
-
View: MRPBV_MPS_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_MPS_ENTRIES, object_name:MRPBV_MPS_ENTRIES, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPBV_MPS_ENTRIES ,
-
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 ,
-
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 ,
-
View: MRPFV_MPS_ENTRIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_MPS_ENTRIES, object_name:MRPFV_MPS_ENTRIES, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPFV_MPS_ENTRIES ,
-
View: MRPFV_FORECAST_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_FORECAST_ENTRIES, object_name:MRPFV_FORECAST_ENTRIES, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPFV_FORECAST_ENTRIES ,
-
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 ,
-
eTRM - MRP Tables and Views
12.2.2
description: Recommendations based on user criteria selected in MRP Planner WorkBench ,
-
eTRM - MRP Tables and Views
12.1.1
description: Recommendations based on user criteria selected in MRP Planner WorkBench ,