Search Results athletics_id
Overview
The IGS_AD_ATHLETICS table is a historical data object within the Oracle E-Business Suite (EBS) Student System (IGS). Its primary function was to store information related to athletic activities or sports associated with admissions processes. As documented in the ETRM, this table was rendered obsolete by Enhancement 2101696. Crucially, the metadata explicitly states it is "Not implemented in this database," indicating that in standard deployments of EBS 12.1.1 and 12.2.2, this table is not present. Its role has been superseded by other data structures within the evolving Student System architecture, reflecting a consolidation or redesign of how applicant extracurricular and athletic data is managed.
Key Information Stored
Based on the provided metadata, the table's structure was designed around a unique athletic record identifier and a link to a standardized code. The primary documented columns are:
- ATHLETICS_ID: Served as the unique primary key for each record in the table, identifying a specific athletic association for an applicant.
- ATHLETICS_SPORT_ID: A foreign key column linking to the IGS_AD_CODE_CLASSES table. This field stored a reference code to classify the specific sport or athletic activity, ensuring data consistency by leveraging a centralized code table.
Other columns likely existed to store details such as applicant linkage, participation level, years of experience, or achievements, but these are not detailed in the provided excerpt.
Common Use Cases and Queries
As an obsolete and unimplemented table, there are no active operational or reporting use cases for IGS_AD_ATHLETICS in current EBS environments. Historically, its purpose would have been to support admissions scenarios where an applicant's athletic background was a consideration. Potential historical query patterns would have involved joining to applicant personal data tables and the code classes table for descriptions. A sample analytical query, had the table been active, might have resembled:
SELECT a.applicant_id, cc.MEANING as sport_name FROM IGS_AD_ATHLETICS aa JOIN IGS_AD_CODE_CLASSES cc ON aa.ATHLETICS_SPORT_ID = cc.CODE_CLASS_ID JOIN [Applicant Table] a ON aa.[APPLICANT_KEY] = a.[APPLICANT_KEY];
Any such reporting requirements in contemporary implementations are fulfilled through the successor objects introduced by Enhancement 2101696.
Related Objects
The documented relationship data confirms a single, key foreign key dependency for this table. The related objects are:
- Primary Key: IGS_AD_ATHLETICS_PK on the column ATHLETICS_ID.
- Foreign Key Reference: The table IGS_AD_ATHLETICS references the table IGS_AD_CODE_CLASSES via the column ATHLETICS_SPORT_ID. This relationship was used to validate and describe the athletic sport code stored in each record.
No other tables referencing IGS_AD_ATHLETICS are listed in the provided metadata. Its status as obsolete and unimplemented means it has no active dependencies within the standard EBS data model for the specified versions.
-
Table: IGS_AD_ATHLETICS
12.1.1
product: IGS - Student System , description: Table made obsolete in Enh. 2101696 , implementation_dba_data: Not implemented in this database ,