Search Results igf_sp_stdnt_rel_all_pk
Overview
The IGF_SP_STDNT_REL_ALL table is a core data object within the Oracle E-Business Suite (EBS) Financial Aid module (IGF). It functions as the central repository for managing relationships between sponsors and students. In the context of financial aid, a sponsor is an entity—often an organization, government body, or individual—that provides funding for a student's education. This table establishes and maintains the critical link between a specific funding source (fund), the student's financial aid application record (base), and the sponsoring party. Its "ALL" suffix indicates it is a multi-organization table, storing data across multiple operating units, which is essential for enterprise-level deployments. The table's primary role is to support the complex tracking and administration of sponsored awards within the system.
Key Information Stored
The table's structure is designed to uniquely define a sponsor-student relationship for a specific fund and academic period. Its primary key (IGF_SP_STDNT_REL_ALL_PK) is the system-generated identifier, SPNSR_STDNT_ID. A unique key constraint further enforces business logic by ensuring that a combination of FUND_ID, BASE_ID, LD_CAL_TYPE, and LD_SEQUENCE_NUMBER is not duplicated. Key columns include:
- SPNSR_STDNT_ID: The unique primary key identifier for each sponsor-student relationship record.
- FUND_ID: References IGF_AW_FUND_MAST_ALL, identifying the specific financial aid fund being sponsored.
- BASE_ID: References IGF_AP_FA_BASE_REC_ALL, linking to the student's base financial aid application record.
- PERSON_ID: References HZ_PARTIES, identifying the sponsoring individual or organization.
- LD_CAL_TYPE and LD_SEQUENCE_NUMBER: Together reference IGS_CA_INST_ALL, defining the load (disbursement) calendar period for the sponsored award.
Common Use Cases and Queries
This table is pivotal for reporting and processes related to sponsored funding. A common use case is generating a report of all students sponsored by a particular organization for a given term. Another critical scenario involves validating disbursements to ensure they align with the sponsor's defined terms and calendar. A typical query might retrieve the sponsor details for a student's specific award:
SELECT rel.spnsr_stdnt_id, rel.base_id, rel.fund_id, party.party_name
FROM igf.igf_sp_stdnt_rel_all rel,
hz_parties party
WHERE rel.person_id = party.party_id
AND rel.base_id = :p_base_id;
Data from this table is also essential for interfaces with external sponsor systems and for compliance auditing, tracing the flow of sponsored funds from the awarding entity to the student's account.
Related Objects
As indicated by its foreign key constraints, IGF_SP_STDNT_REL_ALL is a central hub connected to several key tables. It draws descriptive information from the fund master (IGF_AW_FUND_MAST_ALL), the student's application base record (IGF_AP_FA_BASE_REC_ALL), the Trading Community Architecture's party registry (HZ_PARTIES), and the academic calendar (IGS_CA_INST_ALL). Crucially, it is referenced by the IGF_SP_STD_FC_ALL table, which likely stores sponsor-specific financial calculations or charges, using SPNSR_STDNT_ID as a foreign key. This relationship underscores its role as the parent record for downstream financial processing related to sponsorships.
-
Table: IGF_SP_STDNT_REL_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SP_STDNT_REL_ALL, object_name:IGF_SP_STDNT_REL_ALL, status:VALID, product: IGF - Financial Aid , description: Holds sponsor student relation details. , implementation_dba_data: IGF.IGF_SP_STDNT_REL_ALL ,