Search Results igs_en_splace_sups
Overview
The IGS_EN_SPLACE_SUPS table is a data object within the Oracle E-Business Suite (EBS) Student System (IGS) module, specifically designed to manage student placements. Its primary function is to maintain the association between a student's external placement and the supervisors assigned to oversee that placement. This table serves as a critical junction, linking placement records to the individuals responsible for supervision, thereby enabling the tracking and management of supervisory relationships in academic or vocational placement programs. It is important to note that the IGS Student System is marked as obsolete in the provided ETRM documentation, indicating this table is part of a legacy system that may be deprecated or superseded in more recent implementations.
Key Information Stored
The table's structure is defined by a composite primary key, ensuring a unique supervisor assignment per placement. The key columns and their purposes are:
- SPLACEMENT_ID: A foreign key column that uniquely identifies the student placement record. This links directly to the IGS_EN_SPLACEMENTS table.
- SUPERVISOR_ID: A foreign key column that uniquely identifies the supervisor, who is stored as a party in the IGS_PE_HZ_PARTIES table (or a related person/party table in the HRMS foundation).
Together, these columns form the primary key (IGS_EN_SPLACE_SUPS_PK), establishing that a specific supervisor is recorded only once for a given placement. The table's design suggests it is a pure relationship table, likely containing no additional descriptive attributes beyond these identifiers.
Common Use Cases and Queries
The primary use case for this table is to support reporting and operational processes related to placement supervision. Administrators can query it to generate supervisor lists, validate assignment completeness, or audit supervisory coverage. A typical query would join to the placement and person tables to retrieve meaningful details.
Sample Query: List all supervisors for placements
SELECT pl.placement_code, per.party_name AS supervisor_name
FROM igs_en_splace_sups sup,
igs_en_splacements pl,
igs_pe_hz_parties per
WHERE sup.splacement_id = pl.splacement_id
AND sup.supervisor_id = per.party_id
ORDER BY pl.placement_code;
Another common operational query would be to identify placements lacking a supervisor assignment, which would involve a left outer join from the placements table to this supervisor table.
Related Objects
The IGS_EN_SPLACE_SUPS table has defined dependencies on two core tables via foreign key constraints:
- IGS_EN_SPLACEMENTS: This is the parent table for the placement record. The SPLACEMENT_ID in IGS_EN_SPLACE_SUPS references the primary key of this table, ensuring every supervisory record is tied to a valid, existing placement.
- IGS_PE_HZ_PARTIES: This is the foundation table for person and organization entities. The SUPERVISOR_ID references a PARTY_ID in this table, linking the supervisor assignment to a specific person record within the system's universal party model.
Given the obsolete status of the module, this table is unlikely to be referenced by newer APIs or interfaces. Any integrations or custom reports relying on placement supervisor data would directly query this junction table along with its parent entities.
-
Table: IGS_EN_SPLACE_SUPS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_SPLACE_SUPS, object_name:IGS_EN_SPLACE_SUPS, status:VALID, product: IGS - Student System , description: The table for storing supervisors for a placement , implementation_dba_data: IGS.IGS_EN_SPLACE_SUPS ,
-
Table: IGS_EN_SPLACEMENTS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_SPLACEMENTS, object_name:IGS_EN_SPLACEMENTS, status:VALID, product: IGS - Student System , description: The table for storing placement information of a student unit attempt , implementation_dba_data: IGS.IGS_EN_SPLACEMENTS ,
-
View: IGSBV_SUPERVISORS_PLACEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_SUPERVISORS_PLACEMENTS, object_name:IGSBV_SUPERVISORS_PLACEMENTS, status:VALID, product: IGS - Student System , description: Base view to get the details storing supervisors for a placement , implementation_dba_data: APPS.IGSBV_SUPERVISORS_PLACEMENTS ,
-
Table: IGS_PE_HZ_PARTIES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_HZ_PARTIES, object_name:IGS_PE_HZ_PARTIES, status:VALID, product: IGS - Student System , description: This entity describes the attributes of a person. , implementation_dba_data: IGS.IGS_PE_HZ_PARTIES ,
-
View: IGSFV_SUPERVISORS_PLACEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_SUPERVISORS_PLACEMENTS, object_name:IGSFV_SUPERVISORS_PLACEMENTS, status:VALID, product: IGS - Student System , description: Full view to get the details storing supervisors for a placement , implementation_dba_data: APPS.IGSFV_SUPERVISORS_PLACEMENTS ,