Search Results igs_en_svs_auth
Overview
IGS_EN_SVS_AUTH is a table within the IGS (Student System) product family, which Oracle has classified as obsolete in the EBS 12.1.1 and 12.2.2 releases. The table stores SEVIS (Student and Exchange Visitor Information System) authorization records — the regulatory authorizations that permit an institution to issue and manage immigration-related documents for international students and exchange visitors under U.S. Department of Homeland Security rules. Within the historical IGS schema, this table functioned as the authoritative register of institutional SEVIS authorizations, capturing the authorization number, code, validity window, and cancellation state for each authorized campus or program.
The ETRM metadata does not document this object as implemented in the current database, and it carries the "Obsolete" designation, meaning it is retained for historical and upgrade-reference purposes rather than active transactional use. From a data modeling perspective, the mined foreign-key structure suggests a satellite-leaning classification: the table hangs off a parent party record (via PERSON_ID to HZ_PARTIES) and is itself referenced by downstream child tables. This heuristic classification is a modeling suggestion only, not an enforced constraint — practitioners should validate before adopting it in any warehouse or integration design.
Key Information Stored
The table's documented physical schema comprises 17 columns under the IGS schema owner. The most significant are:
- SEVIS_AUTH_ID — the surrogate primary key, enforced through the unique index IGS_EN_SVS_AUTH_PK. It is also the sole documented business-key candidate.
- PERSON_ID — foreign key to HZ_PARTIES, associating the authorization with a party record, typically the responsible individual or designated school official.
- SEVIS_AUTHORIZATION_CODE — the coded classification of the authorization granted.
- SEVIS_AUTHORIZATION_NO — the externally issued authorization number as recognized by SEVIS.
- START_DT and END_DT — the validity period during which the authorization is effective.
- CANCEL_FLAG — indicates whether the authorization has been cancelled.
- PROGRAM_APPLICATION_ID and PROGRAM_ID — link the authorization to the academic program context.
- COMMENTS — free-text annotation.
- REQUEST_ID — the concurrent request that created or last modified the row.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the standard EBS audit columns.
- PROGRAM_UPDATE_DATE — tracks the last program-related change.
Common Use Cases and Queries
Because the object is obsolete, use cases are primarily historical reporting, migration validation, and audit reconstruction. A typical query joins the authorization to its parent party to resolve the responsible person:
SELECT a.sevis_authorization_no,
a.sevis_authorization_code,
a.start_dt,
a.end_dt,
a.cancel_flag,
p.party_name
FROM igs_en_svs_auth a,
hz_parties p
WHERE a.person_id = p.party_id
AND NVL(a.cancel_flag,'N') = 'N'
AND SYSDATE BETWEEN a.start_dt AND a.end_dt;
Reporting scenarios include identifying authorizations active at a point in time, listing cancelled authorizations for compliance review, and reconciling authorization numbers against external SEVIS records during data migration. Correlation with IGS_EN_SVS_AUTH_CAL supports calendar-based analysis of authorization cycles.
Related Objects
The documented relationships include:
- HZ_PARTIES — referenced via IGS_EN_SVS_AUTH.PERSON_ID; the parent party record.
- IGS_EN_SVS_AUTH_CAL — references this table through SEVIS_AUTH_ID, holding associated calendar data.
- IGS_SV_PRGMS_INFO — references this table through SEVIS_AUTH_ID, tying authorizations to program information.
These three objects constitute the core dependency set. No additional views or public APIs are documented in the supplied ETRM metadata for this obsolete object.
-
Table: IGS_EN_SVS_AUTH
12.2.2
product: IGS - Student System (Obsolete) , description: Contains the SEVIS Authorization Records , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_EN_SVS_AUTH
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_SVS_AUTH, object_name:IGS_EN_SVS_AUTH, status:VALID, product: IGS - Student System , description: Contains the SEVIS Authorization Records , implementation_dba_data: IGS.IGS_EN_SVS_AUTH ,
-
APPS.IGS_EN_SVS_AUTH_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.IGS_EN_SVS_AUTH
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_EN_SVS_AUTH, status:VALID,
-
VIEW: APPS.IGS_EN_SVS_AUTH_V
12.1.1
-
APPS.IGS_EN_SEVIS SQL Statements
12.1.1
-
TABLE: IGS.IGS_EN_SVS_AUTH
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_SVS_AUTH, object_name:IGS_EN_SVS_AUTH, status:VALID,
-
Table: IGS_EN_SVS_AUTH_CAL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_SVS_AUTH_CAL, object_name:IGS_EN_SVS_AUTH_CAL, status:VALID, product: IGS - Student System , description: Contains SEVIS Authorization Calendar Records , implementation_dba_data: IGS.IGS_EN_SVS_AUTH_CAL ,
-
PACKAGE BODY: APPS.IGS_EN_SVS_AUTH_CAL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_SVS_AUTH_CAL_PKG, status:VALID,
-
Table: IGS_EN_SVS_AUTH_CAL
12.2.2
product: IGS - Student System (Obsolete) , description: Contains SEVIS Authorization Calendar Records , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_EN_SVS_AUTH_CAL_PKG SQL Statements
12.1.1
-
View: IGS_EN_SVS_AUTH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SVS_AUTH_V, object_name:IGS_EN_SVS_AUTH_V, status:VALID, product: IGS - Student System , description: SEVIS Authorization View , implementation_dba_data: APPS.IGS_EN_SVS_AUTH_V ,
-
PACKAGE BODY: APPS.IGS_EN_SVS_AUTH_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_ELGBL_OVERRIDE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_ELGBL_OVERRIDE, status:VALID,
-
View: IGS_EN_SVS_AUTH_V
12.2.2
product: IGS - Student System (Obsolete) , description: SEVIS Authorization View , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_EN_SVS_AUTH_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_SVS_AUTH_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_SEVIS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_SEVIS, status:VALID,
-
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,
-
VIEW: APPS.IGS_EN_SVS_AUTH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SVS_AUTH_V, object_name:IGS_EN_SVS_AUTH_V, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_SVS_AUTH_CAL_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_SEVIS
12.1.1
-
APPS.IGS_EN_SEVIS dependencies on IGS_EN_SVS_AUTH
12.1.1
-
APPS.IGS_EN_SVS_AUTH_CAL_PKG dependencies on IGS_EN_SVS_AUTH
12.1.1
-
APPS.IGS_EN_SVS_AUTH_PKG dependencies on IGS_EN_SVS_AUTH
12.1.1
-
APPS.IGS_EN_ELGBL_OVERRIDE dependencies on IGS_EN_SVS_AUTH
12.1.1
-
APPS.IGS_SV_BATCH_PROCESS_PKG dependencies on IGS_EN_SVS_AUTH
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
Table: HZ_PARTIES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
Table: HZ_PARTIES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
APPS.IGS_EN_SVS_AUTH_PKG dependencies on HZ_PARTIES
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_EN_SVS_AUTH_CAL_PKG dependencies on IGS_EN_ELGB_OVR
12.1.1
-
APPS.IGS_EN_SEVIS dependencies on HZ_PARTIES
12.1.1
-
APPS.IGS_EN_SVS_AUTH_CAL_PKG dependencies on HZ_PARTIES
12.1.1
-
APPS.IGS_EN_SEVIS dependencies on IGS_EN_SVS_AUTH_CAL
12.1.1
-
APPS.IGS_EN_SVS_AUTH_PKG dependencies on IGS_EN_SVS_AUTH_PKG
12.1.1
-
APPS.IGS_EN_SVS_AUTH_CAL_PKG dependencies on IGS_EN_SVS_AUTH_CAL
12.1.1
-
APPS.IGS_EN_SEVIS dependencies on IGS_CA_INST
12.1.1
-
APPS.IGS_EN_SVS_AUTH_CAL_PKG dependencies on IGS_EN_ELGB_OVR_STEP
12.1.1
-
APPS.IGS_EN_SEVIS dependencies on IGS_CA_INST_ALL
12.1.1
-
APPS.IGS_SV_BATCH_PROCESS_PKG dependencies on IGS_SV_PRGMS_INFO
12.1.1
-
APPS.IGS_SV_BATCH_PROCESS_PKG SQL Statements
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'. ,