Search Results amount_threshold
Overview
CE_FORECASTS is the forecast definition table in the Oracle Cash Management (CE) module. It stores the header-level definition of each cash forecast, capturing the parameters that govern how Oracle EBS projects future cash positions from source transaction data such as payables, receivables, payroll, and purchase orders. Each row represents one forecast run configuration within a forecast header, including the currency, period set, exchange rate treatment, project scope, and threshold controls that determine what the forecast includes and how it is displayed.
In Oracle EBS 12.1.1 and 12.2.2, CE_FORECASTS functions as the parent of the detailed forecast result set. Downstream forecast cell values are not stored here; they are held in CE_FORECAST_CELLS, keyed by FORECAST_ID, and forecast generation problems are captured in CE_FORECAST_ERRORS, also keyed by FORECAST_ID. The table therefore participates directly in the Cash Management forecast engine and in the Cash Forecasting and Cash Position reports, as well as in any custom reporting built against the Cash Management schema.
Based on the mined foreign key structure, a heuristic Data Vault classification of this object is satellite-leaning. It carries descriptive attributes about a forecast (name, currency, dates, threshold, project, display options) and depends on a parent header, which suggests it behaves as a descriptive satellite attached to the CE_FORECAST_HEADERS business key rather than as an independent hub.
Key Information Stored
The physical schema for 12.2.2 documents 44 columns. The most operationally significant columns are listed below.
- FORECAST_ID — surrogate primary key, enforced by CE_FORECASTS_PK and unique index CE_FORECASTS_U1. This is the column referenced by child tables.
- NAME — business-key candidate, enforced by unique index CE_FORECASTS_U2. Identifies the forecast to users.
- FORECAST_HEADER_ID — foreign key to CE_FORECAST_HEADERS; links the forecast to its header and forms the CE_FORECAST_UK1 unique key together with NAME.
- FORECAST_CURRENCY — foreign key to FND_CURRENCIES; the currency in which forecast amounts are presented.
- SOURCE_CURRENCY — foreign key to FND_CURRENCIES; the currency of the originating source transactions.
- EXCHANGE_RATE_TYPE — foreign key to GL_DAILY_CONVERSION_TYPES; determines the rate type used when converting source amounts.
- EXCHANGE_DATE and EXCHANGE_RATE — control the conversion date and, where applicable, a fixed rate.
- START_DATE and START_PERIOD — define the forecast opening point.
- PERIOD_SET_NAME — accounting period set governing forecast time buckets.
- AMOUNT_THRESHOLD — suppresses forecast lines below a specified value.
- PROJECT_ID — foreign key to PA_PROJECTS_ALL; restricts the forecast to a project.
- ERROR_STATUS — indicates whether forecast generation encountered errors.
- DRILLDOWN_FLAG, BANK_BALANCE_TYPE, FLOAT_TYPE, VIEW_BY, INCLUDE_SUB_ACCOUNT, and FACTOR — control drilldown behavior, bank balance inclusion, float treatment, display grouping, sub-account inclusion, and scaling.
- REQUEST_ID, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — concurrent request linkage and standard audit columns. ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 provide descriptive flexibility.
Common Use Cases and Queries
Typical use cases include listing forecasts by header name, validating currency and rate configuration before a run, and reconciling forecast headers against generated cells and errors.
- List all forecasts belonging to a header: SELECT f.FORECAST_ID, f.NAME, f.FORECAST_CURRENCY FROM CE.CE_FORECASTS f WHERE f.FORECAST_HEADER_ID = :header_id;
- Find forecasts with generation errors: SELECT FORECAST_ID, NAME, ERROR_STATUS FROM CE.CE_FORECASTS WHERE ERROR_STATUS IS NOT NULL;
- Resolve currencies and rate types for reporting: join FORECAST_CURRENCY and SOURCE_CURRENCY to FND_CURRENCIES and EXCHANGE_RATE_TYPE to GL_DAILY_CONVERSION_TYPES.
- Project-scoped analysis: join PROJECT_ID to PA_PROJECTS_ALL to report forecast coverage by project.
- Cell-level reconciliation: join FORECAST_ID to CE_FORECAST_CELLS for line detail, and to CE_FORECAST_ERRORS for diagnostic messages.
- Concurrent request traceability: join REQUEST_ID to FND_CONCURRENT_REQUESTS to identify the program run that produced the forecast.
Related Objects
- CE_FORECAST_HEADERS — parent of CE_FORECASTS via FORECAST_HEADER_ID.
- CE_FORECAST_CELLS — child table holding forecast amounts; join on FORECAST_ID.
- CE_FORECAST_ERRORS — child table capturing generation errors; join on FORECAST_ID.
- FND_CURRENCIES — referenced twice, through FORECAST_CURRENCY and SOURCE_CURRENCY.
- GL_DAILY_CONVERSION_TYPES — referenced through EXCHANGE_RATE_TYPE.
- PA_PROJECTS_ALL — referenced through PROJECT_ID for project-based forecasts.
- FND_CONCURRENT_REQUESTS — relates through REQUEST_ID for concurrent program tracking.
-
Table: CE_FORECASTS
12.2.2
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_FORECASTS, object_name:CE_FORECASTS, status:VALID, product: CE - Cash Management , description: Forecasts , implementation_dba_data: CE.CE_FORECASTS ,
-
Table: CE_FORECASTS
12.1.1
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_FORECASTS, object_name:CE_FORECASTS, status:VALID, product: CE - Cash Management , description: Forecasts , implementation_dba_data: CE.CE_FORECASTS ,
-
View: CE_FORECASTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FORECASTS_V, object_name:CE_FORECASTS_V, status:VALID, product: CE - Cash Management , description: - Retrofitted , implementation_dba_data: APPS.CE_FORECASTS_V ,
-
View: CE_FORECASTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FORECASTS_V, object_name:CE_FORECASTS_V, status:VALID, product: CE - Cash Management , description: - Retrofitted , implementation_dba_data: APPS.CE_FORECASTS_V ,
-
View: CEBV_CASH_FORECASTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEBV_CASH_FORECASTS, object_name:CEBV_CASH_FORECASTS, status:VALID, product: CE - Cash Management , description: Business View , implementation_dba_data: APPS.CEBV_CASH_FORECASTS ,
-
View: CEFV_CASH_FORECASTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEFV_CASH_FORECASTS, object_name:CEFV_CASH_FORECASTS, status:VALID, product: CE - Cash Management , description: Business View , implementation_dba_data: APPS.CEFV_CASH_FORECASTS ,
-
View: CEBV_CASH_FORECASTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEBV_CASH_FORECASTS, object_name:CEBV_CASH_FORECASTS, status:VALID, product: CE - Cash Management , description: Business View , implementation_dba_data: APPS.CEBV_CASH_FORECASTS ,
-
View: CEFV_CASH_FORECASTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CEFV_CASH_FORECASTS, object_name:CEFV_CASH_FORECASTS, status:VALID, product: CE - Cash Management , description: Business View , implementation_dba_data: APPS.CEFV_CASH_FORECASTS ,