Search Results igs_fi_wav_std_pgms
Overview
The IGS_FI_WAV_STD_PGMS table is a core data structure within the Oracle E-Business Suite (EBS) Student System (IGS). Its primary function is to manage the assignment of financial waiver programs to individual students. This table acts as the junction point between a student's identity, the specific academic period (fee calendar), and the defined waiver programs available within the system. By maintaining these relationships, it enables the automated application of tuition or fee reductions, discounts, or exemptions to a student's account, which is a critical component of the institution's financial aid and billing operations in EBS.
Key Information Stored
The table's structure centers on linking key identifiers. The WAIVER_STUDENT_ID serves as the unique primary key for each assignment record. The core relationship is defined by a composite foreign key: PERSON_ID identifies the student (linking to HZ_PARTIES), while FEE_CAL_TYPE, FEE_CI_SEQUENCE_NUMBER, and WAIVER_NAME together identify the exact waiver program (linking to IGS_FI_WAIVER_PGMS) applicable for a specific academic calendar instance. This design ensures a student can be associated with multiple waiver programs across different fee periods.
Common Use Cases and Queries
A primary use case is generating reports on student financial aid packages or verifying waiver eligibility during the billing process. Administrators often query this table to list all waivers assigned to a student for a current term or to audit waiver utilization. A typical SQL pattern involves joining to the party and waiver program tables for descriptive information:
- Student Waiver Report:
SELECT p.party_name, wpg.waiver_name, wstd.fee_cal_type, wstd.fee_ci_sequence_number FROM igs_fi_wav_std_pgms wstd JOIN hz_parties p ON wstd.person_id = p.party_id JOIN igs_fi_waiver_pgms wpg ON wstd.fee_cal_type = wpg.fee_cal_type AND wstd.fee_ci_sequence_number = wpg.fee_ci_sequence_number AND wstd.waiver_name = wpg.waiver_name WHERE wstd.person_id = :student_id; - Term-specific Waiver Assignments:
SELECT person_id, waiver_name FROM igs_fi_wav_std_pgms WHERE fee_cal_type = :cal_type AND fee_ci_sequence_number = :seq_num;
Related Objects
The IGS_FI_WAV_STD_PGMS table has defined foreign key relationships with two fundamental EBS tables, ensuring referential integrity:
- IGS_FI_WAIVER_PGMS: This is the master table defining waiver programs. The relationship is via the composite key (
FEE_CAL_TYPE,FEE_CI_SEQUENCE_NUMBER,WAIVER_NAME). A record in IGS_FI_WAV_STD_PGMS cannot exist without a corresponding, valid waiver program definition. - HZ_PARTIES (Trading Community Architecture): This table stores the fundamental identity of the student (person or organization). The
PERSON_IDcolumn in IGS_FI_WAV_STD_PGMS referencesPARTY_IDin HZ_PARTIES, linking the waiver assignment to a specific individual within the EBS universal registry.
-
Table: IGS_FI_WAV_STD_PGMS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores the Waiver Programs assigned to Students , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_WAV_STD_PGMS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_WAV_STD_PGMS, object_name:IGS_FI_WAV_STD_PGMS, status:VALID, product: IGS - Student System , description: Stores the Waiver Programs assigned to Students , implementation_dba_data: IGS.IGS_FI_WAV_STD_PGMS ,
-
APPS.IGS_AS_SS_DOC_REQUEST dependencies on IGS_FI_WAV_STD_PGMS
12.1.1
-
APPS.IGS_FI_WAV_UTILS_002 dependencies on IGS_FI_WAV_STD_PGMS
12.1.1
-
APPS.IGS_FI_PRC_WAIVERS dependencies on IGS_FI_WAV_STD_PGMS
12.1.1
-
APPS.IGS_FI_WAV_STD_PGMS_PKG dependencies on IGS_FI_WAV_STD_PGMS
12.1.1
-
SYNONYM: APPS.IGS_FI_WAV_STD_PGMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_WAV_STD_PGMS, status:VALID,
-
APPS.IGS_FI_WAV_STD_PGMS_PKG SQL Statements
12.1.1
-
TABLE: IGS.IGS_FI_WAV_STD_PGMS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_WAV_STD_PGMS, object_name:IGS_FI_WAV_STD_PGMS, status:VALID,
-
Table: IGS_FI_WAIVER_PGMS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores the Waiver Programs defined in the system and the related information. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_FI_WAV_STD_PGMS_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_WAV_STD_PGMS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_WAV_STD_PGMS_PKG, status:VALID,
-
Table: IGS_FI_WAIVER_PGMS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_WAIVER_PGMS, object_name:IGS_FI_WAIVER_PGMS, status:VALID, product: IGS - Student System , description: Stores the Waiver Programs defined in the system and the related information. , implementation_dba_data: IGS.IGS_FI_WAIVER_PGMS ,
-
APPS.IGS_FI_WAV_STD_PGMS_PKG dependencies on IGS_FI_WAV_STD_PGMS_PKG
12.1.1
-
APPS.IGS_FI_WAV_UTILS_002 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_SS_DOC_REQUEST
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_SS_DOC_REQUEST, status:VALID,
-
APPS.IGS_FI_PRC_WAIVERS SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_PRC_WAIVERS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_PRC_WAIVERS, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_WAV_UTILS_002
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_WAV_UTILS_002, status:VALID,
-
APPS.IGS_FI_WAV_UTILS_002 dependencies on IGS_FI_WAV_PR_PREQS
12.1.1
-
APPS.IGS_FI_WAV_UTILS_002 dependencies on IGS_FI_F_TYP_CA_INST
12.1.1
-
APPS.IGS_FI_PRC_WAIVERS dependencies on IGS_CA_INST
12.1.1
-
APPS.IGS_FI_PRC_WAIVERS dependencies on IGS_FI_WAIVER_PGMS
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.IGS_FI_WAV_UTILS_002
12.1.1
-
Table: HZ_PARTIES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
Table: HZ_PARTIES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_AS_SS_DOC_REQUEST SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_PRC_WAIVERS
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_SS_DOC_REQUEST
12.1.1
-
12.1.1 DBA Data
12.1.1
-
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'. ,