Search Results igs_ps_media_equip_all
Overview
The IGS_PS_MEDIA_EQUIP_ALL table is a core data entity within the Oracle E-Business Suite (EBS) Student System (IGS). Its primary function is to serve as a master reference table for cataloging media and equipment resources available within an educational institution. This table acts as a centralized repository, enabling the system to manage and associate specific physical or digital resources—such as projectors, lab equipment, software licenses, or specialized media—with academic scheduling and unit offerings. Its role is foundational to the logistical planning of course delivery, ensuring that necessary resources are properly defined and can be allocated to specific classes, units, or facilities.
Key Information Stored
While the full column list is not detailed in the provided metadata, the structure revolves around the primary key, MEDIA_CODE. This column uniquely identifies each media or equipment item in the system. Based on its description and relationships, the table likely contains descriptive columns for the resource, such as a name, description, type classification (e.g., media vs. equipment), and potentially status or inventory-related attributes. The critical design principle is that each distinct resource type is defined once in this master table, and its MEDIA_CODE is then referenced elsewhere in the application to denote usage or requirement.
Common Use Cases and Queries
The table is central to administrative processes involving resource management. A common use case is during the scheduling of unit sections or classes, where administrators must specify the media or equipment required for a particular session. Reporting use cases include generating inventories of available resources, identifying utilization rates, and listing all unit offerings that depend on a specific piece of equipment for compliance or planning purposes. A typical query would join this table to its related transactional tables to retrieve a descriptive list of resources for a given unit or facility.
- Sample Query (Basic Lookup): SELECT MEDIA_CODE, DESCRIPTION FROM IGS_PS_MEDIA_EQUIP_ALL WHERE [status_condition] ORDER BY MEDIA_CODE;
- Sample Query (Usage Report): SELECT M.MEDIA_CODE, M.DESCRIPTION, COUNT(UF.UNIT_CODE) AS UNIT_COUNT FROM IGS_PS_MEDIA_EQUIP_ALL M, IGS_PS_UNIT_FACILITY UF WHERE M.MEDIA_CODE = UF.MEDIA_CODE GROUP BY M.MEDIA_CODE, M.DESCRIPTION;
Related Objects
The table maintains defined foreign key relationships with other Student System tables, as documented in the ETRM metadata. These relationships demonstrate how the master media/equipment codes are utilized operationally within the application.
- IGS_PS_UNIT_FACILITY: References IGS_PS_MEDIA_EQUIP_ALL via the MEDIA_CODE column. This links specific media or equipment items to unit offerings, defining what resources are associated with a course unit.
- IGS_PS_USO_FACILITY: References IGS_PS_MEDIA_EQUIP_ALL via the FACILITY_CODE column (which, in this context, holds a MEDIA_CODE value). This links resources to unit section offerings (USOs), specifying what is required for individual class sessions.
The primary key constraint IGS_PS_MEDIA_EQUIP_PK on MEDIA_CODE enforces data integrity for these relationships.
-
Table: IGS_PS_MEDIA_EQUIP_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Entity to capture the Media and Equipment information , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PS_UNIT_FACILITY
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the Facilities (Media & Equipment) available at Buildings & Rooms of Unit Locations , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PS_USO_FACILITY
12.2.2
product: IGS - Student System (Obsolete) , description: This table contains information about Unit Section Occurrence Facilities. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_MEDIA_EQUIP
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,