Search Results hribv_org_hrchy_rollup
Overview
HRIBV_ORG_HRCHY_ROLLUP is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the HRI (Human Resources Intelligence) product family. The object has a status of VALID under both 12.1.1 and 12.2.2, and it is designed to present a flattened, denormalized representation of the organization hierarchy defined in Oracle HRMS. It exposes hierarchy structures, their versions and effective dates, and the rolled-up organization and sub-organization relationships associated with each structure version.
The view is not a transactional object; it is a semantic layer intended for reporting, extraction, and integration consumption. Analysts and developers query it to reconstruct a hierarchy as it existed for a given version, and to associate organizations within that hierarchy with their parent/sub-organization placements. Because the view surfaces both surrogate identifiers and decoded descriptive names, it supports drill-down reporting and data warehouse loading without requiring joins back to the HRMS base tables.
Underlying Base Objects
The documented base objects for this view are PER_ORGANIZATION_STRUCTURES (SYNONYM), PER_ORG_STRUCTURE_VERSIONS (SYNONYM), HRI_ORG_HRCHY_SUMMARY (SYNONYM), HR_ALL_ORGANIZATION_UNITS_TL (SYNONYM), plus the packages HR_BIS and HR_GENERAL. All joins are equijoins keyed on identifier columns:
- PER_ORGANIZATION_STRUCTURES supplies the hierarchy definition, linked to versions on ORGANIZATION_STRUCTURE_ID.
- PER_ORG_STRUCTURE_VERSIONS supplies version attributes, joined via ORG_STRUCTURE_VERSION_ID.
- HRI_ORG_HRCHY_SUMMARY appears twice (aliased OSH and SOSH), joined on ORG_STRUCTURE_VERSION_ID and on SUB_ORGANIZATION_ID = ORGANIZATION_ID, producing the organization-to-sub-organization rollup.
- HR_ALL_ORGANIZATION_UNITS_TL appears three times (BGRT, ORGT, SORGT) to resolve the business group, organization, and sub-organization names, filtered by USERENV('LANG').
- HR_BIS.BIS_DECODE_LOOKUP decodes the PRIMARY_STRUCTURE_FLAG into a YES_NO value.
- HR_GENERAL.END_OF_TIME supplies the default upper bound when DATE_TO is null.
Key Columns
- HIERARCHY_NAME — name of the organization structure.
- HRCHY_BUSINESS_GROUP_NAME — business group owning the hierarchy.
- HRCHY_PRIMARY_FLAG and HRCHY_PRIMARY_FLAG_CODE — decoded and raw primary-structure indicator.
- HIERARCHY_VERSION — version number of the structure.
- HIERARCHY_VERSION_DATE_FROM / DATE_TO — effective start and end dates of the version; these are the columns matched by a search on "hierarchy_version_date_from".
- HRCHY_VERSION_DATE_TO_NN — NVL(DATE_TO, HR_GENERAL.END_OF_TIME) for open-ended versions.
- ORGANIZATION_NAME / ORGANIZATION_LEVEL — organization and its depth in the hierarchy.
- SUB_ORGANIZATION_NAME / SUB_ORGANIZATION_LEVEL — sub-organization and its level; SUB_RO_ORGANIZATION_LEVEL is marked NOT NULL.
- ORG_HIERARCHY_ID, ORG_HRCHY_VERSION_ID, ORGANIZATION_ID, SUB_ORGANIZATION_ID and related business group ID columns — surrogate keys for joins.
Common Use Cases and Queries
The most frequent scenario is locating the hierarchy version effective for a given date, which is why HIERARCHY_VERSION_DATE_FROM is a common search term. A typical query filters on that column:
SELECT HIERARCHY_NAME, HIERARCHY_VERSION, HIERARCHY_VERSION_DATE_FROM, HIERARCHY_VERSION_DATE_TO, ORGANIZATION_NAME, ORGANIZATION_LEVEL, SUB_ORGANIZATION_NAME FROM APPS.HRIBV_ORG_HRCHY_ROLLUP WHERE HIERARCHY_VERSION_DATE_FROM <= :p_effective_date AND HRCHY_VERSION_DATE_TO_NN >= :p_effective_date ORDER BY HIERARCHY_NAME, HIERARCHY_VERSION, ORGANIZATION_LEVEL;
Other uses include extracting the full hierarchy for a specific version, listing all organizations under a business group, or feeding HR data marts with a point-in-time hierarchy snapshot. Because the view handles null end-dates via HRCHY_VERSION_DATE_TO_NN, it is well suited to "as-of" reporting without additional NVL logic in the consuming query.
-
View: HRIBV_ORG_HRCHY_ROLLUP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HRI.HRIBV_ORG_HRCHY_ROLLUP, object_name:HRIBV_ORG_HRCHY_ROLLUP, status:VALID, product: HRI - Human Resources Intelligence , implementation_dba_data: APPS.HRIBV_ORG_HRCHY_ROLLUP ,
-
View: HRIBV_ORG_HRCHY_ROLLUP
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HRI.HRIBV_ORG_HRCHY_ROLLUP, object_name:HRIBV_ORG_HRCHY_ROLLUP, status:VALID, product: HRI - Human Resources Intelligence (Obsolete) , implementation_dba_data: APPS.HRIBV_ORG_HRCHY_ROLLUP ,
-
SYNONYM: PUBLIC.HRIBV_ORG_HRCHY_ROLLUP
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:HRIBV_ORG_HRCHY_ROLLUP, status:VALID,
-
VIEW: APPS.HRIBV_ORG_HRCHY_ROLLUP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HRI.HRIBV_ORG_HRCHY_ROLLUP, object_name:HRIBV_ORG_HRCHY_ROLLUP, status:VALID,
-
SYNONYM: APPS.HRI_ORG_HRCHY_SUMMARY
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HRI_ORG_HRCHY_SUMMARY, status:VALID,
-
SYNONYM: APPS.HRI_ORG_HRCHY_SUMMARY
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HRI_ORG_HRCHY_SUMMARY, status:VALID,
-
VIEW: APPS.HRIBV_ORG_HRCHY_ROLLUP
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HRI.HRIBV_ORG_HRCHY_ROLLUP, object_name:HRIBV_ORG_HRCHY_ROLLUP, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.PER_ORGANIZATION_STRUCTURES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PER_ORGANIZATION_STRUCTURES, status:VALID,
-
SYNONYM: APPS.PER_ORGANIZATION_STRUCTURES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PER_ORGANIZATION_STRUCTURES, status:VALID,
-
SYNONYM: APPS.PER_ORG_STRUCTURE_VERSIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PER_ORG_STRUCTURE_VERSIONS, status:VALID,
-
SYNONYM: APPS.PER_ORG_STRUCTURE_VERSIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PER_ORG_STRUCTURE_VERSIONS, status:VALID,
-
PACKAGE: APPS.HR_BIS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_BIS, status:VALID,
-
PACKAGE: APPS.HR_BIS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_BIS, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS_TL, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS_TL, status:VALID,
-
eTRM - HRI Tables and Views
12.2.2
description: Supervisor Hierarchy Summary Table ,
-
eTRM - HRI Tables and Views
12.1.1
-
eTRM - HRI Tables and Views
12.2.2
description: Supervisor Hierarchy Summary Table ,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - HRI Tables and Views
12.1.1