Search Results igs_pe_hz_rel
Overview
The IGS.IGS_PE_HZ_REL table is a core relationship table within the Oracle E-Business Suite Student System (IGS) product family. Its documented purpose is to record family details of a person, capturing the manner in which two parties—typically a student and a related individual—are connected, together with the flags and attributes that qualify that relationship. In EBS 12.1.1 and 12.2.2 the object is owned by the IGS schema and carries a VALID status in the ETRM data dictionary. Because the table stores only the association between persons and the descriptors of that association, it functions as a relationship or junction structure rather than as an independent master entity.
The heuristic Data Vault classification mined from the foreign-key structure is standalone. From a dimensional or Data Vault perspective, this suggests modeling IGS_PE_HZ_REL as a link (relationship) table whose grain is one row per directional relationship. Each row would then serve as an association between party hubs, with the several "REP_" columns acting as role or classification attributes on that link rather than as transactional facts. The absence of a documented upstream hub dependency reinforces that the table is self-contained and materialized directly from Student System processing.
Key Information Stored
The documented physical schema for 12.1.1 contains sixteen columns. The most significant are:
- RELATIONSHIP_ID — part of the primary key; the identifier of the relationship itself.
- DIRECTIONAL_FLAG — the second primary key column, indicating whether the relationship is expressed directionally (for example, from one party toward another).
- PRIMARY and SECONDARY — the two parties whose connection is being recorded.
- JOINT_SALUTATION — the salutation to use when addressing both parties jointly.
- NEXT_TO_KIN — identifies the person designated as next of kin.
- REP_FACULTY, REP_STAFF, REP_STUDENT, REP_ALUMNI — role flags indicating whether the individual also represents faculty, staff, student, or alumni populations.
- EMERGENCY_CONTACT_FLAG — marks the relationship as an emergency contact.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the standard WHO-column audit trail.
The surrogate primary key is IGS_PE_HZ_REL_PK, defined on the composite of RELATIONSHIP_ID and DIRECTIONAL_FLAG. That same unique index is the only documented business-key candidate, meaning no separate natural unique constraint is exposed in the ETRM metadata.
Common Use Cases and Queries
Typical reporting and integration scenarios include student emergency-contact listings, next-of-kin extracts for regulatory reporting, and alumni or faculty family rosters. A representative query returns the parties and their role flags for a given relationship identifier:
SELECT relationship_id, directional_flag, primary, secondary, next_to_kin, emergency_contact_flag FROM igs.igs_pe_hz_rel;SELECT * FROM igs.igs_pe_hz_rel WHERE emergency_contact_flag = 'Y';SELECT relationship_id, primary, secondary FROM igs.igs_pe_hz_rel WHERE rep_student = 'Y' AND rep_alumni = 'Y';
Because the table is standalone, extracts for downstream persons or party hubs should be joined on the PRIMARY and SECONDARY columns to the corresponding person identifiers. Analysts commonly filter on NEXT_TO_KIN or EMERGENCY_CONTACT_FLAG to produce contact directories, and on the REP_* flags to segment family members who are themselves affiliated with the institution.
Related Objects
As a standalone relationship structure, IGS_PE_HZ_REL is referenced or supplemented by the following objects in the Student System and Trading Community models:
- HZ_PARTIES — the party master holding person records identified by the PRIMARY and SECONDARY columns.
- HZ_RELATIONSHIPS — the standard Trading Community relationship entity that provides context for party-to-party links.
- IGS_PE_HZ_PERSON / person tables in IGS — supply student, faculty, and alumni identity details for the REP_* role flags.
- IGS_PE_HZ_REL_PK — the unique index enforcing uniqueness on (RELATIONSHIP_ID, DIRECTIONAL_FLAG).
- Relationship APIs in IGS — the packaged procedures that insert and maintain family relationship rows consumed by this table.
Join these objects on the person identifier derived from the PRIMARY and SECONDARY columns to obtain complete party names and demographic attributes alongside the documented relationship flags.
-
Table: IGS_PE_HZ_REL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_HZ_REL, object_name:IGS_PE_HZ_REL, status:VALID, product: IGS - Student System , description: Table to record family details of a person , implementation_dba_data: IGS.IGS_PE_HZ_REL ,
-
Table: IGS_PE_HZ_REL
12.2.2
product: IGS - Student System (Obsolete) , description: Table to record family details of a person , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_PE_HZ_REL_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.IGS_PE_HZ_REL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PE_HZ_REL, status:VALID,
-
VIEW: APPS.IGSFV_FAMILY_RELATIONSHIPS
12.1.1
-
VIEW: APPS.IGSBV_FAMILY_RELATIONSHIPS
12.1.1
-
TABLE: IGS.IGS_PE_HZ_REL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_HZ_REL, object_name:IGS_PE_HZ_REL, status:VALID,
-
PACKAGE BODY: APPS.IGS_PE_HZ_REL_PKG
12.1.1
-
View: IGS_PE_HZ_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_HZ_REL_V, object_name:IGS_PE_HZ_REL_V, status:VALID, product: IGS - Student System , description: View based on join between IGS_PE_HZ_REL and HZ_RELATIONSHIPS , implementation_dba_data: APPS.IGS_PE_HZ_REL_V ,
-
PACKAGE BODY: APPS.IGS_PE_HZ_REL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_HZ_REL_PKG, status:VALID,
-
View: IGSBV_FAMILY_RELATIONSHIPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_FAMILY_RELATIONSHIPS, object_name:IGSBV_FAMILY_RELATIONSHIPS, status:VALID, product: IGS - Student System , description: This entity contains information about the family relationships of a person. , implementation_dba_data: APPS.IGSBV_FAMILY_RELATIONSHIPS ,
-
View: IGSFV_FAMILY_RELATIONSHIPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_FAMILY_RELATIONSHIPS, object_name:IGSFV_FAMILY_RELATIONSHIPS, status:VALID, product: IGS - Student System , description: This entity contains information about the family relationships of a person. , implementation_dba_data: APPS.IGSFV_FAMILY_RELATIONSHIPS ,
-
View: IGS_PE_HZ_REL_V
12.2.2
product: IGS - Student System (Obsolete) , description: View based on join between IGS_PE_HZ_REL and HZ_RELATIONSHIPS , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_SV_BATCH_PROCESS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_SV_BATCH_PROCESS_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_PE_PERSON_SS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_PERSON_SS_PKG, status:VALID,
-
View: IGSBV_FAMILY_RELATIONSHIPS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the family relationships of a person. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_FAMILY_RELATIONSHIPS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the family relationships of a person. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_HZ_REL_V
12.1.1
-
VIEW: APPS.IGSBV_FAMILY_RELATIONSHIPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_FAMILY_RELATIONSHIPS, object_name:IGSBV_FAMILY_RELATIONSHIPS, status:VALID,
-
VIEW: APPS.IGSFV_FAMILY_RELATIONSHIPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_FAMILY_RELATIONSHIPS, object_name:IGSFV_FAMILY_RELATIONSHIPS, status:VALID,
-
TABLE: IGS.IGS_OR_INST_CON_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_OR_INST_CON_INT, object_name:IGS_OR_INST_CON_INT, status:VALID,
-
TABLE: IGS.IGS_AD_RELATIONS_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_RELATIONS_INT_ALL, object_name:IGS_AD_RELATIONS_INT_ALL, status:VALID,
-
VIEW: APPS.IGS_PE_HZ_REL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_HZ_REL_V, object_name:IGS_PE_HZ_REL_V, status:VALID,
-
APPS.IGS_PE_PERSON_SS_PKG dependencies on IGS_PE_HZ_REL
12.1.1
-
APPS.IGS_PE_HZ_REL_PKG dependencies on IGS_PE_HZ_REL
12.1.1
-
APPS.IGS_SV_BATCH_PROCESS_PKG dependencies on IGS_PE_HZ_REL
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_PE_HZ_REL_PKG dependencies on HZ_RELATIONSHIPS
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_PE_PERSON_SS_PKG SQL Statements
12.1.1
-
APPS.IGS_PE_HZ_REL_PKG dependencies on HZ_PARTIES
12.1.1
-
APPS.IGS_PE_PERSON_SS_PKG dependencies on HZ_RELATIONSHIPS
12.1.1
-
APPS.IGS_PE_HZ_REL_PKG dependencies on IGS_SC_GEN_001
12.1.1
-
APPS.IGS_PE_HZ_REL_PKG dependencies on IGS_PE_HZ_REL_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_PE_PERSON_SS_PKG
12.1.1
-
APPS.IGS_SV_BATCH_PROCESS_PKG dependencies on HZ_RELATIONSHIPS
12.1.1
-
APPS.IGS_PE_HZ_REL_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_SV_BATCH_PROCESS_PKG SQL Statements
12.1.1
-
APPS.IGS_SV_BATCH_PROCESS_PKG dependencies on HZ_PARTIES
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.IGS_SV_BATCH_PROCESS_PKG
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,