Search Results fpa_sces_vl
Overview
FPA_SCES_VL is a validation view (the _VL suffix) owned by the APPS schema in Oracle E-Business Suite, belonging to the FPA — Project Portfolio Analysis product. It exposes the set of scenario definitions available within the Project Portfolio Analysis analytical workspace, joining the OLAP-resident scenario dimension to the translated object metadata stored in the base applications tables. Because the view resolves the translated NAME and DESCRIPTION columns in the session language, it is the standard presentation layer through which scenario values are surfaced to end users and to validation logic.
The view carries a status of INVALID in the documented ETRM 12.2.2 metadata. This is significant: an invalid view cannot be queried until it is successfully recompiled, and any dependent form, concurrent program, or report that references FPA_SCES_VL will fail at runtime. The invalid status is typically symptomatic of an underlying dependency that has changed — most often the FPA_UTILITIES_PVT package body or the OLAP analytic workspace that the view queries through OLAP_TABLE.
Underlying Base Objects
The documented base objects referenced by FPA_SCES_VL are:
- FPA_OBJECTS_TL (synonym) — the translated objects table holding NAME, DESCRIPTION and audit columns for FPA metadata objects. The view restricts this table to B.OBJECT = 'SCENARIO' and B.LANGUAGE = USERENV('LANG'), yielding the session-language label for each scenario.
- FPA_UTILITIES_PVT (package) — supplies the AW_SPACE_NAME value used to build the fully qualified analytic workspace name passed to OLAP_TABLE.
- OLAP_TABLE (synonym) — the Oracle OLAP function that maps an analytic workspace dimension into relational rows. Here it projects the SCENARIO dimension from the SCENARIO_D dimension, with the PLANNING_CYCLE attribute drawn from the PLANNING_CYCLE_SCENARIO_R relation.
FPA_SCES_VL therefore sits at the intersection of two data sources: the multidimensional scenario dimension in the analytic workspace and the relational translated object metadata. The join key is A.SCENARIO = B.ID, with B.OBJECT pinned to 'SCENARIO'.
Key Columns
- SCENARIO — the scenario identifier from the OLAP dimension, used as the join key to FPA_OBJECTS_TL.ID.
- NAME — the translated display name of the scenario, in the session language.
- DESCRIPTION — the translated description of the scenario.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard EBS audit columns sourced from FPA_OBJECTS_TL, used for change tracking and conformance with the WHO column convention.
Note that the PLANNING_CYCLE attribute is specified in the OLAP_TABLE call but is not projected in the outer SELECT list, so it is not exposed as a column of this view.
Common Use Cases and Queries
The view is commonly used as a list-of-values source for scenario pickers in Project Portfolio Analysis, and as a lookup when joining portfolio data back to human-readable scenario names. A typical query is:
SELECT scenario, name, description FROM apps.fpa_sces_vl ORDER BY name;
To retrieve a single scenario by identifier:
SELECT name, description FROM apps.fpa_sces_vl WHERE scenario = :p_scenario_id;
Because the view is reported INVALID, DBAs should first attempt recompilation with ALTER VIEW APPS.FPA_SCES_VL COMPILE; and verify that FPA_UTILITIES_PVT is valid and that the analytic workspace exists. Where the OLAP dependency is unreliable, the equivalent relational lookup can be issued directly against FPA_OBJECTS_TL filtered on OBJECT = 'SCENARIO' and the session language, which provides the translated names without invoking OLAP_TABLE.
-
View: FPA_SCES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FPA.FPA_SCES_VL, object_name:FPA_SCES_VL, status:VALID, product: FPA - Project Portfolio Analysis , implementation_dba_data: APPS.FPA_SCES_VL ,
-
View: FPA_SCES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FPA.FPA_SCES_VL, object_name:FPA_SCES_VL, status:INVALID, product: FPA - Project Portfolio Analysis , implementation_dba_data: APPS.FPA_SCES_VL ,
-
VIEW: APPS.FPA_SCES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FPA.FPA_SCES_VL, object_name:FPA_SCES_VL, status:INVALID,
-
VIEW: APPS.FPA_SCES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FPA.FPA_SCES_VL, object_name:FPA_SCES_VL, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.FPA_OBJECTS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FPA_OBJECTS_TL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
TYPE: APPS.FPA_SCENARIO_TBL
12.1.1
owner:APPS, object_type:TYPE, object_name:FPA_SCENARIO_TBL, status:VALID,
-
SYNONYM: APPS.FPA_OBJECTS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FPA_OBJECTS_TL, status:VALID,
-
SYNONYM: PUBLIC.OLAP_TABLE
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:OLAP_TABLE, status:VALID,
-
PACKAGE BODY: APPS.FPA_SCENARIO_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FPA_SCENARIO_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.FPA_UTILITIES_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FPA_UTILITIES_PVT, status:VALID,
-
PACKAGE: APPS.FPA_UTILITIES_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FPA_UTILITIES_PVT, status:VALID,
-
SYNONYM: PUBLIC.OLAP_TABLE
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:OLAP_TABLE, status:VALID,
-
APPS.FPA_SCENARIO_PVT SQL Statements
12.1.1
-
APPS.FPA_SCENARIO_PVT SQL Statements
12.2.2
-
APPS.FPA_SCENARIO_PVT dependencies on FPA_SCES_VL
12.1.1
-
eTRM - FPA Tables and Views
12.2.2
-
eTRM - FPA Tables and Views
12.1.1
-
eTRM - FPA Tables and Views
12.2.2
-
eTRM - FPA Tables and Views
12.1.1
-
APPS.FPA_SCENARIO_PVT dependencies on FPA_AW_SCES_V
12.1.1
-
APPS.FPA_SCENARIO_PVT dependencies on FPA_AW_SCES_V
12.2.2
-
PACKAGE BODY: APPS.FPA_SCENARIO_PVT
12.1.1
-
PACKAGE BODY: APPS.FPA_SCENARIO_PVT
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1