Search Results mrpbv_forecasts
Overview
MRPBV_FORECASTS is a read-only view owned by the APPS schema in Oracle E-Business Suite, delivered under the MRP (Master Scheduling/MRP) product family. It presents forecast designator information for a given inventory organization in a denormalized, reporting-friendly form, joining forecast header data to organization identifiers and names. The view is documented as "Retrofitted," indicating it is a legacy object maintained for backward compatibility, and it is exposed WITH READ ONLY to prevent DML against the underlying base tables through the view. In both 12.1.1 and 12.2.2, the object retains a VALID status and its definition is unchanged.
Its principal role is to support inquiry, reporting, and integration scenarios where forecast sets and their associated designators must be listed alongside the owning organization's code and name. Because it joins organization definition tables, it removes the need for consumers to resolve organization identifiers manually, making it convenient for custom reports, BI Publisher data models, and interface extracts.
Underlying Base Objects
The view is defined over three base objects, each referenced through a synonym in the APPS schema:
- MRP_FORECAST_DESIGNATORS (DE) — the primary forecast table, supplying designator name, description, forecast set, demand class, disable date, and the various identifier columns.
- MTL_PARAMETERS (PA) — the inventory organization parameters table, supplying ORGANIZATION_CODE.
- HR_ALL_ORGANIZATION_UNITS (AL) — the HR organization definition table, supplying the organization NAME.
The three tables are joined on ORGANIZATION_ID: the forecast rows are linked to MTL_PARAMETERS and HR_ALL_ORGANIZATION_UNITS through their respective ORGANIZATION_ID columns. A filter restricts results to rows where FORECAST_SET is not null. The definition also embeds a security predicate ('_SEC:DE.ORGANIZATION_ID'), which enforces organization-level access control consistent with Oracle's Multi-Org architecture, so results are limited to organizations the querying responsibility may access.
Key Columns
- ORGANIZATION_CODE — inventory organization code from MTL_PARAMETERS.
- ORGANIZATION_NAME — organization name from HR_ALL_ORGANIZATION_UNITS.
- FORECAST_NAME — forecast designator (AL.NAME mapped to the designator context).
- FORECAST_DESCRIPTION — descriptive text for the forecast, from MRP_FORECAST_DESIGNATORS.DESCRIPTION.
- INACTIVE_DATE — the disable date after which the forecast is no longer active.
- FORECAST_SET_NAME — the forecast set to which the designator belongs.
- DEMAND_CLASS — demand class associated with the forecast.
- ORGANIZATION_ID — the organization identifier used for joins and security.
- CUSTOMER_ID, CUSTOMER_SHIP_ID, CUSTOMER_BILL_ID — customer, ship-to, and bill-to identifiers for customer-linked forecasts.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY — standard auditing columns.
Common Use Cases and Queries
Typical uses include validating forecast setup before running a master scheduling or MPS/MRP plan, extracting forecast designators for a data warehouse or interface, and building inquiry pages that display forecasts by organization. The view is also useful for auditing which forecast sets and demand classes are active in each organization.
A representative query listing all forecasts for a specific organization:
SELECT organization_code, organization_name, forecast_name, forecast_set_name, demand_class, inactive_date FROM apps.mrpbv_forecasts WHERE organization_code = :org_code ORDER BY forecast_name;SELECT forecast_name, forecast_description, forecast_set_name, inactive_date FROM apps.mrpbv_forecasts WHERE inactive_date IS NULL OR inactive_date > SYSDATE;— returns only currently active forecasts.SELECT organization_code, COUNT(*) FROM apps.mrpbv_forecasts GROUP BY organization_code;— summarizes forecast counts per organization.
Because access is subject to organization security, queries executed from a responsibility limited to certain organizations return only the permitted subset. The view remains a stable, read-only reporting artifact in both 12.1.1 and 12.2.2.
-
View: MRPBV_FORECASTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_FORECASTS, object_name:MRPBV_FORECASTS, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPBV_FORECASTS ,
-
View: MRPBV_FORECASTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_FORECASTS, object_name:MRPBV_FORECASTS, status:VALID, product: MRP - Master Scheduling/MRP , description: - Retrofitted , implementation_dba_data: APPS.MRPBV_FORECASTS ,
-
VIEW: APPS.MRPBV_FORECASTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_FORECASTS, object_name:MRPBV_FORECASTS, status:VALID,
-
SYNONYM: APPS.MRP_FORECAST_DESIGNATORS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MRP_FORECAST_DESIGNATORS, status:VALID,
-
SYNONYM: APPS.MRP_FORECAST_DESIGNATORS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MRP_FORECAST_DESIGNATORS, status:VALID,
-
VIEW: APPS.MRPBV_FORECASTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_FORECASTS, object_name:MRPBV_FORECASTS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
eTRM - MRP Tables and Views
12.1.1
description: Recommendations based on user criteria selected in MRP Planner WorkBench ,
-
eTRM - MRP Tables and Views
12.2.2
description: Recommendations based on user criteria selected in MRP Planner WorkBench ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - MRP Tables and Views
12.1.1
description: Recommendations based on user criteria selected in MRP Planner WorkBench ,
-
eTRM - MRP Tables and Views
12.2.2
description: Recommendations based on user criteria selected in MRP Planner WorkBench ,