Search Results customer_bill_address




Overview

APPS.MRPFV_FORECASTS is a Business Intelligence System view in Oracle E-Business Suite, registered under the FND Design Data reference MRP.MRPFV_FORECASTS and owned by the APPS schema. Its status is VALID in both release 12.1.1 and 12.2.2. The view presents an estimate of future demand on inventory items. Each forecast record contains information on the original and current forecast quantities (before and after consumption), the confidence factor, and any specific customer information associated with the demand.

Because the view is exposed as a Business Intelligence System view, it is intended primarily for reporting, analytics, and integration scenarios rather than for transactional data entry. It flattens master and transactional forecasting data — organization, forecast set, demand class, and customer context — into a single denormalized representation suitable for ad hoc queries, custom reports, and downstream extracts. The view is read-only with respect to the underlying tables and is not referenced by any other database object, so its use does not introduce cascading dependency concerns.

Underlying Base Objects

APPS.MRPFV_FORECASTS is defined over a set of synonyms resolving to base tables spanning inventory and customer master data:

These objects are joined to present forecast demand enriched with organizational and customer descriptive attributes.

Key Columns

Common Use Cases and Queries

Typical scenarios include reporting forecasted demand by customer and bill-to address, auditing forecasts by demand class, and extracting demand data for planning or integration. For example, to retrieve forecast demand with customer bill addresses:

  • SELECT FORECAST_NAME, CUSTOMER_NAME, CUSTOMER_BILL_ADDRESS, DEMAND_CLASS FROM APPS.MRPFV_FORECASTS WHERE CUSTOMER_BILL_ADDRESS IS NOT NULL;
  • SELECT ORGANIZATION_CODE, FORECAST_SET_NAME, DEMAND_CLASS, CUSTOMER_NUMBER FROM APPS.MRPFV_FORECASTS WHERE INACTIVE_DATE > SYSDATE;
  • SELECT CUSTOMER_NAME, CUSTOMER_BILL_ID, CUSTOMER_BILL_ADDRESS FROM APPS.MRPFV_FORECASTS WHERE CUSTOMER_ID = :customer_id;

These queries support customer-level demand analysis, address validation, and inactive-forecast exclusion during planning cycles.