Search Results preferred_building_desc
Overview
The view APPS.IGSFV_USEC_MEETING_SCHEDULES is a reporting and integration layer within the Oracle E-Business Suite Student System (product code IGS). It presents unit section meeting schedule information, exposing each occurrence of a scheduled class meeting together with its day-of-week indicators, start and end times, assigned location (building and room), dedicated room/building, preferred room/building, and the effective start and end dates of the schedule. The view is defined in the APPS schema and holds a VALID status in the ETRM 12.2.2 dictionary.
Its role is to flatten the normalized occurrence data held in the base occurrence table into a form suitable for reporting, enrollment-related display, and downstream integration. Descriptive attributes for buildings and rooms are resolved inline through outer joins, removing the need for consumers to perform additional lookups. In the context of the searched term no_set_day_indicator, the view exposes the column NO_SET_DAY_INDICATOR (aliased from USO.NO_SET_DAY_IND), which flags meeting occurrences that have no fixed set day assigned. This indicator complements the seven day-of-week columns and allows reporting logic to distinguish schedules defined by explicit weekday versus those without a defined meeting day.
Underlying Base Objects
The view is defined over one primary base table and six outer-joined reference tables:
IGS_PS_USEC_OCCURS_ALL(alias USO) — the driving table, holding unit section occurrence records including day indicators, times, room/building codes, and status fields.IGS_AD_BUILDING_ALL(aliases BLD1, BLD2, BLD3) — resolves descriptions for the assigned, dedicated, and preferred buildings respectively.IGS_AD_ROOM_ALL(aliases ROM1, ROM2, ROM3) — resolves descriptions for the assigned, dedicated, and preferred rooms respectively.
All joins to the building and room tables are outer joins (indicated by the (+) operator), so an occurrence row is returned even when its building or room code is null or unmatched. The ETRM metadata lists no separately documented base objects, but the view SQL clearly identifies the tables above as its direct dependencies. Because _ALL tables are involved, the view honors multi-org (operating unit) security as applied to those base entities.
Key Columns
OCCURRENCE_IDENTIFIER— identifier for the meeting occurrence.MONDAY_INDICATORthroughSUNDAY_INDICATOR— seven flags indicating which weekdays the occurrence meets.START_TIME,END_TIME— the meeting window.BUILDING_CODE,ROOM_CODE— assigned location, withBUILDING_DESCRIPTIONandROOM_DESCRIPTIONresolved from the base tables.DEDICATED_BUILDING_CODE,DEDICATED_ROOM_CODEand their_DESCcompanions — the dedicated facility.PREFERRED_BUILDING_CODE,PREFERRED_ROOM_CODEand their_DESCcompanions — the preferred facility.START_DATE,END_DATE— the active date range of the schedule.TO_BE_ANNOUNCED_INDICATOR— indicates the location is not yet confirmed.NO_SET_DAY_INDICATOR— indicates no fixed set day is assigned to the occurrence.CANCEL_FLAG,ABORT_FLAG,STATUS_LAST_UPDATED,ERROR_TEXT,NOTIFY_STATUS,INST_NOTIFY_INDICATOR— lifecycle, scheduling-process, and notification status columns.UNIT_SECTION_OCCURRENCE_ID,UNIT_SECTION_ID— keys linking the schedule back to its unit section.- Standard WHO columns (
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE).
Common Use Cases and Queries
Typical consumers use the view to list meeting schedules for a unit section, to identify occurrences without an assigned day, and to report location utilization. The following query returns schedules for a given unit section, highlighting the no-set-day flag:
SELECT occurrence_identifier,
unit_section_id,
monday_indicator,
tuesday_indicator,
wednesday_indicator,
thursday_indicator,
friday_indicator,
start_time,
end_time,
building_description,
room_description,
no_set_day_indicator
FROM apps.igsfv_usec_meeting_schedules
WHERE unit_section_id = :p_unit_section_id
AND cancel_flag = 'N';
To isolate occurrences that carry no fixed meeting day, filter on the searched column: WHERE no_set_day_indicator = 'Y'. Additional filters on to_be_announced_indicator support reporting of locations pending confirmation, while start_date and end_date constrain schedules to a term window. A sample query returns schedules with their room and building descriptions:
SELECT occurrence_identifier,
building_description,
room_description,
start_date,
end_date
FROM apps.igsfv_usec_meeting_schedules
WHERE start_date >= :p_term_start
AND end_date <= :p_term_end
AND abort_flag = 'N';
Because building and room descriptions are resolved within the view, these queries avoid secondary joins and remain suitable for concurrent programs, OAF/Forms data sources, and integration extracts.
-
View: IGSFV_USEC_MEETING_SCHEDULES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_USEC_MEETING_SCHEDULES, object_name:IGSFV_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.IGSFV_USEC_MEETING_SCHEDULES ,
-
View: IGSFV_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: APPS.IGSFV_USEC_MEETING_SCHEDULES
12.1.1
-
VIEW: APPS.IGS_PS_USEC_OCCURS_V
12.1.1
-
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_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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: APPS.IGSFV_USEC_MEETING_SCHEDULES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_USEC_MEETING_SCHEDULES, object_name:IGSFV_USEC_MEETING_SCHEDULES, status:VALID,
-
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'. ,