Search Results proj_categ5_pk
Overview
APPS.FII_PROJ_CATEG5_LCV is a lightweight Oracle EBS view exposed in the Applications (APPS) schema that presents the fifth project category (Project Category 5) key flexfield segment values. It is part of the FII (Financial Intelligence/Intelligence) family of views that Oracle ships to support reporting, data extraction, and integration against Project Accounting and related subledgers. In the Oracle EBS 12.1.1 and 12.2.2 context, the "LCV" suffix conventionally denotes a "List of Values" style view used to feed flexfield value sets, value-set-driven LOVs, and downstream reporting layers that require a flat, denormalized projection of category code combinations.
The view is most relevant to users who search on the term project_category5, since it exposes the PROJECT_CATEGORY5 column together with a primary key and descriptive name. It allows consumers to resolve a stored category segment value to its identifier and display name without querying the underlying Project Accounting category tables directly, which may carry additional DFF context columns and attributes not needed for reporting.
Underlying Base Objects
Per the documented ETRM metadata for 12.2.2, the view is defined with the following projection:
SELECT PROJ_CATEG5_PK, NAME, PROJECT_CATEGORY5, ALL_FK, INSTANCE, LAST_UPDATE_DATE, NULL, NULL, NULL, NULL, NULL FROM FIIBV_PROJ_CATEG5_LCV
The only documented referenced object is FIIBV_PROJ_CATEG5_LCV, which is the base view referenced by the outer definition. No base tables are documented against APPS.FII_PROJ_CATEG5_LCV itself in the ETRM metadata; the actual table dependencies are encapsulated within FIIBV_PROJ_CATEG5_LCV. The outer view essentially republishes the eleven columns of the base view, padding six trailing columns with NULL constants, which is a common Oracle pattern used to align the column list with a shared reporting contract or UNION-compatible template.
Key Columns
- PROJ_CATEG5_PK — Surrogate primary key identifying a specific Project Category 5 value. Used for joins and reference integrity.
- NAME — The display name of the category value, suitable for LOV and reporting output.
- PROJECT_CATEGORY5 — The stored segment value for the fifth project category, corresponding to the user search term project_category5.
- ALL_FK — Flexfield key-flexfield reference column linking the row to the underlying key flexfield definition.
- INSTANCE — Identifies the flexfield instance or owning application context.
- LAST_UPDATE_DATE — Standard EBS audit column recording the last modification timestamp, used for incremental extracts.
- NULL (x6) — Placeholder columns emitted as NULL to satisfy a fixed-width reporting projection.
Common Use Cases and Queries
Typical uses include populating value sets behind concurrent program parameters, resolving Project Category 5 codes in custom reports, and driving incremental integration extracts keyed on LAST_UPDATE_DATE. A simple lookup by category value:
SELECT proj_categ5_pk, name, project_category5 FROM apps.fii_proj_categ5_lcv WHERE project_category5 = :p_category5;
An incremental extraction pattern:
SELECT proj_categ5_pk, name, project_category5, last_update_date FROM apps.fii_proj_categ5_lcv WHERE last_update_date >= :p_since;
Because the outer view is read-only and purely a projection over FIIBV_PROJ_CATEG5_LCV, it is safe for reporting queries. Joins to project facts or category assignment tables should use PROJ_CATEG5_PK as the key. Note that the NULL placeholder columns carry no business meaning and should not be used in WHERE or ORDER BY clauses.
-
VIEW: APPS.FII_PROJ_CATEG5_LCV
12.1.1
-
View: FII_PROJ_CATEG5_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_PROJ_CATEG5_LCV, object_name:FII_PROJ_CATEG5_LCV, status:VALID, product: FII - Financial Intelligence , description: FII_PROJ_CATEG5_LCV is the Category 5 source view for the Project dimension in EDW , implementation_dba_data: APPS.FII_PROJ_CATEG5_LCV ,
-
View: FII_PROJ_CATEG5_LCV
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FII_PROJ_CATEG5_LCV is the Category 5 source view for the Project dimension in EDW , implementation_dba_data: Not implemented in this database ,
-
TABLE: FII.EDW_PROJ_CATEG5_LSTG
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.EDW_PROJ_CATEG5_LSTG, object_name:EDW_PROJ_CATEG5_LSTG, status:VALID,
-
TABLE: FII.EDW_PROJ_CATEG5_LTC
12.1.1
owner:FII, object_type:TABLE, fnd_design_data:FII.EDW_PROJ_CATEG5_LTC, object_name:EDW_PROJ_CATEG5_LTC, status:VALID,
-
VIEW: APPS.FII_PROJ_CATEG5_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FII_PROJ_CATEG5_LCV, object_name:FII_PROJ_CATEG5_LCV, status:VALID,
-
VIEW: APPS.FIIBV_PROJ_CATEG5_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FIIBV_PROJ_CATEG5_LCV, object_name:FIIBV_PROJ_CATEG5_LCV, status:VALID,
-
View: FIIBV_PROJ_CATEG5_LCV
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: FIIBV_PROJ_CATEG5_LCV is the Category 5 base view for the Project dimension in EDW , implementation_dba_data: Not implemented in this database ,
-
View: FIIBV_PROJ_CATEG5_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.FIIBV_PROJ_CATEG5_LCV, object_name:FIIBV_PROJ_CATEG5_LCV, status:VALID, product: FII - Financial Intelligence , description: FIIBV_PROJ_CATEG5_LCV is the Category 5 base view for the Project dimension in EDW , implementation_dba_data: APPS.FIIBV_PROJ_CATEG5_LCV ,
-
APPS.FII_PROJECT_M_C SQL Statements
12.1.1
-
PACKAGE BODY: APPS.FII_PROJECT_M_C
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 ,