Search Results mtl_forecast_rules
Overview
The MTL_FORECAST_RULES table is a core data repository within the Oracle E-Business Suite (EBS) Inventory (INV) module, specifically for versions 12.1.1 and 12.2.2. It serves as the master definition table for forecast rules, which are critical configuration entities that govern the behavior of forecasting processes. These rules define the parameters and methodologies used by the system to generate, adjust, and manage demand forecasts for items. The table's role is to provide a centralized, reusable set of forecasting instructions that can be associated with specific items or forecast sets, ensuring consistency and control in the planning and replenishment cycles.
Key Information Stored
The table stores the fundamental attributes that constitute a forecast rule. The primary identifier is the FORECAST_RULE_ID, a unique system-generated sequence number serving as the primary key for relational integrity. The FORECAST_RULE_NAME is a unique, user-defined identifier for the rule, crucial for selection and reporting. While the provided ETRM metadata does not list all columns, typical data stored includes parameters such as the forecast consumption rule (e.g., backward/forward), the forecast horizon, the calculation method (e.g., moving average, exponential smoothing), alpha factors for smoothing, and thresholds for forecast adjustments. These columns collectively define the algorithm and business logic applied during forecast generation.
Common Use Cases and Queries
The primary use case is the setup and maintenance of forecasting strategies within the "Forecast Rules" form. Analysts create and modify rules here, which are then assigned to items or forecasts. Common reporting involves listing all configured rules or analyzing which rules are applied to specific items. A typical query to retrieve all forecast rules would be:
- SELECT forecast_rule_id, forecast_rule_name, description FROM inv.mtl_forecast_rules ORDER BY forecast_rule_name;
Another critical use case is troubleshooting forecast results; understanding the rule parameters applied is essential for diagnosing unexpected forecast quantities. Integration queries often join this table to forecast detail or item master tables to validate rule assignments.
Related Objects
As documented in the ETRM metadata, MTL_FORECAST_RULES has defined foreign key relationships with other core forecasting tables. The FORECAST_RULE_ID column is referenced as a foreign key in the following tables:
- MRP_FORECAST_DATES: This table stores forecast entries over time. The column MRP_FORECAST_DATES.FORECAST_RULE_ID links each forecast bucket or entry to the specific rule that governed its creation or adjustment.
- MTL_SEASONALITY_INDICES: This table holds seasonal adjustment factors. The column MTL_SEASONALITY_INDICES.FORECAST_RULE_ID associates a set of seasonal indices with a particular forecast rule, allowing the rule to apply seasonal patterns during calculation.
These relationships are enforced by the primary key MTL_FORECAST_RULES_PK on FORECAST_RULE_ID, ensuring that a rule must exist before it can be referenced in forecast dates or seasonality data.
-
Table: MTL_FORECAST_RULES
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_FORECAST_RULES, object_name:MTL_FORECAST_RULES, status:VALID, product: INV - Inventory , description: Forecast rules for forecast processes , implementation_dba_data: INV.MTL_FORECAST_RULES ,
-
Table: MTL_FORECAST_RULES
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_FORECAST_RULES, object_name:MTL_FORECAST_RULES, status:VALID, product: INV - Inventory , description: Forecast rules for forecast processes , implementation_dba_data: INV.MTL_FORECAST_RULES ,
-
Table: MTL_SEASONALITY_INDICES
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_SEASONALITY_INDICES, object_name:MTL_SEASONALITY_INDICES, status:VALID, product: INV - Inventory , description: Seasonality indices , implementation_dba_data: INV.MTL_SEASONALITY_INDICES ,
-
Table: MTL_SEASONALITY_INDICES
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_SEASONALITY_INDICES, object_name:MTL_SEASONALITY_INDICES, status:VALID, product: INV - Inventory , description: Seasonality indices , implementation_dba_data: INV.MTL_SEASONALITY_INDICES ,