Search Results pe_int_perm_res
Overview
APPS.IGS_PE_EIT_PERM_RES_V is a reporting view in the Oracle E-Business Suite, delivered as part of the Student System (IGS) product family. It exposes a filtered, decoded projection of the IGS_PE_EIT extra-information table restricted to a single information type: permanent residency records identified by the discriminator value PE_INT_PERM_RES. The user search term "pe_int_perm_res" corresponds directly to that INFORMATION_TYPE literal embedded in the view's WHERE clause, confirming that this view is the intended access point for permanent-residency data held in the generic person extra-information framework.
The view's role is to present person-level permanent-residency attributes in a denormalized, human-readable form suitable for reporting, extracts, and downstream integration. Rather than requiring callers to know the underlying positional extra-information columns (PEI_INFORMATION1 through PEI_INFORMATIONn), the view renames and joins them, and it resolves the country code into a descriptive territory name. It is a read-only construct and carries no documented base table ownership of its own; all data resides in the referenced base objects.
Underlying Base Objects
The documented view text defines the object over two sources:
- IGS_PE_EIT — the core person extra-information table that stores arbitrary, user-defined attributes keyed by person and information type. Incremental extra-information slots are exposed as PEI_INFORMATION1..n columns.
- FND_TERRITORIES_VL — the multilingual territory (country) validation view, joined on TERRITORY_CODE to translate the stored territory code into its short name.
The join predicate is T.PEI_INFORMATION1 = TER.TERRITORY_CODE, combined with the filter T.INFORMATION_TYPE = 'PE_INT_PERM_RES'. The ETRM metadata for 12.2.2 records no separately documented referenced base objects beyond this view text, so the relationship is a straightforward inner join between the extra-information table and the territories validation view. Because it is an inner join, rows whose PEI_INFORMATION1 value does not match a valid, translated territory code are excluded from the result set.
Key Columns
- ROW_ID — the ROWID of the underlying IGS_PE_EIT row, provided for uniquely identifying source records.
- PE_EIT_ID — primary identifier of the extra-information record.
- PERSON_ID — the person to whom the permanent-residency information belongs; the primary linkage key for joining to person and student records.
- INFORMATION_TYPE — always
PE_INT_PERM_RESin this view, identifying the record category. - PERM_RES_CNTRY — the permanent-residency country, sourced from PEI_INFORMATION1 and holding the territory code.
- MEANING — the translated territory short name from FND_TERRITORIES_VL, giving the readable country description.
- DOCUMENT_NUM — sourced from PEI_INFORMATION2, typically the residency or supporting document reference.
- START_DATE / END_DATE — the effective period of the residency record.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard audit columns describing record creation and maintenance.
Common Use Cases and Queries
The view is typically used to report permanent-residency status for a person or cohort, to feed downstream residency determinations, and to produce extracts requiring country descriptions rather than raw codes. A representative query follows:
- Current residency by person:
SELECT person_id, perm_res_cntry, meaning, document_num, start_date, end_date FROM APPS.IGS_PE_EIT_PERM_RES_V WHERE person_id = :p_person_id AND (end_date IS NULL OR end_date >= SYSDATE); - Residency by country across a population:
SELECT meaning, COUNT(*) FROM APPS.IGS_PE_EIT_PERM_RES_V GROUP BY meaning ORDER BY 2 DESC; - Records missing a document reference:
SELECT person_id, meaning, start_date FROM APPS.IGS_PE_EIT_PERM_RES_V WHERE document_num IS NULL; - Effective-dated listing: filter on START_DATE and END_DATE to isolate residency records active at a point in time.
Because the view is read-only and derived, it should be queried rather than modified directly; maintenance of permanent-residency data is performed against IGS_PE_EIT through the appropriate Student System maintenance functions.
-
VIEW: APPS.IGS_PE_EIT_PERM_RES_V
12.1.1
-
VIEW: APPS.IGSFV_LEGAL_PERM_RESIDENCES
12.1.1
-
VIEW: APPS.IGSBV_LEGAL_PERM_RESIDENCES
12.1.1
-
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 ,
-
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: 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_PERM_RES_V
12.2.2
product: IGS - Student System (Obsolete) , description: Person Permanent Residency View. , implementation_dba_data: Not implemented in this database ,
-
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: 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 ,
-
PACKAGE BODY: APPS.IGS_PE_GEN_004
12.1.1
-
APPS.IGS_AD_IMP_026 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_IMP_026
12.1.1
-
APPS.IGS_PE_GEN_004 dependencies on IGS_PE_EIT_PKG
12.1.1
-
APPS.IGS_PE_GEN_004 dependencies on IGS_PE_EIT
12.1.1
-
APPS.IGS_PE_GEN_004 dependencies on FND_PROFILE
12.1.1
-
PACKAGE BODY: APPS.IGS_PE_EIT_PKG
12.1.1
-
APPS.IGS_PE_EIT_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_AD_IMP_026 dependencies on IGS_PE_EIT
12.1.1
-
APPS.IGS_AD_IMP_026 dependencies on IGS_AD_INTERFACE_ALL
12.1.1
-
APPS.IGS_AD_IMP_026 dependencies on IGS_PE_EIT_INT
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_EIT_INT
12.1.1
-
APPS.IGS_AD_IMP_026 dependencies on IGS_AD_INTERFACE
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 dependencies on IGS_PE_CITIZEN_INT
12.1.1
-
APPS.IGS_PE_PERS_IMP_001 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PE_PERS_IMP_001
12.1.1