Search Results igs_pe_visa
Overview
IGS_PE_VISA is a transactional table within the Oracle EBS Student System (IGS) product family, owned by the IGS schema. Its documented purpose is to contain all information related to a visa record associated with an individual tracked in the institution's person and party infrastructure. In Oracle EBS 12.1.1 and 12.2.2, the table resides in the IGS schema and is marked VALID in the ETRM repository, confirming it is an active, supported object at both release levels.
The table records visa details for persons managed by the Student System, linking each visa to a person, an optional passport, and an optional agent party. From a Data Vault modeling perspective, the metadata's heuristic classification is satellite-leaning. In practice this means IGS_PE_VISA functions primarily as a descriptive satellite attached to person and party hubs (HZ_PARTIES) and to the passport hub (IGS_PE_PASSPORT), carrying the attribute history of visa issuance. The primary key IGS_PE_VISA_PK on VISA_ID supplies the surrogate key, while foreign key columns such as PERSON_ID, AGENT_PERSON_ID, and PASSPORT_ID supply the hub or link references.
Key Information Stored
The documented schema for ETRM 12.1.1 contains 39 columns. The most significant are:
- VISA_ID — the surrogate primary key, enforced by IGS_PE_VISA_PK. It uniquely identifies a visa record.
- PERSON_ID — the party for whom the visa is recorded; joins to HZ_PARTIES.
- VISA_TYPE, VISA_NUMBER, and VISA_CATEGORY — classification and identification attributes of the visa.
- VISA_ISSUE_DATE and VISA_EXPIRY_DATE — the effective period of the visa, used for eligibility and compliance reporting.
- VISA_ISSUING_POST and VISA_ISSUING_COUNTRY — the authority and jurisdiction that issued the visa.
- PASSPORT_ID — the associated passport record; joins to IGS_PE_PASSPORT.
- AGENT_PERSON_ID, AGENT_CONTACT_NAME, and AGENT_ORG_UNIT_CD — the sponsoring or processing agent associated with the visa; AGENT_PERSON_ID joins to HZ_PARTIES.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE20 — the standard Oracle EBS descriptive flexfield container.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, and LAST_UPDATE_LOGIN — the standard WHO audit columns.
A second unique index, IGS_PE_VISA_U1, is defined on PERSON_ID, VISA_TYPE, and VISA_ISSUE_DATE, making this three-column combination the documented business-key candidate. VISA_ID remains the surrogate key, and the unique index prevents duplicate visa records for the same person, type, and issue date.
Common Use Cases and Queries
Typical reporting scenarios include verifying whether a student's visa is currently valid, tracking expiry dates for compliance notifications, and reconciling visa data against passport records. A validity check can be expressed as follows:
SELECT visa_id, person_id, visa_type, visa_number, visa_expiry_date FROM igs_pe_visa WHERE person_id = :person_id AND visa_expiry_date >= SYSDATE;- Expiry monitoring:
SELECT person_id, visa_type, visa_expiry_date FROM igs_pe_visa WHERE visa_expiry_date BETWEEN SYSDATE AND SYSDATE + 90; - Joining to the party hub for names:
SELECT v.visa_id, p.party_name, v.visa_type, v.visa_expiry_date FROM igs_pe_visa v, hz_parties p WHERE v.person_id = p.party_id; - Reconciling visa to passport:
SELECT v.visa_id, v.visa_number, ps.passport_number FROM igs_pe_visa v, igs_pe_passport ps WHERE v.passport_id = ps.passport_id; - Visa history per person via the dependent history table:
SELECT * FROM igs_pe_visit_histry WHERE visa_id = :visa_id;
Related Objects
IGS_PE_VISA participates in a small, well-defined relationship set documented in the ETRM metadata:
- HZ_PARTIES — referenced twice: IGS_PE_VISA.PERSON_ID and IGS_PE_VISA.AGENT_PERSON_ID both join to HZ_PARTIES, making it the primary hub dependency for person and agent identity.
- IGS_PE_PASSPORT — IGS_PE_VISA.PASSPORT_ID joins to this table, associating the visa with its passport record.
- IGS_PE_VISIT_HISTRY — this child table references IGS_PE_VISA through IGS_PE_VISIT_HISTRY.VISA_ID, providing historical or visit-level detail for each visa.
Because the documented relationship data names only these three related objects, any additional integration with Student System enrollment, admission, or international-student processing tables should be validated against the actual 12.1.1 and 12.2.2 schemas before use.
-
Table: IGS_PE_VISA
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_VISA, object_name:IGS_PE_VISA, status:VALID, product: IGS - Student System , description: This is the table that will contain all information related to the visa , implementation_dba_data: IGS.IGS_PE_VISA ,
-
Table: IGS_PE_VISA
12.2.2
product: IGS - Student System (Obsolete) , description: This is the table that will contain all information related to the visa , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_VISA_DFV
12.1.1
-
VIEW: APPS.IGSFV_PORT_OF_ENTRIES
12.1.1
-
VIEW: APPS.IGSBV_VISAS
12.1.1
-
SYNONYM: APPS.IGS_PE_VISA
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PE_VISA, status:VALID,
-
VIEW: APPS.IGSFV_VISAS
12.1.1
-
VIEW: APPS.IGS_PE_VISIT_HISTRY_V
12.1.1
-
APPS.IGS_PE_VISA_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_PE_VISA_V
12.1.1
-
Table: IGS_PE_VISA_INT
12.2.2
product: IGS - Student System (Obsolete) , description: Interface Table for IGS_PE_VISA , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PE_VISA_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_VISA_INT, object_name:IGS_PE_VISA_INT, status:VALID, product: IGS - Student System , description: Interface Table for IGS_PE_VISA , implementation_dba_data: IGS.IGS_PE_VISA_INT ,
-
Table: IGS_PE_VISIT_HISTRY
12.2.2
product: IGS - Student System (Obsolete) , description: This table is to keep track of the visits made on visa. This includes the port of entry. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PE_VISIT_HISTRY
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_VISIT_HISTRY, object_name:IGS_PE_VISIT_HISTRY, status:VALID, product: IGS - Student System , description: This table is to keep track of the visits made on visa. This includes the port of entry. , implementation_dba_data: IGS.IGS_PE_VISIT_HISTRY ,
-
Table: IGS_PE_PASSPORT
12.2.2
product: IGS - Student System (Obsolete) , description: Table that holds all passport related information , implementation_dba_data: Not implemented in this database ,
-
PACKAGE: APPS.IGS_PE_VISAPASS_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_PE_VISAPASS_PUB, status:VALID,
-
PACKAGE BODY: APPS.IGF_AP_OSS_INTEGR
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_OSS_INTEGR, status:VALID,
-
PACKAGE BODY: APPS.IGS_PE_VISIT_HISTRY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_VISIT_HISTRY_PKG, status:VALID,
-
PACKAGE: APPS.IGF_AP_OSS_INTEGR
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGF_AP_OSS_INTEGR, status:VALID,
-
VIEW: APPS.IGS_PE_VISA_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:IGS_PE_VISA_DFV, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_GEN_006
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_GEN_006, status:VALID,
-
View: IGSBV_VISAS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_VISAS, object_name:IGSBV_VISAS, status:VALID, product: IGS - Student System , description: This entity contains information about a person's visa details. , implementation_dba_data: APPS.IGSBV_VISAS ,
-
PACKAGE BODY: APPS.IGS_PE_PASSPORT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_PASSPORT_PKG, status:VALID,
-
View: IGSBV_VISAS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about a person's visa details. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PE_PASSPORT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_PASSPORT, object_name:IGS_PE_PASSPORT, status:VALID, product: IGS - Student System , description: Table that holds all passport related information , implementation_dba_data: IGS.IGS_PE_PASSPORT ,
-
PACKAGE BODY: APPS.IGS_PE_VISAPASS_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_VISAPASS_PUB, status:VALID,
-
View: IGSFV_VISAS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_VISAS, object_name:IGSFV_VISAS, status:VALID, product: IGS - Student System , description: This entity contains information about a person's visa details. , implementation_dba_data: APPS.IGSFV_VISAS ,
-
PACKAGE BODY: APPS.IGS_AD_GEN_007
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_GEN_007, status:VALID,
-
View: IGSFV_PORT_OF_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PORT_OF_ENTRIES, object_name:IGSFV_PORT_OF_ENTRIES, status:VALID, product: IGS - Student System , description: This entity contains information about a person's port of entries. , implementation_dba_data: APPS.IGSFV_PORT_OF_ENTRIES ,
-
View: IGSFV_PORT_OF_ENTRIES
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about a person's port of entries. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_EN_ELGBL_PERSON
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_ELGBL_PERSON, status:VALID,
-
TABLE: IGS.IGS_PE_VISA
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_VISA, object_name:IGS_PE_VISA, status:VALID,
-
PACKAGE BODY: APPS.IGS_PE_VISA_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_VISA_PKG, status:VALID,
-
View: IGS_PE_VISIT_HISTRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_VISIT_HISTRY_V, object_name:IGS_PE_VISIT_HISTRY_V, status:VALID, product: IGS - Student System , description: View designed to retrieve all the visit history information on a person. , implementation_dba_data: APPS.IGS_PE_VISIT_HISTRY_V ,
-
PACKAGE BODY: APPS.IGS_PE_PRIV_LEVEL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_PRIV_LEVEL_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_SV_NI_BATCH_PROCESS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_SV_NI_BATCH_PROCESS_PKG, status:VALID,
-
APPS.IGS_AD_GEN_006 SQL Statements
12.1.1
-
View: IGSFV_VISAS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about a person's visa details. , 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_EN_GEN_004
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_004, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_ELGBL_UNIT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_ELGBL_UNIT, status:VALID,
-
View: IGS_PE_VISA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_VISA_V, object_name:IGS_PE_VISA_V, status:VALID, product: IGS - Student System , description: This view is designed to retrieve all information on the visas that are stored for a person. , implementation_dba_data: APPS.IGS_PE_VISA_V ,
-
PACKAGE BODY: APPS.IGF_SE_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SE_GEN_001, 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: IGS_PE_VISIT_HISTRY_V
12.2.2
product: IGS - Student System (Obsolete) , description: View designed to retrieve all the visit history information on a person. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGF_AW_LI_IMPORT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_LI_IMPORT, status:VALID,
-
View: IGS_PE_VISA_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is designed to retrieve all information on the visas that are stored for a person. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_PORT_OF_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PORT_OF_ENTRIES, object_name:IGSFV_PORT_OF_ENTRIES, status:VALID,
-
PACKAGE BODY: APPS.IGS_PE_VISA_PKG
12.1.1
-
VIEW: APPS.IGSBV_VISAS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_VISAS, object_name:IGSBV_VISAS, status:VALID,