Search Results igs_pe_note_type
Overview
The IGS_PE_NOTE_TYPE table is a foundational reference entity within the Oracle E-Business Suite's now-obsolete Student System (IGS). Its primary role is to define and categorize the different types of notes or comments that can be attached to a person's record within the system. By providing a controlled list of note types, it ensures consistency in how personal notes are classified across various functional modules, such as student administration and financial aid. This table acts as a parent lookup for any person-related note entries, enforcing data integrity through referential constraints. It is important to note that the ETRM metadata explicitly states this table is "Not implemented in this database" for the queried instance, indicating it may exist as a shell or its data is managed elsewhere in the specific deployment.
Key Information Stored
While the provided ETRM excerpt does not list specific columns beyond the primary key, the table's structure is implied by its purpose and relationships. The core column is PE_NOTE_TYPE, which serves as the primary key (IGS_PE_NOTE_TYPE_PK). This column stores the unique code or identifier for a specific note category (e.g., 'MEDICAL', 'ADVISOR', 'FIN_AID'). Typically, a table of this nature would also include descriptive columns such as a DESCRIPTION field to provide a clear, meaningful name for the note type, and potentially columns for controlling active status (ACTIVE_IND or CLOSED_IND) and system-level auditing fields like CREATION_DATE and LAST_UPDATE_DATE.
Common Use Cases and Queries
The primary use case is to validate and categorize notes entered against a person. In reporting and data extraction, this table is joined to note detail tables to translate note type codes into human-readable descriptions. A common SQL pattern involves listing all notes for a person with their descriptions:
SELECT pn.note_text, nt.description
FROM igs_pe_pers_note pn,
igs_pe_note_type nt
WHERE pn.person_id = :person_id
AND pn.pe_note_type = nt.pe_note_type
ORDER BY pn.creation_date DESC;
Another critical use case is maintaining the list of valid note types via administrative interfaces, ensuring that only predefined, approved categories are used when users create new person notes, which supports standardized reporting and data analysis.
Related Objects
The IGS_PE_NOTE_TYPE table has documented foreign key relationships with two child tables, as per the provided metadata. These relationships define its critical integration points within the obsolete IGS module:
- IGF_AP_PERS_NOTE: This table stores person-specific notes likely within the context of Financial Aid (IGF). It references IGS_PE_NOTE_TYPE via its PE_NOTE_TYPE column to categorize each aid-related note.
- IGS_PE_PERS_NOTE: This is the core person notes table within the Student System. It references IGS_PE_NOTE_TYPE via its PE_NOTE_TYPE column to categorize general person notes.
In both relationships, the join condition is on the PE_NOTE_TYPE column, establishing IGS_PE_NOTE_TYPE as the authoritative source for valid note type codes.
-
Table: IGS_PE_NOTE_TYPE
12.1.1
product: IGS - Student System , description: This entity describes the types of notes which can be recorded against a person. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PE_NOTE_TYPE
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the types of notes which can be recorded against a person. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PE_PERS_NOTE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_PERS_NOTE, object_name:IGS_PE_PERS_NOTE, status:VALID, product: IGS - Student System , description: This entity describes a note held against a person. , implementation_dba_data: IGS.IGS_PE_PERS_NOTE ,
-
Table: IGF_AP_PERS_NOTE
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_PERS_NOTE, object_name:IGF_AP_PERS_NOTE, status:VALID, product: IGF - Financial Aid , description: stores institution-defined note type pertaining to a student or a particular award year , implementation_dba_data: IGF.IGF_AP_PERS_NOTE ,
-
Table: IGF_AP_PERS_NOTE
12.2.2
product: IGF - Financial Aid (Obsolete) , description: stores institution-defined note type pertaining to a student or a particular award year , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PE_PERS_NOTE
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes a note held against a person. , implementation_dba_data: Not implemented in this database ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
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 - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
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'. ,