Search Results ss_spltal_id
Overview
The IGS_SS_AD_SPLTAL_STG table is a staging table within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically in the IGS (iGrants) schema. Its primary role is to temporarily hold data related to special talents declared by applicants during a self-service admission application process. As a staging table, it functions as an intermediate data store, typically used to validate, transform, or batch-process information before it is moved to or reconciled with final transactional tables. This design pattern is common in EBS for managing data loads and complex application workflows, ensuring data integrity before final commitment.
Key Information Stored
The table stores a concise set of columns focused on linking an application to a specific talent type. The key columns are:
- SS_SPLTAL_ID (NUMBER): The primary key, serving as a unique identifier for each special talent record entered for an application.
- SS_ADM_APPL_ID (NUMBER): A foreign key that uniquely identifies the parent Self Service Admission Application, linking the talent to a specific application.
- SPECIAL_TALENT_TYPE_ID (NUMBER): A foreign key that identifies the type of special talent (e.g., athletics, arts, academics) from a predefined list of codes.
- Standard WHO Columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN): These audit columns track the creation and modification history of each row, a standard practice in EBS tables.
Common Use Cases and Queries
This table is central to operations involving the capture and review of applicant special talents. A common use case is generating a report for admissions officers listing all applicants who have declared a specific type of talent, such as athletic prowess, for targeted review or scholarship consideration. Another scenario involves data validation routines that check for duplicate or invalid talent entries for an application before the staged data is processed further.
A typical query to retrieve all special talent records for a specific admission application would be:
SELECT spltal.SS_SPLTAL_ID, spltal.SPECIAL_TALENT_TYPE_ID, appl.APPLICANT_NUMBER
FROM IGS.IGS_SS_AD_SPLTAL_STG spltal
JOIN IGS.IGS_SS_ADM_APPL_STG appl ON spltal.SS_ADM_APPL_ID = appl.SS_ADM_APPL_ID
WHERE spltal.SS_ADM_APPL_ID = :APPLICATION_ID;
For reporting, an analyst might join to the code table to get the descriptive talent type:
SELECT spltal.SS_SPLTAL_ID, codes.MEANING AS TALENT_TYPE
FROM IGS.IGS_SS_AD_SPLTAL_STG spltal
JOIN IGS.IGS_AD_CODE_CLASSES codes ON spltal.SPECIAL_TALENT_TYPE_ID = codes.CODE_ID
WHERE codes.CODE_CLASS = 'SPECIAL_TALENT_TYPE';
Related Objects
The table has defined relationships with other key staging and reference tables in the IGS module, as per the provided metadata:
- Primary Key: IGS_SS_AD_SPLTAL_STG_PK on the column SS_SPLTAL_ID.
- Foreign Key (Parent): The SS_ADM_APPL_ID column references the IGS_SS_ADM_APPL_STG table. This enforces that every special talent record must be associated with a valid, existing admission application in the system.
- Foreign Key (Parent): The SPECIAL_TALENT_TYPE_ID column references the IGS_AD_CODE_CLASSES table. This ensures that the talent type selected by the applicant is a valid value from the controlled list maintained in the code classes.
These relationships are critical for maintaining referential integrity and ensuring that the staged data aligns correctly with the application master data and the organization's code standards.
-
TABLE: IGS.IGS_SS_AD_SPLTAL_STG
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_AD_SPLTAL_STG, object_name:IGS_SS_AD_SPLTAL_STG, status:VALID,
-
Table: IGS_SS_AD_SPLTAL_STG
12.2.2
product: IGS - Student System (Obsolete) , description: Staging table for special talents for a self service admission application , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_SS_AD_SPLTAL_STG
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_AD_SPLTAL_STG, object_name:IGS_SS_AD_SPLTAL_STG, status:VALID, product: IGS - Student System , description: Staging table for special talents for a self service admission application , implementation_dba_data: IGS.IGS_SS_AD_SPLTAL_STG ,
-
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'. ,
-
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'. ,