Search Results assignment_number




Overview

HRIBV_ASGMVORGHRCHY is a view owned by the APPS schema in Oracle E-Business Suite, catalogued under the HRI (Human Resources Intelligence) product family. In the ETRM metadata for 12.1.1 and 12.2.2 this product is flagged as Obsolete, meaning the object is retained for backward compatibility with historical Oracle HRMS Intelligence and Enterprise Data Warehouse (EDW) extractions, but is not part of the current strategic reporting stack. The view presents assignment-level movement within an organization hierarchy — specifically the "Org Hierarchy Within" form of employee movement, where a person's assignment is compared against a prior or related assignment row to derive organizational gain, loss, and hierarchy transition attributes.

Its principal purpose is to flatten the relationship between assignment records, people, organizations, and organization structure versions into a single denormalized row suitable for downstream HR data warehouse loading. Each row carries the originating assignment, a comparison assignment, the source and target organization, and the effective-dated organization hierarchy version in force at that time.

Underlying Base Objects

The view is defined over the following documented objects:

Key Columns

Common Use Cases and Queries

Typical usage is in historical HR intelligence reporting — headcount movement by organization hierarchy, gain/loss analysis, and EDW staging extracts that predate the current OTBI/BICC subject areas.

SELECT organization_name,
       from_organization_name,
       to_organization_name,
       org_hierarchy_version,
       change_date
  FROM apps.hribv_asgmvorghrchy
 WHERE org_structure_version_id = :p_version_id
   AND change_date BETWEEN :p_from AND :p_to;

A second common pattern filters by assignment to trace a specific employee's organizational movement:

SELECT assignment_number, employee_name,
       organization_name, other_organization_name, change_date
  FROM apps.hribv_asgmvorghrchy
 WHERE assignment_id = :p_assignment_id;

Because the view applies HR_SECURITY, results are automatically restricted to the organizations the querying responsibility is permitted to see. Given its obsolete status, new development should target CONCURRENT/BI Publisher extracts against PER_ASSIGNMENTS_F and PER_ORG_STRUCTURE_VERSIONS directly, using this view only where existing legacy interfaces depend upon it.