Search Results sub_organization_level
Overview
The view PJI_DIS_ORG_HIERARCHY_V (documented as PJI_DIS_ORG_HRCHY_V) is a Discoverer-oriented reporting object delivered under the PJI – Project Intelligence product family, a module now classified as obsolete in Oracle E-Business Suite 12.1.1 and 12.2.2. Its stated purpose in the ETRM metadata is to provide a "Discoverer view of organization hierarchy data," meaning it was intended as a flattened, denormalized data source for Oracle Business Intelligence Discoverer worksheets and ad hoc analyses on organizational structures. For users searching on the term "organization_level," this view is particularly relevant because it explicitly exposes both ORGANIZATION_LEVEL and SUB_ORGANIZATION_LEVEL as selected columns, making it a direct reference point for hierarchies defined through level attributes rather than simple parent-child relationships.
The view was designed to reconcile the denormalized hierarchy storage used by Project Intelligence with the multilingual organization names maintained in the HR organization units tables. Its presence in the ETRM catalog serves as documentation of a legacy integration point rather than a supported current component.
Underlying Base Objects
According to the documented view text, the query is constructed over the following base objects:
- PJI_ORG_DENORM — aliased as
ORG, the denormalized Project Intelligence organization table that supplies organization IDs and level information. - HR_ALL_ORGANIZATION_UNITS_TL — aliased twice as
HOU1andHOU2, the translation (TL) table for HR organization units that provides the translatedNAMEvalues.
The joins are equi-joins between ORG.ORGANIZATION_ID and HOU1.ORGANIZATION_ID, and between ORG.SUB_ORGANIZATION_ID and HOU2.ORGANIZATION_ID. Both name lookups are filtered by HOUx.LANGUAGE = USERENV('LANG'), ensuring names are returned in the session's language. ETRM records the view as not implemented in the reference database and lists no additional referenced base objects beyond those shown in the view text.
Key Columns
- ORGANIZATION_ID — Identifier of the parent/primary organization in the hierarchy.
- ORGANIZATION_NAME — Translated name of the parent organization, sourced from
HOU1.NAME. - SUB_ORGANIZATION_ID — Identifier of the subordinate organization.
- SUB_ORGANIZATION_NAME — Translated name of the subordinate organization, sourced from
HOU2.NAME. - ORGANIZATION_LEVEL — The hierarchy level assigned to the primary organization in
PJI_ORG_DENORM. - SUB_ORGANIZATION_LEVEL — The hierarchy level assigned to the subordinate organization.
- SUB_RELATIVE_LEVEL — A computed column expressing the difference
SUB_ORGANIZATION_LEVEL - ORGANIZATION_LEVEL, giving the relative depth between the two organizations.
Common Use Cases and Queries
This view would typically be used to report on organization roll-ups, level depth, and parent-child relationships within Project Intelligence Discoverer workbooks. Because it is obsolete, queries should be treated as reference patterns rather than production assets.
A representative query selecting parent and child organizations together with their levels is:
SELECT ORGANIZATION_ID, ORGANIZATION_NAME, SUB_ORGANIZATION_ID, SUB_ORGANIZATION_NAME, ORGANIZATION_LEVEL, SUB_ORGANIZATION_LEVEL, SUB_RELATIVE_LEVELFROM PJI_DIS_ORG_HRCHY_VWHERE ORGANIZATION_LEVEL < SUB_ORGANIZATION_LEVELORDER BY ORGANIZATION_NAME, SUB_RELATIVE_LEVEL;
Given the obsolete status and the fact that the view is not implemented in the reference database, alternative current objects such as the HR organization hierarchy views should be evaluated for any replacement reporting requirement.
-
View: PJI_DIS_ORG_HRCHY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_DIS_ORG_HRCHY_V, object_name:PJI_DIS_ORG_HRCHY_V, status:VALID, product: PJI - Project Intelligence , description: Discoverer view of organization hierarchy data. , implementation_dba_data: APPS.PJI_DIS_ORG_HRCHY_V ,
-
View: PJI_DIS_ORG_ROHRCHY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_DIS_ORG_ROHRCHY_V, object_name:PJI_DIS_ORG_ROHRCHY_V, status:VALID, product: PJI - Project Intelligence , description: Discoverer view of organization hierarchy data with subordinate rollup data. , implementation_dba_data: APPS.PJI_DIS_ORG_ROHRCHY_V ,
-
View: PJI_DIS_ORGWT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_DIS_ORGWT_V, object_name:PJI_DIS_ORGWT_V, status:VALID, product: PJI - Project Intelligence , description: Discoverer view of organization work type utilization data. , implementation_dba_data: APPS.PJI_DIS_ORGWT_V ,
-
View: PJI_DIS_ORGJOB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_DIS_ORGJOB_V, object_name:PJI_DIS_ORGJOB_V, status:VALID, product: PJI - Project Intelligence , description: Discoverer view of organization job utilization data. , implementation_dba_data: APPS.PJI_DIS_ORGJOB_V ,
-
View: PJI_DIS_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_DIS_ORG_V, object_name:PJI_DIS_ORG_V, status:VALID, product: PJI - Project Intelligence , description: Discoverer view of organization utilization data. , implementation_dba_data: APPS.PJI_DIS_ORG_V ,
-
View: PJI_DIS_RESWT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_DIS_RESWT_V, object_name:PJI_DIS_RESWT_V, status:VALID, product: PJI - Project Intelligence , description: Discoverer view of resource work type utilization data. , implementation_dba_data: APPS.PJI_DIS_RESWT_V ,
-
View: PJI_DIS_ORGRES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_DIS_ORGRES_V, object_name:PJI_DIS_ORGRES_V, status:VALID, product: PJI - Project Intelligence , description: Discoverer view of organization resource utilization data. , implementation_dba_data: APPS.PJI_DIS_ORGRES_V ,