Search Results waiver_name
Overview
The IGS_FI_WAV_STD_PGMS table is a core data structure within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Oracle Student Management (OSM) or Campus Solutions modules under the IGS (iGrants) schema. Its primary function is to store the assignment of financial waiver programs to individual students. This table acts as the system of record for tracking which tuition or fee waiver programs are applicable to a student for a specific academic period, enabling automated financial adjustments and reporting within the student financials ecosystem.
Key Information Stored
The table's columns are designed to uniquely identify a waiver assignment and its context. The primary key, WAIVER_STUDENT_ID, is a system-generated sequence number. The core business keys that define a unique assignment are FEE_CAL_TYPE, FEE_CI_SEQUENCE_NUMBER (together identifying the academic calendar instance), WAIVER_NAME (the specific program), and PERSON_ID (the student). A critical column for operational logic is ASSIGNMENT_STATUS_CODE, which holds the active status of the assignment, typically 'Active' or 'Inactive', controlling whether the waiver is applied in financial calculations. The table also includes standard Oracle EBS audit columns (CREATED_BY, CREATION_DATE, etc.) and an OBJECT_VERSION_NUMBER for optimistic locking.
Common Use Cases and Queries
This table is central to processes involving student financial aid and billing. Common use cases include generating student bills with applied waivers, auditing waiver utilization, and managing the lifecycle of a waiver assignment (activating or inactivating it). A frequent reporting need is to list all active waivers for a student or a cohort within a term. Based on the provided metadata, a typical query pattern would be:
- To find active waiver assignments for a specific student and fee calendar:
SELECT WAIVER_NAME, ASSIGNMENT_STATUS_CODE FROM IGS.IGS_FI_WAV_STD_PGMS WHERE PERSON_ID = :stu_id AND FEE_CAL_TYPE = :cal_type AND FEE_CI_SEQUENCE_NUMBER = :seq_num AND ASSIGNMENT_STATUS_CODE = 'Active'; - To audit all waiver assignments, including who created them:
SELECT p.WAIVER_NAME, p.PERSON_ID, p.ASSIGNMENT_STATUS_CODE, p.CREATION_DATE, u.USER_NAME FROM IGS.IGS_FI_WAV_STD_PGMS p, FND_USER u WHERE p.CREATED_BY = u.USER_ID;
Related Objects
According to the provided dependency information, the IGS_FI_WAV_STD_PGMS table does not have foreign key dependencies on other objects listed in this excerpt. However, it is referenced by the APPS synonym IGS_FI_WAV_STD_PGMS, which is the standard access point for all application code and reports. In a full implementation, this table would be related to core person (IGS_PE_PERSON) and calendar (IGS_CA_INST) tables via the PERSON_ID, FEE_CAL_TYPE, and FEE_CI_SEQUENCE_NUMBER columns, and likely to a master waiver definition table via the WAIVER_NAME column, though these specific relationships are not detailed in the provided metadata.
-
APPS.IGS_FI_WAV_DTLS_WF dependencies on WF_EVENT
12.1.1
-
APPS.IGS_FI_GEN_007 dependencies on IGS_FI_INV_INT_PKG
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,
-
APPS.IGS_FI_PRC_WAIVERS dependencies on IGS_FI_GEN_GL
12.1.1
-
View: IGS_FI_CREDITS
12.2.2
product: IGS - Student System (Obsolete) , description: This view is a multi-org filter flat view based on table IGS_FI_CREDITS_ALL. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_CREDITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CREDITS, object_name:IGS_FI_CREDITS, status:VALID, product: IGS - Student System , description: This view is a multi-org filter flat view based on table IGS_FI_CREDITS_ALL. , implementation_dba_data: APPS.IGS_FI_CREDITS ,
-
APPS.IGS_FI_LOAD_EXT_CHG dependencies on IGS_FI_PRC_ACCT_PKG
12.1.1
-
APPS.IGS_FI_PRC_WAIVERS SQL Statements
12.1.1
-
APPS.IGS_FI_GEN_007 dependencies on IGS_FI_CREDITS_PKG
12.1.1
-
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 ,
-
View: IGS_FI_INV_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_INV_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INV_INT, object_name:IGS_FI_INV_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_FI_INV_INT ,
-
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.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,
-
VIEW: APPS.IGS_FI_CREDITS
12.1.1
-
VIEW: APPS.IGS_FI_INV_INT
12.1.1
-
APPS.IGS_FI_WAIVER_PGMS_PKG dependencies on IGS_FI_WAIVER_PGMS
12.1.1
-
APPS.IGS_FI_WAV_STD_PGMS_PKG SQL Statements
12.1.1
-
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_PRC_WAIVERS dependencies on IGS_FI_WAV_STD_PGMS
12.1.1
-
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 ,
-
APPS.IGS_FI_LOAD_EXT_CHG dependencies on IGS_FI_CHARGES_API_PVT
12.1.1
-
APPS.IGS_FI_PRC_WAIVERS dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_FI_LOAD_EXT_CHG dependencies on HZ_PARTIES
12.1.1
-
APPS.IGS_FI_WAV_STD_PGMS_PKG dependencies on IGS_FI_WAV_STD_PGMS
12.1.1
-
APPS.IGS_FI_GEN_007 dependencies on IGS_FI_INV_INT
12.1.1
-
View: IGSBV_PARTY_CHARGES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PARTY_CHARGES, object_name:IGSBV_PARTY_CHARGES, status:VALID, product: IGS - Student System , description: Contains details of charges for a person , implementation_dba_data: APPS.IGSBV_PARTY_CHARGES ,
-
View: IGSBV_PARTY_CHARGES
12.2.2
product: IGS - Student System (Obsolete) , description: Contains details of charges for a person , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_FI_WAIVER_PGMS_PKG SQL Statements
12.1.1
-
View: IGSBV_PARTY_CREDITS
12.2.2
product: IGS - Student System (Obsolete) , description: Stores all Party Credits in Student Finance , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_PARTY_CREDITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PARTY_CREDITS, object_name:IGSBV_PARTY_CREDITS, status:VALID, product: IGS - Student System , description: Stores all Party Credits in Student Finance , implementation_dba_data: APPS.IGSBV_PARTY_CREDITS ,
-
VIEW: APPS.IGS_FI_INV_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INV_INT_V, object_name:IGS_FI_INV_INT_V, status:VALID,
-
VIEW: APPS.IGSBV_PARTY_CHARGES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PARTY_CHARGES, object_name:IGSBV_PARTY_CHARGES, status:VALID,
-
APPS.IGS_FI_GEN_007 dependencies on IGS_FI_CREDITS
12.1.1
-
View: IGS_FI_INV_INT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INV_INT_V, object_name:IGS_FI_INV_INT_V, status:VALID, product: IGS - Student System , description: This view is created by joining view IGS_FI_INV_INT and IGS_LOOKUPS_VIEW to resolve meaning of lookup codes. , implementation_dba_data: APPS.IGS_FI_INV_INT_V ,
-
View: IGS_FI_INV_INT_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is created by joining view IGS_FI_INV_INT and IGS_LOOKUPS_VIEW to resolve meaning of lookup codes. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_PARTY_CHARGES
12.2.2
product: IGS - Student System (Obsolete) , description: Contains details of charges for a person , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_FI_PRC_WAIVERS dependencies on IGS_FI_FEE_TYPE
12.1.1
-
VIEW: APPS.IGS_FI_CREDITS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CREDITS_V, object_name:IGS_FI_CREDITS_V, status:VALID,
-
APPS.IGS_FI_WAV_UTILS_002 SQL Statements
12.1.1
-
PACKAGE: APPS.IGS_FI_PRC_ACCT_PKG
12.1.1
-
APPS.IGS_FI_CHARGES_API_PVT dependencies on IGS_FI_CREDIT_PVT
12.1.1
-
View: IGSFV_PARTY_CHARGES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PARTY_CHARGES, object_name:IGSFV_PARTY_CHARGES, status:VALID, product: IGS - Student System , description: Contains details of charges for a person , implementation_dba_data: APPS.IGSFV_PARTY_CHARGES ,
-
APPS.IGS_FI_PRC_WAIVERS dependencies on IGS_FI_CONTROL
12.1.1
-
VIEW: APPS.IGSBV_PARTY_CREDITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PARTY_CREDITS, object_name:IGSBV_PARTY_CREDITS, status:VALID,
-
VIEW: APPS.IGSFV_PARTY_CHARGES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PARTY_CHARGES, object_name:IGSFV_PARTY_CHARGES, status:VALID,
-
APPS.IGS_FI_PRC_WAIVERS dependencies on IGS_FI_WAIVER_PGMS
12.1.1
-
VIEW: APPS.IGS_FI_CREDITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CREDITS, object_name:IGS_FI_CREDITS, status:VALID,
-
VIEW: APPS.IGS_FI_INV_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_INV_INT, object_name:IGS_FI_INV_INT, status:VALID,
-
APPS.IGS_FI_PRC_WAIVERS dependencies on FND_FILE
12.1.1