Search Results igs_st_govt_semester
Overview
The IGS_ST_GOVT_SEMESTER table is a core data entity within the Oracle E-Business Suite's Student System (IGS), specifically in the context of government reporting for educational institutions. As indicated by its description, it defines the semester against which student load is to be assigned for reporting purposes, such as Semester 1, 2, or 3. This table is part of the infrastructure for managing and submitting government-compliant statistical data on student enrollments and load. It is critical to note that the ETRM explicitly marks both the table and its parent product as "Obsolete," indicating it belongs to a legacy component of the Student System that may have been superseded in later application architectures or is no longer actively developed. Furthermore, the documentation states it was "Not implemented in this database," suggesting potential variability in its deployment across different EBS instances.
Key Information Stored
The table's structure is centered on uniquely identifying a reporting semester within a specific government submission cycle. Its primary key is a composite of three columns: SUBMISSION_YR, SUBMISSION_NUMBER, and GOVT_SEMESTER. The SUBMISSION_YR and SUBMISSION_NUMBER columns together identify the specific government data submission control record, linking to the IGS_ST_GVT_SPSHT_CTL_ALL table. The GOVT_SEMESTER column holds the actual semester code (e.g., '1', '2', '3') for that submission year and number. This design ensures that semester definitions are scoped to a particular reporting instance, allowing for historical tracking and versioning of semester data across different submission periods.
Common Use Cases and Queries
The primary use case for this table is to serve as a master reference for semester-based load calculations in government reporting processes. It acts as a parent record for detailed load data stored in related transactional tables. Common operational and reporting queries would involve joining this table to its child tables to aggregate student load by semester for a given submission. A typical SQL pattern would retrieve all semesters defined for an active submission control record:
SELECT gs.govt_semester FROM igs_st_govt_semester gs, igs_st_gvt_spsht_ctl_all ctl WHERE gs.submission_yr = ctl.submission_yr AND gs.submission_number = ctl.submission_number AND ctl.submission_status = 'ACTIVE';
Another critical query would involve validating the existence of a semester before inserting related student load records, ensuring referential integrity in the reporting data chain.
Related Objects
As documented in the provided foreign key relationships, the IGS_ST_GOVT_SEMESTER table is a central hub linked to several key transactional tables in the government reporting module. It is the parent table for the following, joined on the composite primary key columns (SUBMISSION_YR, SUBMISSION_NUMBER, GOVT_SEMESTER):
- IGS_ST_GVTSEMLOAD_CA: Likely stores calculated load amounts for the semester.
- IGS_ST_GVT_STDNT_LBL: Possibly holds student label or classification data for the semester.
- IGS_ST_GVTSEMLOAD_OV: Potentially stores overload or override values for the semester load.
- IGS_ST_GVT_STDNTLOAD: Contains detailed student-level load records assigned to the semester.
Furthermore, it is a child table to IGS_ST_GVT_SPSHT_CTL_ALL, joining on SUBMISSION_YR and SUBMISSION_NUMBER. This control table manages the overarching government spreadsheet submission process, of which semester definitions are a component.
-
Table: IGS_ST_GOVT_SEMESTER
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_ST_GOVT_SEMESTER, object_name:IGS_ST_GOVT_SEMESTER, status:VALID, product: IGS - Student System , description: This entity describes the semester against which load is to be assigned. Example 1, 2 or 3. , implementation_dba_data: IGS.IGS_ST_GOVT_SEMESTER ,
-
Table: IGS_ST_GVT_STDNTLOAD
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_ST_GVT_STDNTLOAD, object_name:IGS_ST_GVT_STDNTLOAD, status:VALID, product: IGS - Student System , description: This entity describes a students load details as captured at the census date for each government submission of the Student Load File. , implementation_dba_data: IGS.IGS_ST_GVT_STDNTLOAD ,
-
Table: IGS_ST_GVT_SPSHT_CTL_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_ST_GVT_SPSHT_CTL_ALL, object_name:IGS_ST_GVT_SPSHT_CTL_ALL, status:VALID, product: IGS - Student System , description: This entity describes the characteristics of each government submission and is used to control the various snapshot and extract processes. There is a version for each government submission. Example 1995 submission 1. , implementation_dba_data: IGS.IGS_ST_GVT_SPSHT_CTL_ALL ,
-
Table: IGS_ST_GVTSEMLOAD_CA
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_ST_GVTSEMLOAD_CA, object_name:IGS_ST_GVTSEMLOAD_CA, status:VALID, product: IGS - Student System , description: This table describes the Load Calendars that contribute toward a semester. , implementation_dba_data: IGS.IGS_ST_GVTSEMLOAD_CA ,
-
Table: IGS_ST_GVT_STDNT_LBL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_ST_GVT_STDNT_LBL, object_name:IGS_ST_GVT_STDNT_LBL, status:VALID, product: IGS - Student System , description: This entity describes a students liability details as captured at the census date for each government submission of the Student Liability File. , implementation_dba_data: IGS.IGS_ST_GVT_STDNT_LBL ,
-
Table: IGS_ST_GVTSEMLOAD_OV
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_ST_GVTSEMLOAD_OV, object_name:IGS_ST_GVTSEMLOAD_OV, status:VALID, product: IGS - Student System , description: This table describes the link between a government report semester and load from specific teaching periods. This link is made to the relationship between a teaching period and a load calendar instance to ensure consistency across all load , implementation_dba_data: IGS.IGS_ST_GVTSEMLOAD_OV ,