Search Results building_desc
Overview
IGSFV_ROOMS is a read-only Oracle EBS view belonging to the IGS (Student System) product family, a module now classified as obsolete. As its description states, the entity "contains rooms information associated with a building." It presents a denormalized, joined picture of room records and their parent building, exposing room attributes alongside building codes and descriptions in a single relational source. In EBS 12.1.1 and 12.2.2, such views were typically used for reporting, inquiry forms, and downstream integration extracts, providing a convenient join layer so that consumers did not need to reconstruct the ROOM-to-BUILDING relationship themselves.
The view is defined with the WITH READ ONLY clause, confirming that it is not an updateable entity and is intended strictly for query access. The ETRM metadata indicates the view is "Not implemented in this database," meaning it exists in the repository definition but is not deployed in every instance. Its inclusion in the documentation remains relevant for environments running the legacy Student System or for migrations that reference it.
Underlying Base Objects
Although the documented "Referenced base objects" field is empty, the view text itself exposes the two source tables:
IGS_AD_ROOM_ALL— the room master (aliased RM), sourced as the primary driving table.IGS_AD_BUILDING_ALL— the building master (aliased BLD), joined onBUILDING_ID.
The join condition is RM.BUILDING_ID = BLD.BUILDING_ID, an inner join that returns only rooms with a valid matching building record. Note that IGS_AD_ROOM_ALL carries the _ALL suffix, indicating a multi-organization or partitioned table pattern common in IGS, though the view does not filter by organization explicitly.
Key Columns
- ROOM_NUMBER — from
RM.ROOM_CD; the business-facing room code. - BUILDING_ID — the foreign key linking the room to its building.
- DESCRIPTION — the room description (from RM, distinct from the building description).
- PRIMARY_USE_CODE — from
RM.PRIMARY_USE_CD; the designated primary use of the room. - CAPACITY — the room's seating or occupancy capacity.
- CLOSED_INDICATOR — from
RM.CLOSED_IND; flags whether the room is closed to use. - BUILDING_CODE — from
BLD.BUILDING_CD; the building's business code. - BUILDING_DESC — from
BLD.DESCRIPTION; the building description. This is the column referenced by the "building_desc" search term. - ROOM_ID — the unique room identifier.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE.
Common Use Cases and Queries
The view is suited to facility and scheduling reports that need room and building context together. A typical query retrieves active rooms in a given building:
SELECT ROOM_NUMBER, BUILDING_CODE, BUILDING_DESC, CAPACITY
FROM IGSFV_ROOMS
WHERE CLOSED_INDICATOR = 'N'
ORDER BY BUILDING_CODE, ROOM_NUMBER;
A second common pattern groups capacity by building for utilization analysis:
SELECT BUILDING_CODE, BUILDING_DESC, COUNT(*) ROOM_COUNT, SUM(CAPACITY) TOTAL_CAPACITY
FROM IGSFV_ROOMS
GROUP BY BUILDING_CODE, BUILDING_DESC;
Because the view is read-only and, per the metadata, frequently not implemented in a given database, callers should verify its existence before relying on it in production SQL or integration code.
-
View: IGSFV_ROOMS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains rooms information associated with a building. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_ROOMS
12.1.1
-
View: IGS_PS_USEC_AS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_AS_V, object_name:IGS_PS_USEC_AS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USEC_AS_V ,
-
View: IGS_PS_USEC_AS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_ROOMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ROOMS, object_name:IGSFV_ROOMS, status:VALID, product: IGS - Student System , description: This entity contains rooms information associated with a building. , implementation_dba_data: APPS.IGSFV_ROOMS ,
-
VIEW: APPS.IGS_EN_USEC_EXAM_SCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_USEC_EXAM_SCH_V, object_name:IGS_EN_USEC_EXAM_SCH_V, status:VALID,
-
VIEW: APPS.IGS_PS_USEC_AS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_AS_V, object_name:IGS_PS_USEC_AS_V, status:VALID,
-
VIEW: APPS.IGS_PS_USEC_AS_V
12.1.1
-
VIEW: APPS.IGSFV_ROOMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ROOMS, object_name:IGSFV_ROOMS, status:VALID,
-
View: IGS_EN_USEC_EXAM_SCH_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view contains the final exam schedule details. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_USEC_OCCURS_V
12.1.1
-
View: IGS_EN_USEC_EXAM_SCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_USEC_EXAM_SCH_V, object_name:IGS_EN_USEC_EXAM_SCH_V, status:VALID, product: IGS - Student System , description: This view contains the final exam schedule details. , implementation_dba_data: APPS.IGS_EN_USEC_EXAM_SCH_V ,
-
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 ,
-
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'. ,