Search Results ce_forecast_oe_orgs_v
Overview
CE_FORECAST_OE_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 a retrofitted view, meaning it was adapted to support the multi-organization architecture introduced in Release 12 while preserving compatibility with pre-existing Cash Management forecasting logic. Its purpose is to present the set of Order Entry (OE) operating units and their associated ledgers and currencies in a form consumed by the Cash Management cash forecasting engine, allowing forecasts to be built at the correct operating unit and set of books level.
The view returns a normalized list of organization and ledger combinations rather than transactional data. Each row identifies an operating unit (or a ledger directly) along with its set of books, functional currency, and description. This makes the view a configuration lookup used to seed or filter forecast query logic, not a transactional reporting source.
The literal value 'OE' is emitted as APP_SHORT_NAME for every row, indicating that the row belongs to the Order Entry application context. This constant is significant because Cash Management forecasting processes may combine sources from multiple modules (for example, Order Entry, Receivables, and Payables), and the APP_SHORT_NAME column allows the calling process to distinguish the OE-sourced rows.
Underlying Base Objects
According to the documented metadata, CE_FORECAST_OE_ORGS_V is defined over four referenced base objects:
- HR_OPERATING_UNITS (VIEW) — provides ORGANIZATION_ID, NAME, and SET_OF_BOOKS_ID for the operating units.
- GL_SETS_OF_BOOKS (VIEW) — provides the ledger NAME, CURRENCY_CODE, and DESCRIPTION.
- FND_PROFILE_OPTION_VALUES (SYNONYM) — supplies the default set of books from the profile option when no operating unit context is set.
- FND_PROFILE (PACKAGE) — invoked as FND_PROFILE.VALUE('ORG_ID') to determine the current operating unit at runtime.
The view is defined as a UNION ALL of two branches. The first branch joins HR_OPERATING_UNITS to GL_SETS_OF_BOOKS on SET_OF_BOOKS_ID and filters for the operating unit returned by FND_PROFILE.VALUE('ORG_ID'). The second branch is taken only when FND_PROFILE.VALUE('ORG_ID') IS NULL; it retrieves the ledger from FND_PROFILE_OPTION_VALUES where APPLICATION_ID = 300 and PROFILE_OPTION_ID = 1148, then joins to GL_SETS_OF_BOOKS. This structure ensures that a single, predictable set of ledger/organization rows is returned whether or not an operating unit is currently selected in the session.
Key Columns
- APP_SHORT_NAME — constant
'OE', identifying the Order Entry context. - ORG_ID — the operating unit organization identifier; NULL in the profile-option fallback branch.
- NAME — the operating unit name; NULL in the fallback branch.
- SET_OF_BOOKS_ID — the ledger identifier, sourced from HRO.SET_OF_BOOKS_ID or from the profile option value.
- SET_OF_BOOKS_NAME — the ledger name from GL_SETS_OF_BOOKS.
- CURRENCY_CODE — the ledger functional currency.
- DESCRIPTION — the ledger description.
- LEGAL_ENTITY_ID — present in the column list, but the view text selects TO_NUMBER(NULL) with the original HRO.LEGAL_ENTITY_ID expression retained only as a comment. The column is therefore always NULL in this implementation.
Common Use Cases and Queries
This view is typically queried by Cash Management forecasting programs and by diagnostics that need to confirm which operating unit and ledger will be used for an OE forecast. A representative query retrieves the active organization and ledger context:
SELECT app_short_name, org_id, name, set_of_books_id, set_of_books_name, currency_code FROM ce_forecast_oe_orgs_v;- Filtering to the OE source when combining with other forecast-source views:
SELECT * FROM ce_forecast_oe_orgs_v WHERE app_short_name = 'OE'; - Verifying ledger currency for a given context:
SELECT set_of_books_name, currency_code FROM ce_forecast_oe_orgs_v WHERE set_of_books_id = :p_sob_id;
Because ORG_ID and NAME are populated only when an operating unit is set, and the fallback branch returns a single ledger row, the row count of the view is context-driven. Administrators troubleshooting forecasting scope should confirm that FND_PROFILE.VALUE('ORG_ID') returns the intended operating unit; otherwise the fallback ledger defined by profile option 1148 will govern.
-
View: CE_FORECAST_OE_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FORECAST_OE_ORGS_V, object_name:CE_FORECAST_OE_ORGS_V, status:VALID, product: CE - Cash Management , description: - Retrofitted , implementation_dba_data: APPS.CE_FORECAST_OE_ORGS_V ,
-
View: CE_FORECAST_OE_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FORECAST_OE_ORGS_V, object_name:CE_FORECAST_OE_ORGS_V, status:VALID, product: CE - Cash Management , description: - Retrofitted , implementation_dba_data: APPS.CE_FORECAST_OE_ORGS_V ,
-
VIEW: APPS.CE_FORECAST_ORGS_V
12.2.2
-
VIEW: APPS.CE_FORECAST_ORGS_V
12.1.1
-
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 ,
-
PACKAGE BODY: APPS.CE_CASH_FCST
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CE_CASH_FCST, status:VALID,
-
PACKAGE BODY: APPS.CE_CASH_FCST
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CE_CASH_FCST, 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_OE_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FORECAST_OE_ORGS_V, object_name:CE_FORECAST_OE_ORGS_V, status:VALID,
-
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,
-
VIEW: APPS.CE_FORECAST_OE_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CE.CE_FORECAST_OE_ORGS_V, object_name:CE_FORECAST_OE_ORGS_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.FND_PROFILE_OPTION_VALUES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_PROFILE_OPTION_VALUES, status:VALID,
-
SYNONYM: APPS.FND_PROFILE_OPTION_VALUES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_PROFILE_OPTION_VALUES, status:VALID,
-
APPS.CE_CASH_FCST SQL Statements
12.2.2
-
APPS.CE_CASH_FCST SQL Statements
12.1.1
-
APPS.CE_CASH_FCST dependencies on CE_FORECAST_OE_ORGS_V
12.1.1
-
APPS.CE_CASH_FCST dependencies on CE_FORECAST_OE_ORGS_V
12.2.2
-
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,
-
APPS.CE_CASH_FCST dependencies on CE_FORECAST_ROWS
12.2.2
-
APPS.CE_CASH_FCST dependencies on CE_FORECAST_ROWS
12.1.1
-
APPS.CE_CSH_FCST_POP dependencies on GL_SETS_OF_BOOKS
12.2.2
-
APPS.CE_CSH_FCST_POP dependencies on GL_SETS_OF_BOOKS
12.1.1
-
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_CASH_FCST
12.1.1
-
PACKAGE BODY: APPS.CE_CASH_FCST
12.2.2
-
APPS.CE_CASH_FCST dependencies on CE_CASH_FCST
12.1.1
-
APPS.CE_CASH_FCST dependencies on CE_CASH_FCST
12.2.2
-
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
-
PACKAGE: APPS.FND_PROFILE
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_PROFILE, status:VALID,
-
PACKAGE: APPS.FND_PROFILE
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_PROFILE, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
eTRM - SQLGL Tables and Views
12.1.1
description: USSGL transaction codes ,
-
eTRM - CE Tables and Views
12.1.1
description: This table stores the error or warning messages from ZBA deal creation process ,
-
eTRM - CE Tables and Views
12.2.2
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.2.2
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
APPS.CE_CSH_FCST_POP dependencies on CE_CASH_FCST
12.1.1
-
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 ,