Search Results project_category5
Overview
FII_PROJ_CATEG5_LCV is a database view owned by the APPS schema within the Financial Intelligence (FII) product family of Oracle E-Business Suite. It serves as the Category 5 source view for the Project dimension in the Enterprise Data Warehouse (EDW). In the Oracle EBS reporting and integration architecture, FII views act as standardized extraction layers that feed the Financial Intelligence/EDW staging and transformation processes. This particular view isolates the fifth project category (often referred to as Project Category 5 or a user-defined project classification segment) so that downstream ETL jobs, warehouse loads, and analytical models can consume a consistent, denormalized representation of that dimension.
The view is documented as VALID in the ETRM metadata and is associated with the "project_category5" search term, indicating it is the canonical object queried when users or tools reference that category. Its primary role is to expose a key, a descriptive name, and the category value itself, along with a foreign key and instance identifier, in a form suitable for dimensional modeling.
Underlying Base Objects
The view definition selects from FIIBV_PROJ_CATEG5_LCV, which is the underlying base object named in the documented view text. The "BV" naming convention in FII objects typically denotes a base view that sits atop the actual transactional or setup tables (for example, project category configuration tables in Oracle Projects). The documented metadata lists no other referenced base tables, so the dependency chain visible to the ETRM repository terminates at FIIBV_PROJ_CATEG5_LCV.
The view is a thin projection: it does not perform joins or aggregations in the documented text. Instead, it renames or aliases columns from the base view and supplies NULL placeholders for five user-attribute columns that are not carried through from the source. This design confirms its purpose as a controlled, stable interface for the EDW rather than a transformation engine.
Key Columns
- PROJ_CATEG5_PK — The primary key of the Category 5 record, providing the unique surrogate identifier used within the EDW project dimension.
- NAME — The descriptive name associated with the Category 5 entry, used for display and labeling in reports.
- PROJECT_CATEGORY5 — The actual category 5 value, representing the classification assigned to projects under this segment.
- ALL_FK — A foreign key column supporting the "all" or aggregate member of the dimension, enabling roll-up queries.
- INSTANCE — Identifies the source instance, allowing multi-instance consolidation in the warehouse.
- LAST_UPDATE_DATE — The timestamp of the last modification, used for incremental extraction and change detection.
- USER_ATTRIBUTE1 through USER_ATTRIBUTE5 — Placeholder columns exposed by the view; in the documented text these are populated as NULL, indicating they are reserved or not populated from the base view.
Common Use Cases and Queries
Typical usage involves extracting the Category 5 project dimension for warehouse loading or for direct reporting against project classifications. Consultants commonly query this view to validate that category 5 values are populated and to reconcile them with the EDW project dimension.
A representative query retrieving all category values is:
SELECT PROJ_CATEG5_PK, NAME, PROJECT_CATEGORY5, ALL_FK, INSTANCE, LAST_UPDATE_DATE FROM APPS.FII_PROJ_CATEG5_LCV;
For incremental loads, developers filter on the update timestamp:
SELECT PROJ_CATEG5_PK, NAME, PROJECT_CATEGORY5 FROM APPS.FII_PROJ_CATEG5_LCV WHERE LAST_UPDATE_DATE >= :last_run_date;
To list only displayable values for a lookup or LOV, a query on name and category is used:
SELECT NAME, PROJECT_CATEGORY5 FROM APPS.FII_PROJ_CATEG5_LCV ORDER BY NAME;
Because the view is a pass-through to FIIBV_PROJ_CATEG5_LCV, troubleshooting typically begins by comparing row counts between the two objects to confirm the base view is populated before investigating EDW-side issues.
-
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: 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 ,