Search Results igs_pe_eit
Overview
IGS_PE_EIT is a table in the IGS (Student System) product schema of Oracle E-Business Suite, valid in both 12.1.1 and 12.2.2. It holds details of a person's "extra information" — that is, additional, institution-defined attributes attached to a person record beyond what the standard person model captures. In EBS, this table functions as the extensibility layer for person data within the Student System: rather than adding institution-specific columns to the core person entity, IGS stores those values as typed, time-bounded rows in IGS_PE_EIT.
From a dimensional modeling perspective, the table is best characterized as satellite-leaning. Its grain is one row per person, per information type, per effective start date, and it hangs off a person hub (HZ_PARTIES via PERSON_ID) with effective-dated attribute values. Reflecting that structure, it should be modeled as a satellite of the person hub rather than as an independent hub or link.
Key Information Stored
The table carries fifteen documented columns, of which the following are the most significant:
- PE_EIT_ID — the surrogate primary key, enforced by IGS_PE_EIT_PK and also indexed by unique index IGS_PE_EIT_U1.
- PERSON_ID — the foreign key to HZ_PARTIES identifying the person to whom the extra information belongs.
- INFORMATION_TYPE — the classification of the extra information being stored, allowing a single table to hold many distinct attribute categories.
- START_DATE / END_DATE — the effective-dating pair that bounds the validity of each row, enabling historical tracking of person attributes.
- PEI_INFORMATION1 through PEI_INFORMATION5 — a set of five generic, flexfield-style value columns that carry the actual extra information content for each INFORMATION_TYPE.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the standard EBS audit columns recording who created and last modified each row and when.
The business-key candidate is captured by unique index IGS_PE_EIT_U2, defined over (PERSON_ID, INFORMATION_TYPE, START_DATE). This confirms that a person cannot hold two rows of the same information type beginning on the same date, and distinguishes the true business identity of a row from the surrogate PE_EIT_ID.
Common Use Cases and Queries
Typical uses involve retrieving or reporting the current and historical extra information for a person, filtering by information type, and joining that data back to the person and party records. A representative pattern retrieves currently effective extra information for a given person:
- SELECT pei.information_type, pei.pei_information1, pei.pei_information2, pei.start_date, pei.end_date FROM igs.igs_pe_eit pei WHERE pei.person_id = :person_id AND TRUNC(SYSDATE) BETWEEN pei.start_date AND NVL(pei.end_date, TRUNC(SYSDATE));
- Joining to HZ_PARTIES to obtain party name and identifiers: SELECT p.party_name, pei.information_type, pei.pei_information1 FROM igs.igs_pe_eit pei JOIN hz.hz_parties p ON p.party_id = pei.person_id;
- Reporting the history of a single information type for a person, ordered by START_DATE descending, to trace changes over time.
- Extracting all persons with a specific INFORMATION_TYPE for downstream integration or compliance reporting, using the INFORMATION_TYPE column as the primary filter.
Related Objects
The table participates in a small, well-defined relationship set:
- HZ_PARTIES — referenced through IGS_PE_EIT.PERSON_ID, this is the master party record and the principal parent of the extra information.
- IGS_PE_EIT_PK — the primary key constraint on PE_EIT_ID.
- IGS_PE_EIT_U1 — unique index on PE_EIT_ID.
- IGS_PE_EIT_U2 — unique index on (PERSON_ID, INFORMATION_TYPE, START_DATE), defining the business key.
- Other IGS person and person-extra-information objects that share the PERSON_ID reference and the PEI_INFORMATION flexible attribute pattern typically surround this table in the Student System data model.
Because it is the extensibility store for person data, IGS_PE_EIT should be treated as a dependent satellite: any integration or reporting that consumes person extra information must resolve PERSON_ID to HZ_PARTIES and respect the START_DATE/END_DATE effective-dating rules encoded in the unique key.
-
Table: IGS_PE_EIT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_EIT, object_name:IGS_PE_EIT, status:VALID, product: IGS - Student System , description: Holds details of a person's extra information , implementation_dba_data: IGS.IGS_PE_EIT ,
-
Table: IGS_PE_EIT
12.2.2
product: IGS - Student System (Obsolete) , description: Holds details of a person's extra information , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_CITIZENSHIP_RES_STATUSES
12.1.1
-
VIEW: APPS.IGSFV_RESIDENCY_COUNTRIES
12.1.1
-
APPS.IGS_PE_EIT_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_PE_EIT_COUNTRY_V
12.1.1
-
VIEW: APPS.IGS_PE_EIT_PERM_RES_V
12.1.1
-
VIEW: APPS.IGSBV_RESIDENCY_STATES
12.1.1
-
VIEW: APPS.IGSBV_RESIDENCY_COUNTRIES
12.1.1
-
VIEW: APPS.IGSBV_LEGAL_PERM_RESIDENCES
12.1.1
-
VIEW: APPS.IGSFV_RESIDENCY_STATES
12.1.1
-
VIEW: APPS.IGS_PE_EIT_STATE_V
12.1.1
-
SYNONYM: APPS.IGS_PE_EIT
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PE_EIT, status:VALID,
-
VIEW: APPS.IGSFV_CITIZENSHIP_RES_STATUSES
12.1.1
-
VIEW: APPS.IGSFV_LEGAL_PERM_RESIDENCES
12.1.1
-
VIEW: APPS.IGS_PE_EIT_RESTATUS_V
12.1.1
-
TABLE: IGS.IGS_PE_EIT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_EIT, object_name:IGS_PE_EIT, status:VALID,
-
View: IGSBV_CITIZENSHIP_RES_STATUSES
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the person's citizenship residency status. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PE_EIT_INT
12.2.2
product: IGS - Student System (Obsolete) , description: contains the person extra information (such as Country of Physical Residence, State of Residence, Citizenship/Residency Status) to be imported to IGS_PE_EIT. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_PE_EIT_PKG
12.1.1
-
View: IGS_PE_EIT_COUNTRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_EIT_COUNTRY_V, object_name:IGS_PE_EIT_COUNTRY_V, status:VALID, product: IGS - Student System , description: Holds details of a person's Country , implementation_dba_data: APPS.IGS_PE_EIT_COUNTRY_V ,
-
View: IGSFV_CITIZENSHIP_RES_STATUSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_CITIZENSHIP_RES_STATUSES, object_name:IGSFV_CITIZENSHIP_RES_STATUSES, status:VALID, product: IGS - Student System , description: This entity contains information about the person's citizenship residency status. , implementation_dba_data: APPS.IGSFV_CITIZENSHIP_RES_STATUSES ,
-
View: IGS_PE_EIT_PERM_RES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_EIT_PERM_RES_V, object_name:IGS_PE_EIT_PERM_RES_V, status:VALID, product: IGS - Student System , description: Person Permanent Residency View. , implementation_dba_data: APPS.IGS_PE_EIT_PERM_RES_V ,
-
View: IGS_PE_EIT_COUNTRY_V
12.2.2
product: IGS - Student System (Obsolete) , description: Holds details of a person's Country , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_CO_GEN_003
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_CO_GEN_003, status:VALID,
-
View: IGS_PE_EIT_PERM_RES_V
12.2.2
product: IGS - Student System (Obsolete) , description: Person Permanent Residency View. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_PE_GEN_004 SQL Statements
12.1.1
-
View: IGSBV_LEGAL_PERM_RESIDENCES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_LEGAL_PERM_RESIDENCES, object_name:IGSBV_LEGAL_PERM_RESIDENCES, status:VALID, product: IGS - Student System , description: This entity contains information about the person's Legal Permanent Residence Country. , implementation_dba_data: APPS.IGSBV_LEGAL_PERM_RESIDENCES ,
-
Table: IGS_PE_EIT_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_EIT_INT, object_name:IGS_PE_EIT_INT, status:VALID, product: IGS - Student System , description: contains the person extra information (such as Country of Physical Residence, State of Residence, Citizenship/Residency Status) to be imported to IGS_PE_EIT. , implementation_dba_data: IGS.IGS_PE_EIT_INT ,
-
View: IGSFV_RESIDENCY_COUNTRIES
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the person's residency country. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_LEGAL_PERM_RESIDENCES
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the person's Legal Permanent Residence Country. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_RESIDENCY_COUNTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_RESIDENCY_COUNTRIES, object_name:IGSBV_RESIDENCY_COUNTRIES, status:VALID, product: IGS - Student System , description: This entity contains information about the person's residency country. , implementation_dba_data: APPS.IGSBV_RESIDENCY_COUNTRIES ,
-
View: IGSFV_RESIDENCY_COUNTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_RESIDENCY_COUNTRIES, object_name:IGSFV_RESIDENCY_COUNTRIES, status:VALID, product: IGS - Student System , description: This entity contains information about the person's residency country. , implementation_dba_data: APPS.IGSFV_RESIDENCY_COUNTRIES ,
-
View: IGS_PE_EIT_STATE_V
12.2.2
product: IGS - Student System (Obsolete) , description: Holds details of a person's State , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_EIT_RESTATUS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Holds details of a person's Residential Status , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_LEGAL_PERM_RESIDENCES
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the person's Legal Permanent Residence Country. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_RESIDENCY_COUNTRIES
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the person's residency country. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_RESIDENCY_STATES
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the person's residency state. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_EIT_STATE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_EIT_STATE_V, object_name:IGS_PE_EIT_STATE_V, status:VALID, product: IGS - Student System , description: Holds details of a person's State , implementation_dba_data: APPS.IGS_PE_EIT_STATE_V ,
-
PACKAGE BODY: APPS.IGS_PE_EIT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_EIT_PKG, status:VALID,
-
View: IGSFV_RESIDENCY_STATES
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the person's residency state. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_RESIDENCY_STATES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_RESIDENCY_STATES, object_name:IGSBV_RESIDENCY_STATES, status:VALID, product: IGS - Student System , description: This entity contains information about the person's residency state. , implementation_dba_data: APPS.IGSBV_RESIDENCY_STATES ,
-
View: IGSBV_CITIZENSHIP_RES_STATUSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_CITIZENSHIP_RES_STATUSES, object_name:IGSBV_CITIZENSHIP_RES_STATUSES, status:VALID, product: IGS - Student System , description: This entity contains information about the person's citizenship residency status. , implementation_dba_data: APPS.IGSBV_CITIZENSHIP_RES_STATUSES ,
-
View: IGSFV_LEGAL_PERM_RESIDENCES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_LEGAL_PERM_RESIDENCES, object_name:IGSFV_LEGAL_PERM_RESIDENCES, status:VALID, product: IGS - Student System , description: This entity contains information about the person's Legal Permanent Residence Country. , implementation_dba_data: APPS.IGSFV_LEGAL_PERM_RESIDENCES ,
-
View: IGS_PE_EIT_RESTATUS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_EIT_RESTATUS_V, object_name:IGS_PE_EIT_RESTATUS_V, status:VALID, product: IGS - Student System , description: Holds details of a person's Residential Status , implementation_dba_data: APPS.IGS_PE_EIT_RESTATUS_V ,
-
View: IGSFV_CITIZENSHIP_RES_STATUSES
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the person's citizenship residency status. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_RESIDENCY_STATES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_RESIDENCY_STATES, object_name:IGSFV_RESIDENCY_STATES, status:VALID, product: IGS - Student System , description: This entity contains information about the person's residency state. , implementation_dba_data: APPS.IGSFV_RESIDENCY_STATES ,
-
PACKAGE BODY: APPS.IGS_AD_GEN_007
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_GEN_007, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_IMP_026
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_IMP_026, status:VALID,
-
VIEW: APPS.IGSBV_LEGAL_PERM_RESIDENCES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_LEGAL_PERM_RESIDENCES, object_name:IGSBV_LEGAL_PERM_RESIDENCES, status:VALID,