Search Results igs_pe_alt_pers_id
Overview
The IGS_PE_ALT_PERS_ID table is a core data entity within the Oracle E-Business Suite's now-obsolete Student System (IGS) module. Its primary function is to store a historical and alternative identifier registry for persons within the system. It allows for the association of multiple external or legacy identifiers with a single individual, such as IDs from previous student information systems, government or educational agency identifiers (e.g., OLAA, VTAC), or other institutional codes. This capability is critical for maintaining data integrity and continuity when integrating records from disparate sources or during system migrations. The table's design supports tracking the validity of these identifiers through a start date, enabling a temporal view of the identifiers a person has held.
Key Information Stored
The table's structure is designed to link an alternative identifier to a core person record and classify its type. The primary key is a composite of four columns, ensuring uniqueness for a person's identifier of a specific type from a specific date. Key columns include:
- PE_PERSON_ID: The foreign key linking to the core person record in the HZ_PARTIES table, representing the individual to whom the alternate ID belongs.
- API_PERSON_ID: The actual value of the alternative person identifier being stored.
- PERSON_ID_TYPE: A code classifying the nature of the alternative ID (e.g., 'VTAC', 'OLD_SYS'), referenced via a foreign key to the IGS_PE_PERSON_ID_TYP table.
- START_DT: The date from which this alternative identifier became valid or was associated with the person.
Common Use Cases and Queries
This table is essential for reporting, data reconciliation, and legacy system interface processes. A common use case is identifying a person when only a legacy or external ID is known, such as during an application import from a tertiary admissions center. For reporting, it enables the correlation of historical data from retired systems with current records. A typical query would retrieve the current EBS person details using a known external ID:
SELECT hp.party_name, alt.api_person_id, alt.person_id_type, alt.start_dt
FROM igs_pe_alt_pers_id alt, hz_parties hp
WHERE alt.pe_person_id = hp.party_id
AND alt.api_person_id = '<KNOWN_LEGACY_ID>';
Another pattern involves listing all alternative identifiers for a specific person for an audit trail:
SELECT alt.api_person_id, typ.description, alt.start_dt
FROM igs_pe_alt_pers_id alt, igs_pe_person_id_typ typ
WHERE alt.person_id_type = typ.person_id_type
AND alt.pe_person_id = <PE_PERSON_ID>
ORDER BY alt.start_dt DESC;
Related Objects
The IGS_PE_ALT_PERS_ID table maintains defined foreign key relationships with fundamental person and code tables in the EBS architecture. These relationships are critical for maintaining referential integrity.
- HZ_PARTIES: The master table for all persons, organizations, and groups in Oracle Trading Community Architecture. The join is made on
IGS_PE_ALT_PERS_ID.PE_PERSON_ID = HZ_PARTIES.PARTY_ID. This links every alternative ID to a valid, master party record. - IGS_PE_PERSON_ID_TYP: A code lookup table that defines and describes the valid types of person identifiers. The join is made on
IGS_PE_ALT_PERS_ID.PERSON_ID_TYPE = IGS_PE_PERSON_ID_TYP.PERSON_ID_TYPE. This ensures data quality by restricting the identifier type to a controlled list.
-
Table: IGS_PE_ALT_PERS_ID
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the other ids by which a person is known. eg. OLAA id, VTAC id, old id. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_DA_XML_PERSON_V
12.2.2
product: IGS - Student System (Obsolete) , description: XML element PersonType , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_ST_PROG_ATT_HESA_DETAILS
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for Student Program Attempt HESA Details , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_PERSON_ID_TYPE_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_PID_TYPE_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_PE_PID_TYPE_V describes the person identifier types in the system , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PE_PERSON_ID_TYP
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the type of person ids which may be attributed to a person. eg. OLAA id, VTAC id, old id. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_ALTERNATE_IDS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the various alternate identifiers for a person. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_ALTERNATE_IDS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the various alternate identifiers for a person. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AD_ACT_STATS_PREDIC
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as predicted , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AD_ACT_STATS_INTEREST
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as Interest , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_DUP_MATCHES_PP_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_PE_DUP_MATCHES_PP_V is used for the duplicate information about persons. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_AD_ACT_STATS_INTEREST
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as Interest , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_AD_ACT_STATS_ACCOMP
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type Accomplishments , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AD_ACT_STATS_ACCOMP
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type Accomplishments , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_ALT_PERS_ID_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_AD_ACT_PROFILES_OOCA
12.2.2
product: IGS - Student System (Obsolete) , description: ACT profile components and category for type as Out of Class Accomplishments , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AD_ACT_PROFILES_OOCA
12.2.2
product: IGS - Student System (Obsolete) , description: ACT profile components and category for type as Out of Class Accomplishments , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_AD_ACT_STATS_PREDIC
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as predicted , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_AD_ACT_STATS_HIGHSCH
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as High School , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AD_ACT_STATS_HIGHSCH
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as High School , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SS_PERSON_SEARCH_V
12.2.2
product: IGS - Student System (Obsolete) , description: The entity is used in Self Service to query for a Person , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_AD_ACT_STATS_TEST
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as Test , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AD_ACT_ASSESSMENTS
12.2.2
product: IGS - Student System (Obsolete) , description: ACT assessment details of persons with Reporting Year, Test Date and Test Type , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_DUP_MATCHES_PRIM_PPA_V
12.2.2
product: IGS - Student System (Obsolete) , description: Contains data of a person and his primary address.This view is used in duplicate matching of person. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AD_ACT_STATS_SUBSCORE
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as Sub Test , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_AD_ACT_ASSESSMENTS
12.2.2
product: IGS - Student System (Obsolete) , description: ACT assessment details of persons with Reporting Year, Test Date and Test Type , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AD_ACT_STATS_TEST
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as Test , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_AD_ACT_STATS_SUBSCORE
12.2.2
product: IGS - Student System (Obsolete) , description: ACT Statistical Test Components and category details for type as Sub Test , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_DUP_MATCHES_PPA_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_PE_MATCHES_PPA_V is used for the duplicate information about persons. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AD_ACT_PROFILES_SPS
12.2.2
product: IGS - Student System (Obsolete) , description: ACT profile components and category details for type as SPS Questionnaire , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_AD_ACT_PROFILES_SPS
12.2.2
product: IGS - Student System (Obsolete) , description: ACT profile components and category details for type as SPS Questionnaire , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_API_ALT_PERS_API_ID_V
12.2.2
product: IGS - Student System (Obsolete) , description: Alternate ID for API person id information. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_SUAAI_HIST_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view displays the context information for the student assessment items outcomes history. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_API_ALT_PERS_ID_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_SU_STMPTOUT_V
12.2.2
product: IGS - Student System (Obsolete) , description: Multi org View for student unit attempt outcome records. , implementation_dba_data: Not implemented in this database ,