Search Results org_note_sequence
Overview
IGS_OR_ORG_NOTE_V is a supplementary view owned by the APPS schema in Oracle E-Business Suite, registered under FND Design Data as IGS.IGS_OR_ORG_NOTE_V and carrying a VALID status. Within the Oracle Student System (the IGS product family), this view supplies form-level access to organization notes — free-text annotations attached to organizational structures or units. It is classified explicitly as "a supplementary view used to simplify forms coding," meaning its primary purpose is to present denormalized data to Oracle Forms blocks and related UI components rather than to serve as a stable integration interface.
Oracle's own documentation attaches a strong caution to this object: the view is not recommended for direct querying or data alteration, and its definition may change dramatically across minor or major releases. For the EBS 12.1.1 and 12.2.2 code lines, this makes IGS_OR_ORG_NOTE_V a read-only convenience object. Its relevance to the user search term "org_note_sequence" is direct: ORG_NOTE_SEQUENCE is one of the view's exposed columns, providing the ordering value that determines how multiple notes attached to the same organization structure are sequenced when displayed or processed.
Underlying Base Objects
The view is documented as referencing two base objects in the APPS schema: IGS_OR_ORG_NOTES and IGS_OR_ORG_NOTE_TYPE. IGS_OR_ORG_NOTES is the transactional table holding individual note rows — the text, sequence, effective dates, and organizational key. IGS_OR_ORG_NOTE_TYPE is the validation/lookup table that classifies notes by type. The view joins these two, resolving the note type code to a human-readable description and thereby flattening the relationship into a single queryable structure.
ETRM records that IGS_OR_ORG_NOTE_V is not referenced by any other database object, confirming it sits at the top of its dependency chain as a leaf consumer of the two base tables. No further dependencies are documented, and the view itself is not a base for other views or packages.
Key Columns
- ROW_ID (ROWID) — the row identifier of the underlying note record.
- ORG_STRUCTURE_ID / ORG_STRUCTURE_TYPE (VARCHAR2) — the organization structure the note is attached to, and its classification.
- ORG_NOTE_TYPE (VARCHAR2, 10) — the note type code sourced from the base note record.
- NOTE_TYPE_DESCRIPTION (VARCHAR2, 60) — the decoded description pulled from IGS_OR_ORG_NOTE_TYPE.
- ORG_NOTE_SEQUENCE (NUMBER, 15) — the sequence number controlling ordering of notes for a given organization structure.
- START_DATE / END_DATE (DATE) — the effective date range during which the note is active.
- NOTE_TEXT (VARCHAR2, 2000) — the note body.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard WHO audit columns.
Common Use Cases and Queries
Typical usage is diagnostic and reporting-oriented: retrieving notes for an organization structure in sequence order, or checking which note types are in use. The following query orders notes by ORG_NOTE_SEQUENCE for a given structure:
SELECT org_structure_id, org_note_type, note_type_description,
org_note_sequence, start_date, end_date, note_text
FROM apps.igs_or_org_note_v
WHERE org_structure_id = :p_org_structure_id
ORDER BY org_note_sequence;
Because Oracle warns against dependence on this view, production integrations should query the base tables IGS_OR_ORG_NOTES and IGS_OR_ORG_NOTE_TYPE directly, replicating the join and applying the same sequence ordering. The view remains useful for understanding how the forms layer resolves note type descriptions and sequences, and for ad hoc verification during upgrade or troubleshooting activities in 12.1.1 and 12.2.2 environments.
-
VIEW: APPS.IGS_OR_ORG_NOTE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_ORG_NOTE_V, object_name:IGS_OR_ORG_NOTE_V, status:VALID,
-
TABLE: IGS.IGS_OR_INST_NTS_INT_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_OR_INST_NTS_INT_OLD, status:VALID,
-
TABLE: IGS.IGS_OR_ORG_NOTES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_OR_ORG_NOTES, object_name:IGS_OR_ORG_NOTES, status:VALID,
-
TABLE: IGS.IGS_OR_INST_NTS_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_OR_INST_NTS_INT, object_name:IGS_OR_INST_NTS_INT, status:VALID,
-
View: IGS_OR_ORG_NOTE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_ORG_NOTE_V, object_name:IGS_OR_ORG_NOTE_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_OR_ORG_NOTE_V ,
-
View: IGS_OR_ORG_NOTE_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_ORG_STRUCTURE_NOTES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ORG_STRUCTURE_NOTES, object_name:IGSFV_ORG_STRUCTURE_NOTES, status:VALID,
-
VIEW: APPS.IGSBV_ORG_STRUCTURE_NOTES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ORG_STRUCTURE_NOTES, object_name:IGSBV_ORG_STRUCTURE_NOTES, status:VALID,
-
View: IGSBV_ORG_STRUCTURE_NOTES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ORG_STRUCTURE_NOTES, object_name:IGSBV_ORG_STRUCTURE_NOTES, status:VALID, product: IGS - Student System , description: This entity contains notes about institutions, organizational units or locations. , implementation_dba_data: APPS.IGSBV_ORG_STRUCTURE_NOTES ,
-
Table: IGS_OR_ORG_NOTES
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains notes about institutions, organizational units or locations. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_OR_ORG_NOTES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_OR_ORG_NOTES, object_name:IGS_OR_ORG_NOTES, status:VALID, product: IGS - Student System , description: This entity contains notes about institutions, organizational units or locations. , implementation_dba_data: IGS.IGS_OR_ORG_NOTES ,
-
APPS.IGS_OR_ORG_NOTES_PKG SQL Statements
12.1.1
-
View: IGSFV_ORG_STRUCTURE_NOTES
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains notes about institutions, organizational units or locations. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_ORG_STRUCTURE_NOTES
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains notes about institutions, organizational units or locations. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_ORG_STRUCTURE_NOTES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ORG_STRUCTURE_NOTES, object_name:IGSFV_ORG_STRUCTURE_NOTES, status:VALID, product: IGS - Student System , description: This entity contains notes about institutions, organizational units or locations. , implementation_dba_data: APPS.IGSFV_ORG_STRUCTURE_NOTES ,
-
PACKAGE BODY: APPS.IGS_OR_ORG_NOTES_PKG
12.1.1
-
APPS.IGS_OR_INST_IMP_003_PKG SQL Statements
12.1.1
-
APPS.IGS_OR_ORG_NOTES_PKG dependencies on IGS_OR_ORG_NOTES
12.1.1
-
APPS.IGS_OR_INST_IMP_003_PKG dependencies on IGS_OR_ORG_NOTES
12.1.1
-
PACKAGE BODY: APPS.IGS_OR_INST_IMP_003_PKG
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'. ,
-
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'. ,