Search Results cost_pk
Overview
FII_PA_COST_F_FCV is a database view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the Financial Intelligence (FII) product family. Its documented purpose is to serve as the EDW Project Cost fact source view, meaning it exposes project cost transactions in a flattened, dimension-keyed form suitable for extraction, transformation, and loading into an Enterprise Data Warehouse. The view belongs to the fact-source layer of the FII/EDW integration model, where transactional detail from Oracle Projects is denormalized into a star-schema-friendly shape. It is valid in both Oracle EBS 12.1.1 and 12.2.2. Because it is a view rather than a table, it holds no data of its own; it projects and derives columns from underlying Projects cost tables at query time, which keeps the EDW extract aligned with the operational source without duplicating storage.
Underlying Base Objects
The ETRM metadata for this object does not enumerate referenced base objects, so the definitive dependency list must be confirmed by querying ALL_DEPENDENCIES or by inspecting the view DDL in the target instance. Functionally, the view is built to source project expenditure and cost records. The projection list includes COST_PK, a surrogate or primary identifier for the cost row, and a SEQ_ID, which is characteristic of FII fact-source views that assign a sequence key for warehouse loading. Also present are INSTANCE_FK and numerous foreign-key columns, confirming the view is defined over one or more Projects cost/expenditure tables plus dimension resolution logic. The GL_ACCT1_FK through GL_ACCT9_FK columns are derived, not stored, from a single concatenated GL_SEG value, indicating the base object carries an accounting flexfield string that the view parses into individual segment keys.
Key Columns
The view exposes both measures and dimension keys:
- Measures: RAW_COST_G, RAW_COST_B, RAW_COST_T (raw cost in entered, burdened, and total contexts), BURDENED_COST_G, BURDENED_COST_B, BURDENED_COST_T, and QUANTITY.
- Flags: BILLABLE_FLAG indicates whether the cost is billable; INSTANCE_FK identifies the source instance.
- Dimension keys: SET_OF_BOOKS_FK, PROJECT_FK, PROJECT_ORG_FK, EXPENDITURE_ORG_FK, EXPENDITURE_TYPE_FK, CURRENCY_GL_FK, CURRENCY_TRX_FK, EMPLOYEE_FK, UNIT_OF_MEASURE_FK.
- Date keys: TRANSACTION_DATE_FK, PA_DATE_FK, and GL_DATE_FK support time-based analysis.
- Accounting keys: GL_ACCT1_FK through GL_ACCT9_FK. Each is produced by a nested DECODE over GL_SEG. Where the 25-character segment slice equals or reduces to the literal 'NA_EDW', the value 'NA_EDW' is returned; otherwise the trimmed 25-character segment is concatenated with SUBSTRB(GL_SEG, 251) to form the account key. This handles the user search term "na_edw," which is a sentinel meaning not applicable / not available for EDW.
Common Use Cases and Queries
The primary use case is feeding the EDW Project Cost fact table. Analysts also query it directly for cost reporting and reconciliation. Typical patterns include aggregating burdened cost by project and accounting period, or filtering on the billable flag.
- Cost by project:
SELECT PROJECT_FK, SUM(BURDENED_COST_T) FROM APPS.FII_PA_COST_F_FCV GROUP BY PROJECT_FK; - Billable cost within a period:
SELECT * FROM APPS.FII_PA_COST_F_FCV WHERE BILLABLE_FLAG = 'Y'; - Accounting distribution:
SELECT GL_ACCT1_FK, GL_ACCT2_FK, SUM(RAW_COST_T) FROM APPS.FII_PA_COST_F_FCV GROUP BY GL_ACCT1_FK, GL_ACCT2_FK;
Because the view resolves keys at runtime, performance depends on the base tables and indexes; large extracts should be restricted by date or project key.
-
APPS.FII_PA_COST_F_C SQL Statements
12.1.1
-
View: FII_PA_COST_F_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_PA_COST_F_FCV, object_name:FII_PA_COST_F_FCV, status:VALID, product: FII - Financial Intelligence , description: FII_PA_COST_F_FCV is the EDW Project Cost fact source view , implementation_dba_data: APPS.FII_PA_COST_F_FCV ,
-
View: FII_PA_COST_F_FCV
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FII_PA_COST_F_FCV is the EDW Project Cost fact source view , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.FII_PA_COST_F_FCV
12.1.1
-
VIEW: APPS.FII_PA_COST_F_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_PA_COST_F_FCV, object_name:FII_PA_COST_F_FCV, status:VALID,
-
View: FIIBV_PA_COST_F_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FIIBV_PA_COST_F_FCV, object_name:FIIBV_PA_COST_F_FCV, status:VALID, product: FII - Financial Intelligence , description: FIIBV_PA_COST_F_FCV is the EDW Project Cost fact base view , implementation_dba_data: APPS.FIIBV_PA_COST_F_FCV ,
-
View: FIIBV_PA_COST_F_FCV
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FIIBV_PA_COST_F_FCV is the EDW Project Cost fact base view , implementation_dba_data: Not implemented in this database ,
-
TABLE: FII.FII_PA_COST_F
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_PA_COST_F, object_name:FII_PA_COST_F, status:VALID,
-
PACKAGE BODY: APPS.FII_PA_COST_F_C
12.1.1
-
VIEW: APPS.FIIBV_PA_COST_F_FCV
12.1.1
-
VIEW: APPS.FIIBV_PA_COST_F_FCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FIIBV_PA_COST_F_FCV, object_name:FIIBV_PA_COST_F_FCV, status:VALID,
-
TABLE: FII.FII_PA_COST_FSTG
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.FII_PA_COST_FSTG, object_name:FII_PA_COST_FSTG, status:VALID,
-
APPS.FII_PA_COST_F_C dependencies on FII_PA_COST_FSTG
12.1.1
-
APPS.FII_PA_COST_F_C dependencies on FII_PA_COST_PK
12.1.1
-
eTRM - FII Tables and Views
12.1.1
description: This table stores the mapping of leaf nodes from pruned dimension to nodes in the child value sets ,