Search Results igs_pe_pers_note
Overview
The IGS_PE_PERS_NOTE table is a core data entity within the Oracle E-Business Suite's now-obsolete Student System (IGS). It functions as a junction table, establishing a formal relationship between a person record and a note. Its primary role is to associate textual notes, comments, or remarks with specific individuals, enabling the tracking of contextual information relevant to a person's record. This table is critical for maintaining a historical and auditable log of person-related communications or observations within the student management lifecycle. The provided metadata explicitly states this table was "Not implemented in this database," indicating it may exist as a definition within the data model but was not deployed in certain instances, or its functionality was superseded by other modules like Oracle Trading Community Architecture (TCA).
Key Information Stored
The table's structure is defined by its composite primary key and foreign key relationships. The key columns are PERSON_ID, which stores the unique identifier linking to the party record in HZ_PARTIES, and REFERENCE_NUMBER, which stores the unique identifier for the note text in the IGS_GE_NOTE table. A third significant column is PE_NOTE_TYPE, which references the IGS_PE_NOTE_TYPE table to categorize the note (e.g., academic warning, financial hold, general comment). The table itself primarily stores these foreign key identifiers; the substantive note text and person details are held in the related master tables.
Common Use Cases and Queries
This table supports scenarios requiring the retrieval or association of notes for a specific person. Common operational and reporting use cases include generating a complete history of all notes attached to a student's record for an advisor review, or identifying all persons tagged with a specific type of note, such as a disciplinary action. A typical query would join IGS_PE_PERS_NOTE to HZ_PARTIES for person details and to IGS_GE_NOTE for the note content and dates.
Sample SQL Pattern:
SELECT hp.party_name, ign.note_text, ign.creation_date, ipnt.note_type_name
FROM igs_pe_pers_note ipn,
hz_parties hp,
igs_ge_note ign,
igs_pe_note_type ipnt
WHERE ipn.person_id = hp.party_id
AND ipn.reference_number = ign.reference_number
AND ipn.pe_note_type = ipnt.pe_note_type
AND hp.party_number = 'STUDENT123';
Related Objects
The IGS_PE_PERS_NOTE table is centrally connected to three primary tables via foreign key constraints, forming the backbone of the person-notes model:
- HZ_PARTIES: The master table for all persons and organizations in Oracle EBS. The join is on IGS_PE_PERS_NOTE.PERSON_ID = HZ_PARTIES.PARTY_ID.
- IGS_GE_NOTE: The generic notes table storing the actual note text, creation date, and author. The join is on IGS_PE_PERS_NOTE.REFERENCE_NUMBER = IGS_GE_NOTE.REFERENCE_NUMBER.
- IGS_PE_NOTE_TYPE: The lookup table defining valid classifications for person notes. The join is on IGS_PE_PERS_NOTE.PE_NOTE_TYPE = IGS_PE_NOTE_TYPE.PE_NOTE_TYPE.
-
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 ,
-
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 ,
-
APPS.IGS_AD_GEN_007 dependencies on IGS_PE_PERS_NOTE
12.1.1
-
APPS.IGS_PE_PERS_NOTE_PKG dependencies on IGS_PE_PERS_NOTE
12.1.1
-
APPS.IGS_EN_SEVIS dependencies on IGS_PE_PERS_NOTE
12.1.1
-
APPS.IGS_EN_GEN_004 dependencies on IGS_PE_PERS_NOTE
12.1.1
-
APPS.IGS_PE_PERS_NOTE_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGSBV_PERSON_NOTES
12.1.1
-
VIEW: APPS.IGSFV_PERSON_NOTES
12.1.1
-
VIEW: APPS.IGS_PE_PERS_NOTE_V
12.1.1
-
SYNONYM: APPS.IGS_PE_PERS_NOTE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PE_PERS_NOTE, status:VALID,
-
TABLE: IGS.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,
-
APPS.IGS_PE_PERS_NOTE_PKG dependencies on IGS_SC_GEN_001
12.1.1
-
PACKAGE BODY: APPS.IGS_PE_PERS_NOTE_PKG
12.1.1
-
View: IGSBV_PERSON_NOTES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PERSON_NOTES, object_name:IGSBV_PERSON_NOTES, status:VALID, product: IGS - Student System , description: This entity contains information about the person's notes. , implementation_dba_data: APPS.IGSBV_PERSON_NOTES ,
-
View: IGS_PE_PERS_NOTE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERS_NOTE_V, object_name:IGS_PE_PERS_NOTE_V, status:VALID, product: IGS - Student System , description: Person note view. , implementation_dba_data: APPS.IGS_PE_PERS_NOTE_V ,
-
APPS.IGS_EN_SEVIS dependencies on IGS_GE_NOTE
12.1.1
-
APPS.IGS_AD_GEN_007 dependencies on IGS_PE_VISA
12.1.1
-
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_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 ,
-
View: IGSFV_PERSON_NOTES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PERSON_NOTES, object_name:IGSFV_PERSON_NOTES, status:VALID, product: IGS - Student System , description: This entity contains information about the person's notes. , implementation_dba_data: APPS.IGSFV_PERSON_NOTES ,
-
View: IGSFV_PERSON_NOTES
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the person's notes. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_PERS_NOTE_V
12.2.2
product: IGS - Student System (Obsolete) , description: Person note view. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AD_GEN_007 dependencies on IGS_PE_EIT
12.1.1
-
PACKAGE BODY: APPS.IGS_PE_PERS_NOTE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PE_PERS_NOTE_PKG, status:VALID,
-
View: IGSBV_PERSON_NOTES
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the person's notes. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_AD_GEN_007
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_GEN_007, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_GEN_004
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_004, status:VALID,
-
Table: IGS_GE_NOTE
12.2.2
product: IGS - Student System (Obsolete) , description: This table is used to store notes that may be recorded against many major entities for example courses, units, persons. The note may be an OLE object like word document, excel spreadsheet, and so on. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_GE_NOTE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_GE_NOTE, object_name:IGS_GE_NOTE, status:VALID, product: IGS - Student System , description: This table is used to store notes that may be recorded against many major entities for example courses, units, persons. The note may be an OLE object like word document, excel spreadsheet, and so on. , implementation_dba_data: IGS.IGS_GE_NOTE ,
-
PACKAGE BODY: APPS.IGS_EN_SEVIS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_SEVIS, status:VALID,
-
VIEW: APPS.IGS_PE_PERS_NOTE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERS_NOTE_V, object_name:IGS_PE_PERS_NOTE_V, status:VALID,
-
VIEW: APPS.IGSFV_PERSON_NOTES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PERSON_NOTES, object_name:IGSFV_PERSON_NOTES, status:VALID,
-
VIEW: APPS.IGSBV_PERSON_NOTES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PERSON_NOTES, object_name:IGSBV_PERSON_NOTES, status:VALID,
-
APPS.IGS_PE_PERS_NOTE_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
APPS.IGS_AD_GEN_007 SQL Statements
12.1.1
-
APPS.IGS_EN_SEVIS SQL Statements
12.1.1
-
APPS.IGS_PE_PERS_NOTE_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_EN_GEN_004 SQL Statements
12.1.1
-
APPS.IGS_EN_SEVIS dependencies on IGS_CA_INST
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
Table: HZ_PARTIES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
Table: HZ_PARTIES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_GEN_007
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_SEVIS
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_GEN_004
12.1.1