Search Results note_type_id
Overview
The IGS_PS_CATLG_NOTES_ALL table is a core data repository within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Oracle Student Management (formerly Campus Solutions) product family. Owned by the IGS (iGrants) schema, it functions as the master table for storing descriptive notes associated with academic catalog versions. Its primary role is to provide a structured, version-controlled mechanism for attaching various types of textual information—such as course descriptions, prerequisites, or administrative details—to catalog entries, which are fundamental to curriculum definition and student academic planning. The inclusion of the `ORG_ID` column signifies it is a multi-org enabled table, allowing data partitioning by operating unit for shared-instance implementations.
Key Information Stored
The table's design centers on linking a note to a specific catalog version and classifying it by type. The key columns include:
- CATALOG_NOTE_ID: The primary key, a unique system-generated identifier for each note record.
- CATALOG_VERSION_ID: A foreign key linking the note to a specific version of a catalog entry in a related table (e.g., IGS_PS_CATLG_VERS).
- NOTE_TYPE_ID: A critical foreign key that classifies the note (e.g., description, objective, restriction). This references a lookup table defining valid note types, central to filtering and organizing note content.
- SEQUENCE: Enforces ordering of multiple notes of the same type for a single catalog version, working in conjunction with CATALOG_VERSION_ID and NOTE_TYPE_ID to form a unique key (IGS_PS_CATLG_NOTES_ALL_U2).
- NOTE_TEXT: Holds the formatted textual content of the note, up to 2000 characters.
- CREATE_DATE & END_DATE: Define the active date range for the note's applicability.
- ORG_ID: The operating unit identifier for multi-org security and data segregation.
Common Use Cases and Queries
This table is essential for generating official course catalogs, academic advisement reports, and course search interfaces. A frequent requirement is retrieving all active notes of a specific type for a set of catalog versions. For example, to extract the primary description (assuming NOTE_TYPE_ID=10) for active catalog versions, one might use:
SELECT cv.catalog_code, cn.note_text
FROM igs.igs_ps_catlg_notes_all cn,
igs.igs_ps_catlg_vers_all cv
WHERE cn.catalog_version_id = cv.catalog_version_id
AND cn.note_type_id = 10
AND SYSDATE BETWEEN cn.create_date AND NVL(cn.end_date, SYSDATE+1)
AND cv.org_id = :p_org_id;
Another common pattern involves sequencing notes, such as listing all note types in order for a given course: SELECT note_type_id, sequence, note_text FROM igs.igs_ps_catlg_notes_all WHERE catalog_version_id = :p_cat_ver_id ORDER BY note_type_id, sequence;. Data maintenance operations, such as inactivating notes or updating text, would target this table via its key columns, typically performed through the standard EBS forms or APIs.
Related Objects
While the provided dependency information shows no outward references from this table, its structure implies critical relationships. The CATALOG_VERSION_ID column is a foreign key to a catalog version table, likely named IGS_PS_CATLG_VERS_ALL. The NOTE_TYPE_ID column references a lookup table for note type definitions, such as IGS_LOOKUPS_VIEW with a specific lookup type. The table is referenced by the APPS synonym IGS_PS_CATLG_NOTES_ALL, which is the access point for all application code and standard reports. Custom interfaces and integrations that consume or populate catalog notes will directly query or modify this table via its synonym.
-
TABLE: IGS.IGS_PS_CATLG_NOTES_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_CATLG_NOTES_ALL, object_name:IGS_PS_CATLG_NOTES_ALL, status:VALID,
-
APPS.IGS_PS_CATALOG_ROLLOVER SQL Statements
12.1.1
-
VIEW: APPS.IGS_PS_CATLG_NOTES_V
12.1.1
-
View: IGS_PS_NOTE_TYPES_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_CATLG_NOTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_CATLG_NOTES_V, object_name:IGS_PS_CATLG_NOTES_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_CATLG_NOTES_V ,
-
View: IGS_AD_APPL_NOTES_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_CATLG_NOTES_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_APPL_NOTES_V
12.1.1
-
APPS.IGS_PS_CATALOG_ROLLOVER dependencies on IGS_PS_CATLG_NOTES
12.1.1
-
APPS.IGS_PS_VAL_AM dependencies on IGS_PS_CATLG_NOTES
12.1.1
-
VIEW: APPS.IGS_PS_NOTE_TYPES_V
12.1.1
-
TABLE: IGS.IGS_PS_NOTE_TYPES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_NOTE_TYPES, object_name:IGS_PS_NOTE_TYPES, status:VALID,
-
View: IGS_AD_NOTES_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_APPL_NOTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_NOTES_V, object_name:IGS_AD_APPL_NOTES_V, status:VALID,
-
View: IGS_PS_CATLG_NOTES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_CATLG_NOTES, object_name:IGS_PS_CATLG_NOTES, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_CATLG_NOTES ,
-
APPS.IGS_PS_VAL_AM SQL Statements
12.1.1
-
View: IGS_PS_CATLG_NOTES
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_NOTE_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_NOTE_TYPES_V, object_name:IGS_PS_NOTE_TYPES_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_NOTE_TYPES_V ,
-
VIEW: APPS.IGS_PS_CATLG_NOTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_CATLG_NOTES_V, object_name:IGS_PS_CATLG_NOTES_V, status:VALID,
-
View: IGS_AD_APPL_NOTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_NOTES_V, object_name:IGS_AD_APPL_NOTES_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_APPL_NOTES_V ,
-
APPS.IGS_PS_CATLG_NOTES_PKG dependencies on IGS_PS_CATLG_NOTES_ALL
12.1.1
-
View: IGS_AD_NOTES_INT
12.1.1
product: IGS - Student System , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_PS_NOTE_TYPES_PKG dependencies on IGS_PS_NOTE_TYPES
12.1.1
-
VIEW: APPS.IGSBV_ADM_APPL_NOTE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ADM_APPL_NOTE, object_name:IGSBV_ADM_APPL_NOTE, status:VALID,
-
VIEW: APPS.IGS_PS_CATLG_NOTES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_CATLG_NOTES, object_name:IGS_PS_CATLG_NOTES, status:VALID,
-
Table: IGS_PS_NOTE_TYPES
12.2.2
product: IGS - Student System (Obsolete) , description: Entity to capture the catalog versions. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_PS_CATLG_NOTES_PKG dependencies on IGS_GE_GEN_003
12.1.1
-
TABLE: IGS.IGS_AD_APPL_NOTES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APPL_NOTES, object_name:IGS_AD_APPL_NOTES, status:VALID,
-
VIEW: APPS.IGS_PS_CATLG_NOTES
12.1.1
-
Table: IGS_PS_NOTE_TYPES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_NOTE_TYPES, object_name:IGS_PS_NOTE_TYPES, status:VALID, product: IGS - Student System , description: Entity to capture the catalog versions. , implementation_dba_data: IGS.IGS_PS_NOTE_TYPES ,
-
VIEW: APPS.IGS_PS_NOTE_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_NOTE_TYPES_V, object_name:IGS_PS_NOTE_TYPES_V, status:VALID,
-
TABLE: IGS.IGS_AD_NOTES_INT_ALL_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_AD_NOTES_INT_ALL_OLD, status:VALID,
-
View: IGSBV_ADM_APPL_NOTE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ADM_APPL_NOTE, object_name:IGSBV_ADM_APPL_NOTE, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSBV_ADM_APPL_NOTE ,
-
APPS.IGS_AD_VAL_ACAI_FTR_OFFER dependencies on IGS_AD_APPL_NOTES
12.1.1
-
APPS.IGS_PS_CATLG_NOTES_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGSFV_ADM_APPL_NOTE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ADM_APPL_NOTE, object_name:IGSFV_ADM_APPL_NOTE, status:VALID,
-
View: IGSFV_ADM_APPL_NOTE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ADM_APPL_NOTE, object_name:IGSFV_ADM_APPL_NOTE, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSFV_ADM_APPL_NOTE ,
-
View: IGSFV_ADM_APPL_NOTE
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AD_APPL_NOTES_PKG dependencies on IGS_AD_APPL_NOTES
12.1.1
-
View: IGSBV_ADM_APPL_NOTE
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_AD_NOTES_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_NOTES_INT, object_name:IGS_AD_NOTES_INT, status:VALID,
-
APPS.IGS_AD_APPL_NOTES_PKG SQL Statements
12.1.1
-
APPS.IGS_AD_INT_RECONSIDER dependencies on IGS_AD_APPL_NOTES
12.1.1
-
APPS.IGS_PS_NOTE_TYPES_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_CATALOG_ROLLOVER
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_VAL_AM
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_CATLG_NOTES_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_NOTE_TYPES_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_APPL_NOTES_PKG
12.1.1
-
APPS.IGS_AD_INT_RECONSIDER dependencies on IGS_AD_APPL
12.1.1