Search Results plan_supply_id
Overview
APPS.MRPBV_PLAN_DEMANDS is a Business Intelligence System (BIS) view in the Oracle E-Business Suite APPS schema, registered as FND Design Data object MRP.MRPBV_PLAN_DEMANDS. It exposes the demand side of a material plan — the gross requirements that a Master Production Schedule (MPS), Material Requirements Plan (MRP), or Distribution Requirements Plan (DRP) must satisfy for a given item. Each row represents a demand element (for example a sales order, a discrete manufacturing job component requirement, or a manually entered MDS entry) together with its scheduled and suggested due dates and quantities, as computed by the Oracle planning engine for a specific plan and organization. Because it is documented as a read-only BIS view, it is intended for reporting, ad hoc analysis, and integration rather than for transactional update. The view is not referenced by any other database object, so it functions as a terminal presentation layer. Users searching for plan_supply_id will find that the view surfaces PLAN_SUPPLY_ID as a denormalized linkage column, allowing demand records to be traced back to the supply element that the planning engine pegged against them.
Underlying Base Objects
The view is defined over a join of transactional and setup tables. The documented dependencies are MFG_LOOKUPS (itself a view, supplying order type and status decoding), MRP_PLANS, MRP_PLAN_ORGANIZATIONS, MRP_SYSTEM_ITEMS, MTL_SYSTEM_ITEMS, and MTL_PARAMETERS for plan, organization, and item context; MRP_GROSS_REQUIREMENTS as the principal demand fact source; MRP_RECOMMENDATIONS, MRP_SCHEDULE_DATES, and MRP_ITEM_WIP_ENTITIES for planning output such as suggested dates and WIP entity associations; MRP_ITEM_PURCHASE_ORDERS for buy-side detail; and MTL_SALES_ORDERS for sales order demand. In the documented 12.2.2 metadata, the referenced base objects resolve as synonyms (except MFG_LOOKUPS, which is a view), reflecting the ONT/Oracle Applications synonym layer over the underlying MRP and MTL tables. The view therefore inherits the planner run context: rows are meaningful only in the context of a completed plan identified by PLAN_NAME and ORGANIZATION_ID.
Key Columns
- PLAN_NAME — the MPS, MRP, or DRP plan the demand belongs to.
- ORDER_TYPE — the demand class (sales order, WIP component, MDS entry, etc.), decoded through MFG_LOOKUPS.
- SUGGESTED_DUE_DATE / OLD_DUE_DATE / NEW_DATE — the planner-recommended date, the original date, and the rescheduled date.
- QUANTITY_RATE / NEW_QUANTITY / ORIGINAL_QUANTITY_RATE — demanded quantity, revised quantity, and the pre-planning quantity.
- DAYS_FROM_TODAY — planner-relative horizon offset, useful for time-bucketed reporting.
- PLAN_DEMAND_ID — primary identifier of the demand record.
- PLAN_SUPPLY_ID — identifier of the supply element pegged to this demand, enabling demand-to-supply traceability.
- ORGANIZATION_ID, INVENTORY_ITEM_ID, SOURCE_ORGANIZATION_ID — planning organization, item, and supplying organization.
- PROJECT_ID, TASK_ID, LENDING_PROJECT_ID, LENDING_TASK_ID — project/task and project-lending context.
- MFG_ORDER_ID, MDS_ENTRY_ID — linkage to the originating work order or MDS entry.
- PLANNING_GROUP, UNIT_NUMBER, LAST_UNIT_COMPLETION_DATE — grouping and end-item completion attributes.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY — standard audit columns.
Common Use Cases and Queries
Typical uses include demand-versus-supply analysis, reschedule-in/reschedule-out reporting, and drill-down from a plan to pegged supplies. A simple plan-level demand listing:
SELECT plan_name, order_type, suggested_due_date, quantity_rate, days_from_today FROM apps.mrpbv_plan_demands WHERE plan_name = :plan AND organization_id = :org ORDER BY suggested_due_date;
To trace the supply pegged to a demand (the plan_supply_id search):
SELECT d.plan_demand_id, d.inventory_item_id, d.quantity_rate, d.plan_supply_id FROM apps.mrpbv_plan_demands d WHERE d.plan_supply_id IS NOT NULL AND d.plan_name = :plan;
For project-driven demand, filter on PROJECT_ID and TASK_ID; for sales order demand specifically, join MTL_SALES_ORDERS on the sales order identifier. Because the view is a BIS reporting object with no dependent database objects, it can be queried freely without impacting planning transactions.
-
VIEW: APPS.MRPBV_PLAN_DEMANDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_PLAN_DEMANDS, object_name:MRPBV_PLAN_DEMANDS, status:VALID,
-
VIEW: APPS.MRPBV_PLAN_EXCEPTION_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_PLAN_EXCEPTION_DETAILS, object_name:MRPBV_PLAN_EXCEPTION_DETAILS, 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.MRPFV_PLAN_PEGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_PEGS, object_name:MRPFV_PLAN_PEGS, status:VALID,
-
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_PLAN_PEGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_PLAN_PEGS, object_name:MRPBV_PLAN_PEGS, status:VALID,
-
VIEW: APPS.MRPBV_PLAN_PEGS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_PLAN_PEGS, object_name:MRPBV_PLAN_PEGS, 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.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_PLAN_DEMANDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_PLAN_DEMANDS, object_name:MRPBV_PLAN_DEMANDS, status:VALID,
-
VIEW: APPS.MRPBV_PLAN_EXCEPTION_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_PLAN_EXCEPTION_DETAILS, object_name:MRPBV_PLAN_EXCEPTION_DETAILS, status:VALID,
-
VIEW: APPS.MRPFV_PLAN_PEGS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_PEGS, object_name:MRPFV_PLAN_PEGS, status:VALID,
-
VIEW: APPS.MRPFV_PLAN_DEMANDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_DEMANDS, object_name:MRPFV_PLAN_DEMANDS, 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_PLAN_DEMANDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_DEMANDS, object_name:MRPFV_PLAN_DEMANDS, status:VALID,
-
VIEW: APPS.MRPFV_PLAN_EXCEPTION_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_EXCEPTION_DETAILS, object_name:MRPFV_PLAN_EXCEPTION_DETAILS, status:VALID,
-
VIEW: APPS.MRPFV_PLAN_EXCEPTION_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_EXCEPTION_DETAILS, object_name:MRPFV_PLAN_EXCEPTION_DETAILS, 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: APPS.MRPBV_PLAN_SUPPLIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_PLAN_SUPPLIES, object_name:MRPBV_PLAN_SUPPLIES, status:VALID,
-
VIEW: APPS.MRPBV_PLAN_SUPPLIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_PLAN_SUPPLIES, object_name:MRPBV_PLAN_SUPPLIES, status:VALID,
-
View: MRPBV_PLAN_PEGS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_PLAN_PEGS, object_name:MRPBV_PLAN_PEGS, status:VALID, product: MRP - Master Scheduling/MRP , implementation_dba_data: APPS.MRPBV_PLAN_PEGS ,
-
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: MRPBV_PLAN_PEGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_PLAN_PEGS, object_name:MRPBV_PLAN_PEGS, status:VALID, product: MRP - Master Scheduling/MRP , implementation_dba_data: APPS.MRPBV_PLAN_PEGS ,
-
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_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: APPS.MRPFV_PLAN_SUPPLIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_SUPPLIES, object_name:MRPFV_PLAN_SUPPLIES, 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 ,
-
VIEW: APPS.MRPFV_PLAN_SUPPLIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_SUPPLIES, object_name:MRPFV_PLAN_SUPPLIES, status:VALID,
-
View: MRPFV_PLAN_PEGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_PEGS, object_name:MRPFV_PLAN_PEGS, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPFV_PLAN_PEGS ,
-
View: MRPFV_PLAN_PEGS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_PEGS, object_name:MRPFV_PLAN_PEGS, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPFV_PLAN_PEGS ,
-
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: MRPBV_PLAN_DEMANDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_PLAN_DEMANDS, object_name:MRPBV_PLAN_DEMANDS, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPBV_PLAN_DEMANDS ,
-
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: MRPBV_PLAN_DEMANDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_PLAN_DEMANDS, object_name:MRPBV_PLAN_DEMANDS, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPBV_PLAN_DEMANDS ,
-
View: MRPBV_PLAN_SUPPLIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_PLAN_SUPPLIES, object_name:MRPBV_PLAN_SUPPLIES, status:VALID, product: MRP - Master Scheduling/MRP , implementation_dba_data: APPS.MRPBV_PLAN_SUPPLIES ,
-
View: MRPFV_PLAN_DEMANDS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_DEMANDS, object_name:MRPFV_PLAN_DEMANDS, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPFV_PLAN_DEMANDS ,
-
View: MRPFV_PLAN_DEMANDS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_DEMANDS, object_name:MRPFV_PLAN_DEMANDS, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPFV_PLAN_DEMANDS ,
-
View: MRPBV_PLAN_SUPPLIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_PLAN_SUPPLIES, object_name:MRPBV_PLAN_SUPPLIES, status:VALID, product: MRP - Master Scheduling/MRP , implementation_dba_data: APPS.MRPBV_PLAN_SUPPLIES ,
-
View: MRPFV_PLAN_SUPPLIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_SUPPLIES, object_name:MRPFV_PLAN_SUPPLIES, status:VALID, product: MRP - Master Scheduling/MRP , implementation_dba_data: APPS.MRPFV_PLAN_SUPPLIES ,
-
View: MRPBV_PLAN_EXCEPTION_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_PLAN_EXCEPTION_DETAILS, object_name:MRPBV_PLAN_EXCEPTION_DETAILS, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPBV_PLAN_EXCEPTION_DETAILS ,
-
View: MRPFV_PLAN_SUPPLIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_SUPPLIES, object_name:MRPFV_PLAN_SUPPLIES, status:VALID, product: MRP - Master Scheduling/MRP , implementation_dba_data: APPS.MRPFV_PLAN_SUPPLIES ,
-
View: MRPBV_PLAN_EXCEPTION_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_PLAN_EXCEPTION_DETAILS, object_name:MRPBV_PLAN_EXCEPTION_DETAILS, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPBV_PLAN_EXCEPTION_DETAILS ,
-
View: MRPFV_PLAN_EXCEPTION_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_EXCEPTION_DETAILS, object_name:MRPFV_PLAN_EXCEPTION_DETAILS, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPFV_PLAN_EXCEPTION_DETAILS ,
-
View: MRPFV_PLAN_EXCEPTION_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPFV_PLAN_EXCEPTION_DETAILS, object_name:MRPFV_PLAN_EXCEPTION_DETAILS, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPFV_PLAN_EXCEPTION_DETAILS ,
-
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 ,