Search Results inst_notify_ind
Overview
IGSBV_USEC_MEETING_SCHEDULES is a read-only Oracle EBS view owned by the APPS schema and defined over the student records subsystem that underpins Oracle's Student Information / Student Systems product line. The view presents unit section occurrence scheduling data in a fully denormalised, flattened form intended for reporting, integration, and downstream consumption. Its name indicates its primary purpose: exposing the day-of-week, time-slot, and room allocation attributes of a scheduled meeting so that external processes can render, compare, or transmit "meeting notice" style output without joining multiple base tables. A user searching for a term such as "Meeting Notice 16-9-2026" is searching for the specific occurrence or scheduling record that corresponds to that calendar date; the view provides the column set from which that answer is constructed.
Underlying Base Objects
The documented definition is a single-table projection. The view selects from IGS_PS_USEC_OCCURS_ALL, an occurrence table belonging to the IGS (student systems) table family, qualified with WITH READ ONLY. No additional joins, unions, or subqueries are present in the view text, so the view is effectively a column-renamed and partially decoded layer over that one base object. Because the base table is an _ALL variant, it is expected to expose all records without the organisational unit filtering typically imposed by _V or security-checked variants; consumers must therefore apply their own institution or operating-unit predicates. The ETRM metadata records no additional referenced base objects beyond the single occurrence table. Several columns are supplied not from stored data but from literal lookup-resolution expressions embedded in the SELECT list, which are evaluated at query time.
Key Columns
- OCCURRENCE_IDENTIFIER — the unique key of the schedule occurrence, used to correlate the view with other IGS occurrence entities.
- MONDAY_INDICATOR … SUNDAY_INDICATOR — seven indicator columns (aliased from MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY) that describe the repeating weekly pattern of the meeting.
- START_TIME / END_TIME — the daily meeting window.
- START_DATE / END_DATE — the effective date range for the occurrence; together with the weekday indicators these determine whether a given calendar date, such as 16-Sep-2026, falls inside the schedule.
- BUILDING_CODE / ROOM_CODE — the assigned physical location, complemented by DEDICATED_ and PREFERRED_ variants of both.
- STATUS_LAST_UPDATED, ERROR_TEXT, NOTIFY_STATUS, INST_NOTIFY_INDICATOR — scheduling status and institutional notification attributes relevant to meeting-notice generation.
- Lookup-decoded columns — the literal expressions
'_LA:SCHEDULE_STATUS:IGS_LOOKUP_VALUES:SCHEDULE_TYPE:MEANING'and'_LA:PREFERRED_REGION_CODE:IGS_LOOKUP_VALUES:IGS_OR_LOC_REGION:MEANING'are descriptions derived from IGS_LOOKUP_VALUES. - TO_BE_ANNOUNCED_INDICATOR, NO_SET_DAY_IND, CANCEL_FLAG, ABORT_FLAG — flags indicating scheduling exceptions, cancellations, or aborts.
- UNIT_SECTION_OCCURRENCE_ID / UNIT_SECTION_ID — the parent unit section that owns the occurrence.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — standard audit columns.
Common Use Cases and Queries
Typical uses include producing meeting notices, timetables, and room-utilisation reports, and feeding scheduling data into external calendars. To locate a schedule effective on a specific date, filter on the date range and the relevant weekday indicator.
SELECT occurrence_identifier, start_time, end_time, building_code, room_code
FROM apps.igsbv_usec_meeting_schedules
WHERE start_date <= TO_DATE('16-09-2026','DD-MM-YYYY')
AND NVL(end_date, TO_DATE('31-12-4712','DD-MM-YYYY')) >= TO_DATE('16-09-2026','DD-MM-YYYY')
AND wednesday_indicator = 'Y';
Because 16 September 2026 falls on a Wednesday, the Wednesday indicator is the correct filter for that date. A second common pattern is retrieving all occurrence records for a unit section, ordering by start time, to build a consolidated timetable or to detect room conflicts across BUILDING_CODE and ROOM_CODE within overlapping START_TIME and END_TIME windows. All queries should observe the read-only nature of the view and apply explicit operating-unit constraints, since the underlying _ALL table is not restricted by row-level security.
-
VIEW: APPS.IGSBV_USEC_MEETING_SCHEDULES
12.1.1
-
View: IGS_PS_USEC_OCCURS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_OCCURS, object_name:IGS_PS_USEC_OCCURS, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USEC_OCCURS ,
-
View: IGS_PS_USEC_OCCURS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_OCCURS_V, object_name:IGS_PS_USEC_OCCURS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USEC_OCCURS_V ,
-
View: IGS_PS_USEC_OCCURS
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_USEC_OCCURS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_USEC_OCCURS
12.1.1
-
VIEW: APPS.IGS_PS_USEC_OCCURS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_OCCURS_V, object_name:IGS_PS_USEC_OCCURS_V, status:VALID,
-
View: IGSBV_USEC_MEETING_SCHEDULES
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the unit section meeting schedules with day/time indicator, location, dedicated room/building details and also preferred building/room with start and end dates of the meeting schedule. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_USEC_MEETING_SCHEDULES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_USEC_MEETING_SCHEDULES, object_name:IGSBV_USEC_MEETING_SCHEDULES, status:VALID, product: IGS - Student System , description: This entity describes the unit section meeting schedules with day/time indicator, location, dedicated room/building details and also preferred building/room with start and end dates of the meeting schedule. , implementation_dba_data: APPS.IGSBV_USEC_MEETING_SCHEDULES ,
-
VIEW: APPS.IGS_PS_USEC_OCCURS_V
12.1.1
-
VIEW: APPS.IGS_PS_USEC_OCCURS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_OCCURS, object_name:IGS_PS_USEC_OCCURS, status:VALID,
-
TABLE: IGS.IGS_PS_USEC_OCCURS_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_USEC_OCCURS_ALL, object_name:IGS_PS_USEC_OCCURS_ALL, status:VALID,
-
APPS.IGS_PS_USEC_OCCURS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_USEC_OCCURS_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'. ,