Search Results ce_forecast_ap_orgs_v
Overview
CE_FORECAST_AP_ORGS_V is a Cash Management (CE) view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It is documented in the E-Business Suite Technical Reference Manual (ETRM) as a retrofitted object, meaning it was re-engineered to preserve compatibility across release levels while aligning with newer architecture. The view exposes the set of Payables operating units and their associated general ledger set of books, formatted specifically for consumption by Cash Management forecasting functionality.
Its principal role is to provide the Cash Management forecast engine with a normalized list of "AP" source organizations — the operating units whose unpaid invoices and scheduled payments feed cash outflow projections. Rather than querying Payables system parameters directly, the forecast process selects from this view to obtain organization, ledger, and currency context in a single result set. This abstraction isolates the forecasting logic from the underlying table structure, allowing Oracle to change base tables without breaking the forecast pipeline.
Underlying Base Objects
The view is defined as a UNION ALL of two branches over three referenced objects: AP_SYSTEM_PARAMETERS_ALL (a synonym resolving to the Payables system parameters table), GL_SETS_OF_BOOKS (a view over the accounting flexfield ledger definitions), and HR_OPERATING_UNITS (a view over organization definitions).
- Branch 1 joins AP_SYSTEM_PARAMETERS_ALL to HR_OPERATING_UNITS on ORG_ID = ORGANIZATION_ID, and to GL_SETS_OF_BOOKS on SET_OF_BOOKS_ID. It returns operating units that are properly defined in both Payables and HR, populating the NAME column from HR_OPERATING_UNITS. In this branch, the LEGAL_ENTITY_ID column is explicitly nulled via TO_NUMBER(NULL), indicating the legal entity linkage was disabled during retrofit.
- Branch 2 returns rows where AP.ORG_ID is null, joining only to GL_SETS_OF_BOOKS. Here NAME is returned as NULL and LEGAL_ENTITY_ID is also NULL. This branch captures legacy or global Payables configurations where no operating unit is assigned.
The constant literal 'AP' is used as APP_SHORT_NAME in both branches, identifying the record's application source for downstream filtering.
Key Columns
- APP_SHORT_NAME — Always 'AP', flagging the row as originating from Payables.
- ORG_ID — The operating unit identifier from AP_SYSTEM_PARAMETERS_ALL; may be NULL in the second UNION branch.
- NAME — The operating unit name from HR_OPERATING_UNITS; NULL when ORG_ID is NULL.
- SET_OF_BOOKS_ID — The ledger identifier, linking the organization to its accounting book.
- SET_OF_BOOKS_NAME — The ledger name from GL_SETS_OF_BOOKS.
- CURRENCY_CODE — The ledger currency, essential for converting forecast amounts.
- DESCRIPTION — The ledger description from GL_SETS_OF_BOOKS.
- LEGAL_ENTITY_ID — Documented but always NULL in the current view text, retained for signature compatibility.
Common Use Cases and Queries
This view is typically consulted when diagnosing Cash Management forecast results, validating which Payables organizations are included in a forecast run, or building custom cash-position reports that must align with the standard AP forecast scope.
To list all Payables organizations eligible for forecasting with their ledger and currency:
SELECT org_id, name, set_of_books_id, set_of_books_name, currency_code FROM ce_forecast_ap_orgs_v ORDER BY name;
To identify rows representing global configurations lacking an operating unit:
SELECT * FROM ce_forecast_ap_orgs_v WHERE org_id IS NULL;
To join the view to forecast results and enrich them with organization and ledger names:
SELECT v.name, v.currency_code, f.amount FROM ce_forecast_ap_orgs_v v, ce_forecast_results f WHERE v.org_id = f.org_id;
Because the view is read-only and defined over configuration tables, it should not be modified. Any need to filter or extend its output should be handled in the consuming query, not by altering the view definition.
-
View: CE_FORECAST_AP_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FORECAST_AP_ORGS_V, object_name:CE_FORECAST_AP_ORGS_V, status:VALID, product: CE - Cash Management , description: - Retrofitted , implementation_dba_data: APPS.CE_FORECAST_AP_ORGS_V ,
-
View: CE_FORECAST_AP_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FORECAST_AP_ORGS_V, object_name:CE_FORECAST_AP_ORGS_V, status:VALID, product: CE - Cash Management , description: - Retrofitted , implementation_dba_data: APPS.CE_FORECAST_AP_ORGS_V ,
-
VIEW: APPS.CE_FORECAST_ORGS_V
12.1.1
-
VIEW: APPS.CE_FORECAST_ORGS_V
12.2.2
-
VIEW: APPS.CE_FORECAST_AP_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FORECAST_AP_ORGS_V, object_name:CE_FORECAST_AP_ORGS_V, status:VALID,
-
View: CE_FORECAST_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FORECAST_ORGS_V, object_name:CE_FORECAST_ORGS_V, status:VALID, product: CE - Cash Management , description: - Retrofitted , implementation_dba_data: APPS.CE_FORECAST_ORGS_V ,
-
VIEW: APPS.CE_FORECAST_AP_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FORECAST_AP_ORGS_V, object_name:CE_FORECAST_AP_ORGS_V, status:VALID,
-
View: CE_FORECAST_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FORECAST_ORGS_V, object_name:CE_FORECAST_ORGS_V, status:VALID, product: CE - Cash Management , description: - Retrofitted , implementation_dba_data: APPS.CE_FORECAST_ORGS_V ,
-
VIEW: APPS.CE_FORECAST_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FORECAST_ORGS_V, object_name:CE_FORECAST_ORGS_V, status:VALID,
-
VIEW: APPS.CE_FORECAST_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FORECAST_ORGS_V, object_name:CE_FORECAST_ORGS_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.AP_SYSTEM_PARAMETERS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AP_SYSTEM_PARAMETERS_ALL, status:VALID,
-
SYNONYM: APPS.AP_SYSTEM_PARAMETERS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AP_SYSTEM_PARAMETERS_ALL, status:VALID,
-
VIEW: APPS.HR_OPERATING_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_OPERATING_UNITS, object_name:HR_OPERATING_UNITS, status:VALID,
-
VIEW: APPS.HR_OPERATING_UNITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_OPERATING_UNITS, object_name:HR_OPERATING_UNITS, status:VALID,
-
VIEW: APPS.GL_SETS_OF_BOOKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_SETS_OF_BOOKS, object_name:GL_SETS_OF_BOOKS, status:VALID,
-
VIEW: APPS.GL_SETS_OF_BOOKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_SETS_OF_BOOKS, object_name:GL_SETS_OF_BOOKS, status:VALID,
-
eTRM - CE Tables and Views
12.2.2
description: This table stores the error or warning messages from ZBA deal creation process ,
-
eTRM - CE Tables and Views
12.1.1
description: This table stores the error or warning messages from ZBA deal creation process ,
-
PACKAGE BODY: APPS.CE_CSH_FCST_POP
12.1.1
-
PACKAGE BODY: APPS.CE_CSH_FCST_POP
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - SQLGL Tables and Views
12.1.1
description: USSGL transaction codes ,
-
APPS.CE_CSH_FCST_POP dependencies on CE_CASH_FCST
12.2.2
-
eTRM - CE Tables and Views
12.1.1
description: This table stores the error or warning messages from ZBA deal creation process ,
-
APPS.CE_CSH_FCST_POP dependencies on CE_CASH_FCST
12.1.1
-
eTRM - CE Tables and Views
12.2.2
description: This table stores the error or warning messages from ZBA deal creation process ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - SQLGL Tables and Views
12.1.1
description: USSGL transaction codes ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,