Search Results igf_aw_awd_cert_resps




Overview

The IGS_CA_INST_ALL table is a core data structure within the Oracle E-Business Suite Student System (IGS), which is documented as obsolete in the provided metadata for releases 12.1.1 and 12.2.2. It functions as the master table for calendar instances, describing a specific temporal occurrence of a defined calendar type. Each record represents a unique instance, such as "Fall Semester 2023" or "Academic Year 2022-2023," characterized by a start date, end date, and status. Its primary role is to provide a standardized temporal reference point for numerous academic, administrative, and financial processes across the Student System and integrated modules like Financial Aid (IGF).

Key Information Stored

The table's structure is designed to uniquely identify and describe a calendar instance. The primary keys emphasize the importance of the combination of CAL_TYPE, SEQUENCE_NUMBER, and the date range (START_DT, END_DT). Key columns include CAL_TYPE, which defines the category of calendar (e.g., ACADEMIC, ADMISSION, LOAD); SEQUENCE_NUMBER, which orders instances within a calendar type; and START_DT and END_DT, which bound the instance. Additional critical columns are CAL_STATUS, indicating the instance's state (e.g., PLANNED, ACTIVE, CLOSED), and PRIOR_CI_SEQUENCE_NUMBER, which can establish a sequence or hierarchy between consecutive instances of the same calendar type.

Common Use Cases and Queries

This table is central to time-based reporting and process execution. A common use case is determining the active academic calendar for a given date to drive enrollment, billing, or financial aid disbursement rules. For instance, a query to find the current academic term would filter on CAL_TYPE, a status of 'ACTIVE', and a date within START_DT and END_DT. In the context of the user's search for "igf_aw_coa_group_all," this table is indirectly relevant as the calendar instance often governs the period for which a Cost of Attendance (COA) group is valid. Sample SQL for joining to a financial aid table would typically involve the CAL_TYPE and SEQUENCE_NUMBER columns, as seen in the foreign key relationships to tables like IGF_AW_AWD_DISB_ALL.

Related Objects

As evidenced by the extensive foreign key relationships, IGS_CA_INST_ALL is a fundamental parent table referenced by numerous entities across the EBS suite. Key documented relationships include:

These relationships underscore its role as a central temporal dimension table.