Search Results igs_sv_upd_stdt_blk_v
Overview
IGS_SV_UPD_STDT_BLK_V is a PL/SQL view owned by the APPS schema within the IGS (Student System) product of Oracle E-Business Suite. Its documented purpose is to obtain information for the XML block describing updated student information, which is generated as part of SEVIS reporting under the Student and Exchange Visitor Information System (SEVIS) functionality in the Student System module. The view acts as a structured data provider that assembles person-level batch data into a flat record set suitable for XML generation and downstream reporting or integration with external compliance interfaces.
The name reflects its role: "UPD_STDT_BLK" indicates an "updated student" XML block, and the view supplies the columns needed to populate that block. Because the view is documented as a VIEW with VALID status in the APPS schema, it is a supported read-only object that can be referenced directly in SQL queries and report definitions. In Oracle EBS 12.1.1 and 12.2.2, such views are typically consumed by concurrent programs, XML publishers, or BI Publisher report templates that produce SEVIS batch output.
The view exposes a PRINT_FORM column, which is directly relevant to the search term "print_form." This column likely indicates whether a given person's record should be included in a printed SEVIS form output, making the view relevant to form printing and compliance reporting workflows.
Underlying Base Objects
The view is defined over two documented base tables in the IGS schema:
- IGS_SV_BATCHES BAT — the SEVIS batch header table, which supplies BATCH_ID and the SEVIS_USER_ID aliased as PDSO_USER_ID, along with BATCH_TYPE.
- IGS_SV_PERSONS PERS — the SEVIS person table, which supplies PERSON_ID, PRINT_FORM, SEVIS_USER_ID, RECORD_NUMBER, REPRINT_RSN_CODE, REPRINT_REMARKS, BATCH_ID, and RECORD_STATUS.
The join condition links each person record to its batch via BATCH_ID, and the WHERE clause filters to batches of BATCH_TYPE = 'I' (initial/update batches) where the person RECORD_STATUS is 'C' (completed or certified, depending on the coding convention). No additional documented base objects are listed in the ETRM metadata, and the view is a straightforward two-table join without aggregation or set operators.
Key Columns
- BATCH_ID — identifier of the SEVIS batch to which the person record belongs.
- PERSON_ID — internal person identifier, key to the student/visitor record.
- PRINT_FORM — flag controlling whether the record's SEVIS form is printed; directly tied to form output processing.
- PDSO_USER_ID — SEVIS user ID from the batch header (Principal Designated School Official context).
- SEVIS_USER_ID — SEVIS user ID from the person record.
- PERSON_NUMBER — a zero-padded, left-trimmed ten-character representation derived from the first ten characters of PERSON_ID.
- RECORD_NUMBER — sequential record number within the batch.
- PERSON_ID_LONG — a fourteen-character zero-padded representation of PERSON_ID.
- REPRINT_REASON — derived from REPRINT_RSN_CODE, but suppressed (set to NULL) when the code equals '11'.
- REPRINT_REMARKS — free-text remarks accompanying a reprint request.
- VERIFY — set to 'Y' when REPRINT_RSN_CODE equals '06', otherwise NULL.
Common Use Cases and Queries
Typical use cases include generating the SEVIS updated-student XML block, driving form printing decisions through PRINT_FORM, and auditing reprint requests by reason code. A basic query retrieving all columns for a batch is:
SELECT * FROM APPS.IGS_SV_UPD_STDT_BLK_V WHERE BATCH_ID = :p_batch_id;SELECT PERSON_ID, PERSON_NUMBER, PRINT_FORM FROM APPS.IGS_SV_UPD_STDT_BLK_V WHERE PRINT_FORM = 'Y';SELECT BATCH_ID, PERSON_ID, REPRINT_REASON, VERIFY FROM APPS.IGS_SV_UPD_STDT_BLK_V WHERE REPRINT_REASON IS NOT NULL;
Because the view filters on BATCH_TYPE = 'I' and RECORD_STATUS = 'C', results are restricted to eligible, completed SEVIS batch-person combinations, which makes it safe to use directly in compliance reporting without additional status filtering. Queries should reference the APPS schema prefix when run outside an APPS session.
-
View: IGS_SV_UPD_STDT_BLK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SV_UPD_STDT_BLK_V, object_name:IGS_SV_UPD_STDT_BLK_V, status:VALID, product: IGS - Student System , description: View for obtaining information for the XML block describing the updated student information. , implementation_dba_data: APPS.IGS_SV_UPD_STDT_BLK_V ,
-
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 ,
-
SYNONYM: APPS.IGS_SV_BATCHES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_SV_BATCHES, status:VALID,
-
SYNONYM: APPS.IGS_SV_PERSONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_SV_PERSONS, status:VALID,
-
VIEW: APPS.IGS_SV_UPD_STDT_BLK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SV_UPD_STDT_BLK_V, object_name:IGS_SV_UPD_STDT_BLK_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
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'. ,
-
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'. ,