Search Results ams_act_forecasts_all_pk
Overview
The table AMS_ACT_FORECASTS_ALL is a core data repository within the Oracle E-Business Suite Marketing (AMS) module, specifically for versions 12.1.1 and 12.2.2. It serves as the primary transactional table for storing forecast records associated with marketing activities. A forecast in this context represents a planned estimate of outcomes, such as expected revenue, responses, or costs, for a specific marketing campaign or event. This table is fundamental to the marketing planning and budgeting processes, enabling organizations to model, track, and analyze projected performance against actual results. As an "ALL" table, it is designed to support multi-organization structures (Multi-Org) by segregating data by operating unit.
Key Information Stored
The central piece of data stored is the FORECAST_ID, which serves as the unique primary key for each forecast record. A critical foreign key column is ACT_FCAST_USED_BY_ID, which links the forecast to a specific marketing campaign defined in the AMS_CAMPAIGNS_ALL_B table. While the provided metadata does not list all columns, typical forecast tables in this module would also store attributes such as forecast type (e.g., revenue, cost, response), forecast amount, currency code, forecast period or date range, and status. The table's structure supports the creation of multiple forecast lines for a single marketing activity, allowing for detailed planning across different dimensions and timeframes.
Common Use Cases and Queries
The primary use case is the creation and management of financial and operational forecasts for marketing campaigns. Analysts and managers utilize this data for budgeting, resource allocation, and performance measurement. Common reporting involves comparing forecasted amounts against actuals from transaction tables. A typical query would join this table to the campaign master to analyze forecasts by campaign.
- Sample Query (Forecasts for a Campaign):
SELECT f.forecast_id, f.forecast_amount, c.campaign_name FROM ams_act_forecasts_all f, ams_campaigns_all_b c WHERE f.act_fcast_used_by_id = c.campaign_id AND c.campaign_id = :p_campaign_id; - Reporting Use Case: Generating a summary report of all forecasted costs and revenues for active campaigns within a specific operating unit to assess the total planned marketing investment.
Related Objects
The table maintains defined relationships with other key AMS tables, as documented in the ETRM metadata. These relationships are crucial for data integrity and for constructing accurate joins in reports and interfaces.
- Primary Key Reference: The table's primary key,
FORECAST_ID(constraint AMS_ACT_FORECASTS_ALL_PK), is uniquely identifies each record. - Foreign Key (Outgoing Reference): The column
ACT_FCAST_USED_BY_IDis a foreign key that references theAMS_CAMPAIGNS_ALL_Btable. This establishes that every forecast is created for a specific, valid marketing campaign. - Foreign Key (Incoming Reference): The
AMS_MISC_COST_DIS_ALL_Btable references this table via itsFORECAST_IDcolumn. This indicates that miscellaneous cost distributions can be allocated or linked to a specific forecast record, creating a child-parent relationship.
-
Table: AMS_ACT_FORECASTS_ALL
12.2.2
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_FORECASTS_ALL, object_name:AMS_ACT_FORECASTS_ALL, status:VALID, product: AMS - Marketing , description: This table stores the Forecasts planned for a Marketing Activity. , implementation_dba_data: AMS.AMS_ACT_FORECASTS_ALL ,
-
Table: AMS_ACT_FORECASTS_ALL
12.1.1
owner:AMS, object_type:TABLE, fnd_design_data:AMS.AMS_ACT_FORECASTS_ALL, object_name:AMS_ACT_FORECASTS_ALL, status:VALID, product: AMS - Marketing , description: This table stores the Forecasts planned for a Marketing Activity. , implementation_dba_data: AMS.AMS_ACT_FORECASTS_ALL ,