Search Results igs_az_advising_rels_u1
Overview
The IGS_AZ_ADVISING_RELS table is a core data structure within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Student Administration modules under the IGS (iGrants) schema. Its primary function is to manage and persist the formal advising relationships between students and their assigned advisors within the context of defined advising groups. The table acts as a junction, linking students to advisors for specific groups over a defined period, thereby enabling the tracking of academic guidance responsibilities and histories. This is essential for supporting institutional advising programs, compliance reporting, and student success initiatives.
Key Information Stored
The table's columns are designed to capture the relationship's identity, participants, temporal validity, and audit trail. The primary key, GROUP_ADVISING_REL_ID, is a system-generated sequence number uniquely identifying each relationship record. The core relationship is defined by GROUP_NAME, GROUP_ADVISOR_ID, and GROUP_STUDENT_ID, which together form a unique constraint (IGS_AZ_ADVISING_RELS_U1) to prevent duplicate assignments. The START_DATE and END_DATE columns establish the active period for the relationship, allowing for historical tracking. As confirmed by the metadata, the GROUP_STUDENT_ID column holds the sequence-generated identifier for the student from the advising student table, which is a critical foreign key for joining to student data. Standard FND "WHO" columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) provide a full audit trail for each record.
Common Use Cases and Queries
A primary use case is generating reports on current student-advisor assignments for a specific advising group or for a particular advisor. The non-unique indexes on GROUP_ADVISOR_ID (N2) and GROUP_STUDENT_ID (N3) are optimized for such queries. For example, to find all active assignments for a student identified by a specific GROUP_STUDENT_ID, one would use a query filtering on that column and where END_DATE IS NULL or is a future date. Another common operational need is to inactivate a relationship by populating the END_DATE, which is a standard update operation. Sample SQL to retrieve all active relationships for a student would be:
- SELECT a.GROUP_NAME, a.GROUP_ADVISOR_ID, a.START_DATE FROM IGS.IGS_AZ_ADVISING_RELS a WHERE a.GROUP_STUDENT_ID = :student_id AND (a.END_DATE IS NULL OR a.END_DATE > SYSDATE);
This table is fundamental for any interface or API that manages advisor assignments within the EBS Student Administration suite.
Related Objects
While the provided dependency information states this table does not reference other objects, it is intrinsically linked to other tables via foreign key relationships implied by its column definitions. The GROUP_ADVISOR_ID column references the primary key of an Advisor table (exact name not specified in the excerpt), and the GROUP_STUDENT_ID references the primary key of an "Advising student table." The table is also indexed heavily to support performance in these joins. The unique index (U1) ensures data integrity for the core business rule, and the non-unique indexes (N2, N3) support efficient lookups by advisor or student. Applications, forms, and APIs within the Oracle EBS Advising module will perform DML operations on this table to create, update, or end advising relationships.
-
INDEX: IGS.IGS_AZ_ADVISING_RELS_U1
12.1.1
owner:IGS, object_type:INDEX, object_name:IGS_AZ_ADVISING_RELS_U1, status:VALID,
-
TABLE: IGS.IGS_AZ_ADVISING_RELS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AZ_ADVISING_RELS, object_name:IGS_AZ_ADVISING_RELS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
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'. ,