Search Results igs_sv_persons
Overview
The IGS_SV_PERSONS table is a core transactional table within the Oracle E-Business Suite Student System (IGS) module, specifically supporting the batch processing of student information for regulatory submissions. Its primary role is to serve as a staging and control table, identifying the specific students (persons) included in a given batch request for processing. The table functions as a junction between a batch header and detailed student data, ensuring that only designated individuals are processed during a batch run. This is critical for operations such as generating regulatory reports or transmitting data to external systems like SEVIS (Student and Exchange Visitor Information System), where submissions must be accurate and auditable.
Key Information Stored
The table's structure is defined by a composite primary key and several foreign key relationships. The primary key consists of BATCH_ID and PERSON_ID, which together uniquely identify a student record within a specific batch. The BATCH_ID column links to the IGS_SV_BATCHES table, which defines the parameters and control information for the batch submission itself. The PERSON_ID column is a foreign key to the HZ_PARTIES table in Oracle Trading Community Architecture (TCA), anchoring the student record to the central party repository. An additional notable column is PDSO_SEVIS_PERSON_ID, which is also a foreign key to HZ_PARTIES and likely stores a reference to a designated school official (PDSO) or an alternate SEVIS identifier associated with the person.
Common Use Cases and Queries
The primary use case for IGS_SV_PERSONS is managing and reporting on the population of students selected for a batch submission process. Common operational queries involve listing all students in a pending batch, verifying batch composition before submission, and troubleshooting batch errors. A typical reporting query would join to batch header and party information:
- SELECT sp.batch_id, sp.person_id, hp.party_name, sb.batch_status FROM igs_sv_persons sp JOIN hz_parties hp ON sp.person_id = hp.party_id JOIN igs_sv_batches sb ON sp.batch_id = sb.batch_id WHERE sb.batch_status = 'PENDING';
Data maintenance scripts might also target this table to clean up orphaned records or to analyze submission history by joining with the various child detail tables (e.g., IGS_SV_PRGMS_INFO).
Related Objects
IGS_SV_PERSONS sits at the center of a hierarchical data model for batch student submissions. It has a direct parent-child relationship with IGS_SV_BATCHES and HZ_PARTIES. Crucially, it acts as the parent table for numerous detail tables that store specific categories of information for each batched student, including:
- IGS_SV_BIO_INFO (Biographical Information)
- IGS_SV_CONVICTIONS (Conviction Information)
- IGS_SV_DEPDNT_INFO (Dependent Information)
- IGS_SV_EMPL_INFO (Employment Information)
- IGS_SV_FINANCE_INFO (Financial Information)
- IGS_SV_LEGAL_INFO (Legal Information)
- IGS_SV_OTH_INFO (Other Information)
- IGS_SV_PRGMS_INFO (Program Information)
This structure allows the system to assemble a complete student record for submission by aggregating data from the central IGS_SV_PERSONS entry and its related child tables, all scoped to a specific BATCH_ID.
-
Table: IGS_SV_PERSONS
12.2.2
product: IGS - Student System (Obsolete) , description: Table for information on the students that are to be submitted in the request for the batch run. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EV_EDT_EV_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: Edit Exchange Visitor Block View. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_CRT_DUM_V
12.2.2
product: IGS - Student System (Obsolete) , description: Dummy view for XML definition block on creating student , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_STNDT_VRFY_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching information for Verify element of XML. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_SV_PRGMS_INFO
12.2.2
product: IGS - Student System (Obsolete) , description: Table for program related information that SEVIS requires on the Foreign student and Exchange Visitors. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EV_CRT_DUM_V
12.2.2
product: IGS - Student System (Obsolete) , description: This is the base dummy view for the map to retrieve block information on Exchange Visitor Creations , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EDT_PERS_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for obtaining information for the XML block describing the student personal information changes. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_SV_LEGAL_INFO
12.2.2
product: IGS - Student System (Obsolete) , description: Table to store all Legal information that is to be sent to SEVIS on the Foreign students and Exchange Visitors. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_CRT_STAT_CNGE_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching Status change information for student , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_CRT_OTHR_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for obtaining information for the XML block describing the creation of other information for the student. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_CRT_REIN_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for obtaining information for the XML block describing the creating of reinstatement for the student. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EV_NOSHOW_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching the no show flag , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_CRT_INIT_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for obtaining information for the XML block describing the create initial student information. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_SV_DEPDNT_INFO
12.2.2
product: IGS - Student System (Obsolete) , description: Table to hold the information on the dependent information for the Foreign students and Exchange Visitors for SEVIS. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_CRT_TRNS_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for obtaining information for the XML block describing the create transfer information for student. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_RES_CRSE_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for obtaining information for the XML block describing the resuming of full course qualifications on the student. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_SV_BATCHES
12.2.2
product: IGS - Student System (Obsolete) , description: Main table for each Batch run for gathering information of Foreign Students and Exchange Visitors for SEVIS processing. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EV_UPD_DUM_V
12.2.2
product: IGS - Student System (Obsolete) , description: This is the base dummy view for the map to retrieve block information on Exchange Visitor Update , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_UPD_DUM_V
12.2.2
product: IGS - Student System (Obsolete) , description: Dummy view for XML message building block on single record for update student. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_SV_CONVICTIONS
12.2.2
product: IGS - Student System (Obsolete) , description: Table for foreign students that have had convictions and information that is needed to be sent to SEVIS. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_STDT_DPND_DUM_V
12.2.2
product: IGS - Student System (Obsolete) , description: Dummy View for fetching the details about dependents of an Non-Immg Student , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_SV_BIO_INFO
12.2.2
product: IGS - Student System (Obsolete) , description: Table that is to be used for all the student Bio information that is new or updated. All information on Foreign students or Exchange Visitors that is required for SEVIS. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_SV_OTH_INFO
12.2.2
product: IGS - Student System (Obsolete) , description: Table that handles the gathering of other specific informtion that SEVIS requires on Foreign students and Exchange Visitors. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_SV_FINANCE_INFO
12.2.2
product: IGS - Student System (Obsolete) , description: Table that stores all the financial information on Foreign students and Exchange Visitors that is required for SEVIS. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_SV_EMPL_INFO
12.2.2
product: IGS - Student System (Obsolete) , description: Table to hold all employment related information on Foreign students and Exchange Visitors that is required to be sent to SEVIS. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_CPT_EMPL_DUM_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching CPT employment records , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_CRT_CONT_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for obtaining information for the XML block describing the create continuation information for the student. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EV_ADD_SOA_DUM_V
12.2.2
product: IGS - Student System (Obsolete) , description: View to be used as the holding place for the Exchange Visitor add site of activity block in the map for the XML file sent to SEVIS , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_OPT_EMPL_DUM_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching OPT employment details for students. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_PRGM_DUM_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching Program information for student. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EV_VALDTE_DUM_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching information for validate element of XML , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EV_EDT_SOA_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching modified Site of activities information for Exchange Visitor students , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_DSCPL_ACT_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for obtaining information for the XML block describing the disciplinary actions taken on the student. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_ADD_DPND_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for obtaining information for the XML block describing the addition of a new dependent for the student. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_UPD_STDT_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for obtaining information for the XML block describing the updated student information. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EV_ADD_DEP_DUM_V
12.2.2
product: IGS - Student System (Obsolete) , description: View used for adding Exchange Visitor dependent block for the header of the information. This is a dummy view used by the map. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EV_PROG_DUM_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching program information for Exchange Visitor students , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EV_UPD_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for use on XML batch for add dummy block , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_STATUS_DUM_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching status information for student. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_OFF_EMPL_DUM_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching off campus employment informations for students , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EV_SOA_DUM_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching site of activities for Exchange Visitor students , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EV_STATUS_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching status information for Exchange Visitor students , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_CRT_STDT_OTHER_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for fetching other informations for new Non-Immigrant students , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_DROP_BLW_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View to be used for the drop below full course XML block , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EDT_FINC_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for obtaining information for the XML block describing the financial updates made by the student. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_DPND_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for obtaining information for the XML block describing the creation of the student dependent main information. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EV_DPND_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for the creation of the Exchange Visitor dependent block in the XML file sent to SEVIS , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EV_UPD_FIN_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for update financial information for Exchange Visitor in the XML file being sent to SEVIS. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_STDNT_REG_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: View for obtaining information for the XML block describing the students registration information. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SV_EV_CRT_EV_BLK_V
12.2.2
product: IGS - Student System (Obsolete) , description: Create Exchange Visitor Block View. , implementation_dba_data: Not implemented in this database ,