Search Results unit_version_number
Overview
The IGS_PS_UNIT_LOCATION table is a core data object within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Oracle Student Management (OSM) product, as indicated by the IGS (iGrads) schema. Its primary function is to capture and maintain the physical location details where specific versions of academic units (courses/subjects) are offered. This table is essential for scheduling and resource allocation, linking a unit offering to a precise geographical location, building, and room. It serves as a critical junction table that supports the operational planning of academic delivery by defining the venue for unit sections.
Key Information Stored
The table structure is designed to uniquely identify a unit-location combination and its specific venue details. The key columns include:
- UNIT_LOCATION_ID: A system-generated unique identifier (primary key) for each record.
- UNIT_CODE and UNIT_VERSION_NUMBER: Together, these fields identify the exact version of the academic unit being offered. The UNIT_VERSION_NUMBER is a critical attribute for tracking changes to a unit's curriculum over time.
- LOCATION_CODE: Identifies the campus or general site where the unit section is held.
- BUILDING_ID and ROOM_ID: Provide granular detail, specifying the exact building and room within the given location.
- Standard WHO Columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN): Audit columns tracking the creation and modification history of each record.
Common Use Cases and Queries
This table is central to queries involving academic scheduling, room utilization reports, and student timetables. A common use case is retrieving all physical locations for a specific unit version to manage class allocations or notify students. The following sample query pattern demonstrates fetching complete location details for a unit:
SELECT ul.unit_code, ul.unit_version_number, ul.location_code, ul.building_id, ul.room_id
FROM igs.igs_ps_unit_location ul
WHERE ul.unit_code = 'MATH101'
AND ul.unit_version_number = 2;
Another critical reporting use case involves analyzing room capacity and scheduling conflicts by joining this table with related scheduling and resource tables. The non-unique indexes on columns like BUILDING_ID (N1), LOCATION_CODE (N2), and the combination of UNIT_VERSION_NUMBER and UNIT_CODE (N4) are optimized for such lookups and analytical queries.
Related Objects
While the provided dependency information states the table does not reference other objects, it is referenced by the APPS synonym IGS_PS_UNIT_LOCATION. This synonym allows other application modules within the EBS instance to access this table. In a full implementation, this table would have logical relationships with master tables such as IGS_PS_UNIT_VER (unit version details), IGS_AD_LOCATION (location master), and likely tables storing building (IGS_AD_BUILDING) and room (IGS_AD_ROOM) information. It acts as a foundational table for higher-level scheduling entities and user interfaces within the Student Management system.
-
TABLE: IGS.IGS_PS_UNIT_LOCATION
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UNIT_LOCATION, object_name:IGS_PS_UNIT_LOCATION, status:VALID,
-
APPS.IGS_FI_PRC_FEE_ASS dependencies on IGS_FI_FEE_AS_RATE
12.1.1
-
VIEW: APPS.IGSBV_UNIT_HESA_COST_CENTRES
12.1.1
-
View: IGSBV_UNIT_UK_STATISTICS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_UNIT_UK_STATISTICS, object_name:IGSBV_UNIT_UK_STATISTICS, status:VALID, product: IGS - Student System , description: Base View for UK Statistics Unit Details , implementation_dba_data: APPS.IGSBV_UNIT_UK_STATISTICS ,
-
View: IGS_PS_UNIT_GRD_SCHM_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_UNIT_UK_STATISTICS
12.2.2
product: IGS - Student System (Obsolete) , description: Base View for UK Statistics Unit Details , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UNIT_FACILITY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_FACILITY_V, object_name:IGS_PS_UNIT_FACILITY_V, status:VALID, product: IGS - Student System , description: View created to contain the media information that includes the media identification, media code and unit version information. , implementation_dba_data: APPS.IGS_PS_UNIT_FACILITY_V ,
-
VIEW: APPS.IGSBV_UNIT_STAT_COST_CENTRES
12.1.1
-
View: IGSBV_HIGH_EDU_UNIT_CATEGORIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HIGH_EDU_UNIT_CATEGORIES, object_name:IGSBV_HIGH_EDU_UNIT_CATEGORIES, status:VALID, product: IGS - Student System , description: This is a base view, which describes the categories that are applied to a unit. There can be multiple categories for each unit. , implementation_dba_data: APPS.IGSBV_HIGH_EDU_UNIT_CATEGORIES ,
-
View: IGS_PS_UNT_PRV_GRADE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNT_PRV_GRADE_V, object_name:IGS_PS_UNT_PRV_GRADE_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNT_PRV_GRADE_V ,
-
View: IGS_PS_UNIT_GRD_SCHM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_GRD_SCHM_V, object_name:IGS_PS_UNIT_GRD_SCHM_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_GRD_SCHM_V ,
-
View: IGSBV_UNIT_STAT_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Base View for UK Statistics Unit Cost Center Details , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_EN_GEN_LEGACY dependencies on IGS_PS_UNIT_GRD_SCHM
12.1.1
-
View: IGS_PS_UNIT_LOCATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_LOCATION_V, object_name:IGS_PS_UNIT_LOCATION_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_LOCATION_V ,
-
View: IGSBV_HIGH_EDU_UNIT_CATEGORIES
12.2.2
product: IGS - Student System (Obsolete) , description: This is a base view, which describes the categories that are applied to a unit. There can be multiple categories for each unit. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_UNIT_UK_STATISTICS
12.1.1
-
TABLE: IGS.IGS_PS_UNIT_FACILITY
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UNIT_FACILITY, object_name:IGS_PS_UNIT_FACILITY, status:VALID,
-
APPS.IGS_PS_GEN_008 dependencies on IGS_PS_UNIT_LOCATION
12.1.1
-
VIEW: APPS.IGSBV_HIGH_EDU_UNIT_CATEGORIES
12.1.1
-
View: IGSFV_HIGH_EDU_UNIT_CATEGORIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_HIGH_EDU_UNIT_CATEGORIES, object_name:IGSFV_HIGH_EDU_UNIT_CATEGORIES, status:VALID, product: IGS - Student System , description: This is a full view, which describes the categories that are applied to a unit. There can be multiple categories for each unit. , implementation_dba_data: APPS.IGSFV_HIGH_EDU_UNIT_CATEGORIES ,
-
View: IGSBV_UNIT_HESA_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Base business view to allow queries on Unit HESA Cost Center Details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_UNIT_FACILITY_V
12.1.1
-
VIEW: APPS.IGS_PS_UNIT_GRD_SCHM_V
12.1.1
-
View: IGSBV_UNIT_STAT_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_UNIT_STAT_COST_CENTRES, object_name:IGSBV_UNIT_STAT_COST_CENTRES, status:VALID, product: IGS - Student System , description: Base View for UK Statistics Unit Cost Center Details , implementation_dba_data: APPS.IGSBV_UNIT_STAT_COST_CENTRES ,
-
View: IGSFV_UNIT_STAT_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UNIT_STAT_COST_CENTRES, object_name:IGSFV_UNIT_STAT_COST_CENTRES, status:VALID, product: IGS - Student System , description: Full View for UK Statistics Unit Cost Center Details , implementation_dba_data: APPS.IGSFV_UNIT_STAT_COST_CENTRES ,
-
View: IGS_PS_UNT_REPT_FMLY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNT_REPT_FMLY_V, object_name:IGS_PS_UNT_REPT_FMLY_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNT_REPT_FMLY_V ,
-
View: IGS_PS_UNIT_FACILITY_V
12.2.2
product: IGS - Student System (Obsolete) , description: View created to contain the media information that includes the media identification, media code and unit version information. , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_PS_UNT_REPT_FMLY
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UNT_REPT_FMLY, object_name:IGS_PS_UNT_REPT_FMLY, status:VALID,
-
View: IGS_PS_UNIT_LOCATION_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_UNIT_HESA_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_UNIT_HESA_COST_CENTRES, object_name:IGSBV_UNIT_HESA_COST_CENTRES, status:VALID, product: IGS - Student System , description: Base business view to allow queries on Unit HESA Cost Center Details , implementation_dba_data: APPS.IGSBV_UNIT_HESA_COST_CENTRES ,
-
View: IGS_PS_UNT_REPT_FMLY_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_UNT_REPT_FMLY_V
12.1.1
-
APPS.IGS_PS_GEN_008 dependencies on IGS_PS_UNIT_FACILITY
12.1.1
-
View: IGSBV_HESA_EXT_RUN_DAT_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HESA_EXT_RUN_DAT_LINES, object_name:IGSBV_HESA_EXT_RUN_DAT_LINES, status:VALID, product: IGS - Student System , description: Base View for HESA extract data , implementation_dba_data: APPS.IGSBV_HESA_EXT_RUN_DAT_LINES ,
-
APPS.IGS_PS_UNIT_FACILITY_PKG dependencies on IGS_PS_UNIT_FACILITY
12.1.1
-
View: IGS_PS_UNT_PRV_GRADE_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_PS_UNT_PRV_GRADE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UNT_PRV_GRADE, object_name:IGS_PS_UNT_PRV_GRADE, status:VALID,
-
View: IGSFV_UNIT_STAT_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for UK Statistics Unit Cost Center Details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_HIGH_EDU_UNIT_CATEGORIES
12.1.1
-
APPS.IGS_FI_CHARGES_API_PVT dependencies on IGS_PS_UNIT_OFR_OPT
12.1.1
-
View: IGSFV_HIGH_EDU_UNIT_CATEGORIES
12.2.2
product: IGS - Student System (Obsolete) , description: This is a full view, which describes the categories that are applied to a unit. There can be multiple categories for each unit. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_HESA_EXT_RUN_DAT_LINES
12.2.2
product: IGS - Student System (Obsolete) , description: Base View for HESA extract data , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_PS_UNT_REPT_FMLY_PKG dependencies on IGS_PS_UNT_REPT_FMLY
12.1.1
-
VIEW: APPS.IGS_PS_UNT_PRV_GRADE_V
12.1.1
-
APPS.IGS_PS_GEN_008 dependencies on IGS_PS_UNIT_GRD_SCHM
12.1.1
-
APPS.IGS_PS_UNIT_GRD_SCHM_PKG dependencies on IGS_PS_UNIT_GRD_SCHM
12.1.1
-
APPS.IGS_PS_UNIT_LOCATION_PKG dependencies on IGS_PS_UNIT_LOCATION
12.1.1
-
View: IGSFV_UNIT_UK_STATISTICS
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for UK Statistics Unit Details , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_UNIT_UK_STATISTICS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UNIT_UK_STATISTICS, object_name:IGSFV_UNIT_UK_STATISTICS, status:VALID, product: IGS - Student System , description: Full View for UK Statistics Unit Details , implementation_dba_data: APPS.IGSFV_UNIT_UK_STATISTICS ,
-
View: IGSFV_UNIT_HESA_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UNIT_HESA_COST_CENTRES, object_name:IGSFV_UNIT_HESA_COST_CENTRES, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSFV_UNIT_HESA_COST_CENTRES ,