Search Results igs_ad_appl_notes_pk




Overview

The table IGS_AD_APPL_NOTES is a data object within the Oracle E-Business Suite, specifically belonging to the IGS (Student System) product family. As per the official ETRM documentation, its designated role is to hold details of applicant's notes. This table would typically serve as a repository for textual annotations, comments, or administrative remarks associated with an individual's application for admission. It is a core transactional table within the admissions module, enabling users to track and manage application-related communication and history. Critically, the metadata explicitly states the product module is "Obsolete" and that the table is "Not implemented in this database," indicating it may be a legacy object from an earlier version of the Student System that is no longer actively used or populated in standard Oracle EBS 12.1.1 or 12.2.2 implementations.

Key Information Stored

The table's primary key is APPL_NOTES_ID, a unique identifier for each note record. Its structure is designed to link notes to a specific application instance and categorize them by type. The foreign key relationships reveal the core data elements stored. To associate a note with an application, the table holds PERSON_ID, ADMISSION_APPL_NUMBER, NOMINATED_COURSE_CD, and SEQUENCE_NUMBER, which together form a composite foreign key to IGS_AD_PS_APPL_INST_ALL. This defines the exact applicant and application. Furthermore, the NOTE_TYPE_ID column links to the IGS_AD_NOTE_TYPES table, classifying the note (e.g., interview summary, document follow-up, decision rationale). The table would also be expected to contain columns for the note text itself, creation date, and the user who created it.

Common Use Cases and Queries

In a functional system, this table would support operational reporting and audit trails for the admissions process. Common use cases include reviewing the complete communication history for a specific applicant, generating reports on notes of a particular type (e.g., all scholarship interview notes), or auditing user activity. A typical query would join IGS_AD_APPL_NOTES to the application and note type tables to retrieve a readable history. Given its obsolete status, direct operational use in current EBS 12.1.1/12.2.2 is unlikely. However, historical data migration or custom reporting on legacy data might involve this object. Sample SQL would focus on extracting legacy data:

  • SELECT note_text, creation_date FROM igs_ad_appl_notes WHERE person_id = <applicant_id> ORDER BY creation_date;
  • Joining to IGS_AD_NOTE_TYPES to filter by a specific note category.

Related Objects

The ETRM metadata defines clear dependencies for IGS_AD_APPL_NOTES. Its primary related object is IGS_AD_PS_APPL_INST_ALL, the central table for applicant application instances, to which it is a child table. The relationship is enforced via a foreign key on the composite application identifier. Secondly, it references IGS_AD_NOTE_TYPES for validation and description of the NOTE_TYPE_ID. As a table with a declared primary key (IGS_AD_APPL_NOTES_PK), it may also be referenced by other objects not listed in the provided excerpt. Any custom views or reports built to display applicant notes would inherently depend on this table as the core data source.