Search Results igs_fi_fee_str_stat
Overview
The IGS_FI_FEE_STR_STAT table is a core reference table within the Oracle E-Business Suite Student System (IGS). It defines the valid statuses that can be applied to special contract-based fee assessment structures. These statuses govern the lifecycle and applicability of fee structures, which are used to define customized fee rates for specific contracts or agreements, such as those with corporate clients or sponsored students. The table's primary role is to maintain data integrity by providing a controlled list of status codes (e.g., ACTIVE, INACTIVE, PENDING) that other transactional tables in the fees module must reference, ensuring consistent and valid fee structure state management across the application.
Key Information Stored
The table's structure is centered on a status code, which is its primary key. While the provided metadata does not list all columns, the core column is FEE_STRUCTURE_STATUS. This column stores the short code representing the status. Typically, such reference tables also include descriptive columns like DESCRIPTION for the status name, and system columns for tracking, such as CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, and LAST_UPDATED_BY. The data is static and maintained by the application, defining the business rules for which fee structure statuses are permissible within the system.
Common Use Cases and Queries
This table is primarily used for validation, reporting, and setup. Administrators may query it to view all available statuses when configuring the system or troubleshooting data. Common SQL patterns include joining this table to transactional fee tables to translate status codes into meaningful descriptions for reports. For instance, a report listing all active contract fee structures would join on the FEE_STRUCTURE_STATUS column.
- Sample Query for Status Lookup:
SELECT fee_structure_status, description FROM igs.igs_fi_fee_str_stat ORDER BY 1; - Use in Validation: Application logic will validate that any status assigned to a fee structure in related tables (IGS_FI_F_CAT_CA_INST, etc.) exists in this table, enforcing referential integrity.
- Reporting: Critical for generating fee liability reports that need to filter or group records based on the fee structure's status description rather than its opaque code.
Related Objects
The IGS_FI_FEE_STR_STAT table is referenced as a foreign key by several important transactional tables in the Fees module, as documented in the ETRM metadata. These relationships are fundamental to the data model.
- IGS_FI_F_CAT_CA_INST: References IGS_FI_FEE_STR_STAT via the column
FEE_CAT_CI_STATUS. This links a fee category charge instance to a valid fee structure status. - IGS_FI_F_CAT_FEE_LBL_ALL: References IGS_FI_FEE_STR_STAT via the column
FEE_LIABILITY_STATUS. This links a fee category liability definition to a status. - IGS_FI_F_TYP_CA_INST_ALL: References IGS_FI_FEE_STR_STAT via the column
FEE_TYPE_CI_STATUS. This links a fee type charge instance to a valid fee structure status.
In all cases, the join condition is on the primary key column IGS_FI_FEE_STR_STAT.FEE_STRUCTURE_STATUS to the respective foreign key column in the related table. This design centralizes status control and ensures data consistency.
-
Table: IGS_FI_FEE_STR_STAT
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes special contract based fee assessment rates , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_F_CAT_CA_INST_AS_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view represents the columns of the fee_cat_cal_instance table as well as including columns representing the start and end dates from the cal_instance table. It returns only those records which have a system status of 'ACTIVE'. It is , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_F_CAT_CA_INST
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the periods of fee assessment - fee calendar instances- applicable to a fee category. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_F_CAT_FEE_LBL_ALL_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_F_CAT_FEE_LBL_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the fee types applicable to a fee category period fee category calendar instance. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_F_TYP_CA_INST_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the periods of fee assessment fee calendar instances applicable to a fee type. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_F_TYP_CA_INST_LKP_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,