Search Results subro_absolute_level




Overview

The view APPS.PJI_DIS_SUP_ROHRCHY_V is a Project Intelligence (PJI) discoverer view that exposes resource hierarchy data combined with subordinate rollup information. It is a denormalized, reporting-oriented object intended primarily for Oracle Discoverer workbooks and other ad hoc analytical reporting against project resource hierarchies. The view flattens supervisor / subordinate / subordinate-of-subordinate relationships into a single row per hierarchy path, allowing report authors to navigate multi-level resource rollups without writing recursive SQL.

Its status is VALID and it is owned by the APPS schema, which is typical for EBS reporting views that reside alongside the applications tables. Because it belongs to the PJI product, its consumption is intended for Project Intelligence and Project Management reporting contexts rather than for transactional processing. In Oracle EBS 12.1.1 and 12.2.2 the view definition and column set remain consistent, making it a stable reporting artifact across both releases.

Underlying Base Objects

Although referenced base objects are not separately documented in the ETRM metadata, the view text reveals its dependencies clearly. It joins four objects:

  • HRI_CS_SUPHRO_V — the supervisor/subordinate hierarchy source view (aliased MGR) that supplies the level and person/assignment identifiers.
  • PER_ALL_PEOPLE_F aliased SUP — resolves the supervisor person's full name.
  • PER_ALL_PEOPLE_F aliased SUB — resolves the subordinate person's full name.
  • PER_ALL_PEOPLE_F aliased SUBRO — resolves the subordinate-of-subordinate person's full name.

The join is date-effective: the hierarchy EFFECTIVE_START_DATE must fall between each person record's EFFECTIVE_START_DATE and EFFECTIVE_END_DATE. Only rows where PRIMARY_HIERARCHY_FLAG_CODE = 'Y' are returned, restricting output to the primary resource hierarchy. The HRI_CS_SUPHRO_V object is part of the Oracle Human Resources Intelligence common schema, which underpins several PJI reporting views.

Key Columns

The view exposes hierarchy depth and relationship columns together with identity and date attributes:

Common Use Cases and Queries

Typical uses include building Discoverer reports on resource rollups, reconciling time or cost by management hierarchy, and extracting hierarchy extracts for downstream analytics. A representative query filtering on the level columns is:

  • SELECT sup_name, sub_name, subro_name, subro_absolute_level FROM apps.pji_dis_sup_rohrchy_v WHERE subro_absolute_level = 3 AND SYSDATE BETWEEN effective_start_date AND effective_end_date;
  • Filtering on subro_sup_relative_level or subro_sub_relative_level to isolate direct versus indirect rollups.

Because person names are sourced from date-effective records, queries should always constrain on EFFECTIVE_START_DATE / EFFECTIVE_END_DATE to avoid duplicate or stale rows returning across the hierarchy.