Search Results igs_fi_fee_cat
Overview
The IGS_FI_FEE_CAT view is a secured, multi-organization reporting object within the Oracle E-Business Suite Student System (IGS) product family. It exposes fee category definitions — the master reference records used to classify student charges such as tuition, laboratory fees, application fees, and miscellaneous service charges. In the EBS 12.1.1 and 12.2.2 releases the view is owned by the APPS schema and is reported as VALID in the data dictionary.
From a reporting and integration standpoint, the view serves two purposes. First, it provides a flat, join-friendly projection of fee category attributes that can be embedded in concurrent programs, BI Publisher data templates, and Discoverer workbooks without exposing the underlying _ALL table's administrative columns. Second, it enforces row-level operating unit security at query time, so any report built on the view automatically returns only the fee categories belonging to the session's active organization. This makes it the preferred access path for custom extensions that must respect the same Multi-Org boundaries as the seeded Student Financials forms.
Underlying Base Objects
The view is defined over a single base table, IGS_FI_FEE_CAT_ALL. The definition selects the table's ROWID under the alias ROW_ID and then projects the descriptive and auditing columns.
The security predicate compares the ORG_ID of each row against the organization identifier stored in the CLIENT_INFO session context. The expression extracts the first ten bytes of USERENV('CLIENT_INFO'), suppresses the value when the leading character is a space, and converts the result to a number. Both sides of the comparison are wrapped in NVL(..., -99), so rows with a null ORG_ID are matched to sessions that likewise carry no organization context. Because the filter is expressed against the base table rather than through a database policy function, it is evaluated inline for every execution.
Key Columns
- ROW_ID — the physical row identifier of the underlying
IGS_FI_FEE_CAT_ALLrecord; useful for building updatable detail blocks or performing row-level reconciliation. - FEE_CAT — the fee category code, the primary business key used to link fee categories to fee calendars, fee types, and student account entries.
- DESCRIPTION — the user-facing name of the fee category as displayed in inquiry and entry forms.
- CURRENCY_CD — the currency in which amounts for this fee category are denominated. Because the searched term for this object is
currency_cd, this column is the principal target for reporting and validation queries; it determines rounding behavior and is a common join key to currency and exchange-rate reference data. - CLOSED_IND — indicates whether the fee category has been retired and is no longer available for new transactions.
- ORG_ID — the operating unit that owns the record; the column driven by the Multi-Org security predicate.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the standard EBS who-columns retained for audit and change-tracking reports.
Common Use Cases and Queries
Typical scenarios include currency validation prior to fee assessment, listing of active fee categories available to a given operating unit, and audit reporting on records that have been closed or recently modified.
SELECT fee_cat, description, currency_cd, closed_ind FROM apps.igs_fi_fee_cat WHERE closed_ind = 'N' ORDER BY fee_cat;
To identify all fee categories configured in a non-base currency:
SELECT fee_cat, description, currency_cd FROM apps.igs_fi_fee_cat WHERE currency_cd <> 'USD';
To trace recent maintenance activity within the session's operating unit:
SELECT fee_cat, currency_cd, last_updated_by, last_update_date FROM apps.igs_fi_fee_cat WHERE last_update_date >= SYSDATE - 30;
Because organization filtering is applied inside the view, these statements require no additional WHERE clause to restrict data to the active operating unit; callers that must query across organizations should access IGS_FI_FEE_CAT_ALL directly, subject to the appropriate privileges.
-
View: IGS_FI_FEE_CAT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_FEE_CAT, object_name:IGS_FI_FEE_CAT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_FI_FEE_CAT ,
-
View: IGS_FI_FEE_CAT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_EN_STDNT_PS_ATT_V
12.1.1
-
APPS.IGS_FI_VAL_FE SQL Statements
12.1.1
-
APPS.IGS_AD_VAL_FCM SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_VAL_FC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_VAL_FC, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_VAL_FCM
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_VAL_FCM, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_VAL_FCFL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_VAL_FCFL, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_VAL_FE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_VAL_FE, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_VAL_FRTNS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_VAL_FRTNS, status:VALID,
-
APPS.IGS_FI_VAL_FRTNS SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_GEN_005
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_GEN_005, status:VALID,
-
PACKAGE BODY: APPS.IGS_GE_VAL_PARAM
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_GE_VAL_PARAM, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_GEN_001, status:VALID,
-
View: IGS_EN_STDNT_PS_ATT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT_V, object_name:IGS_EN_STDNT_PS_ATT_V, status:VALID, product: IGS - Student System , description: This view describes the detailed information about students attempt for a specific program structure, including the student information, the attendance type information and the course attempt status. , implementation_dba_data: APPS.IGS_EN_STDNT_PS_ATT_V ,
-
PACKAGE BODY: APPS.IGS_FI_GEN_008
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_GEN_008, status:VALID,
-
View: IGS_EN_STDNT_PS_ATT_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view describes the detailed information about students attempt for a specific program structure, including the student information, the attendance type information and the course attempt status. , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.IGS_FI_FEE_CAT_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_FEE_CAT_ALL, status:VALID,
-
PACKAGE: APPS.IGS_FI_GEN_008
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_FI_GEN_008, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_CHARGES_API_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_CHARGES_API_PVT, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_GEN_014
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_GEN_014, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_VAL_SCA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_VAL_SCA, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_IMP_004
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_IMP_004, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_PRC_TAC_OFFER
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_PRC_TAC_OFFER, status:VALID,
-
APPS.IGS_AD_GEN_005 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_GEN_009
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_009, status:VALID,
-
PACKAGE BODY: APPS.IGS_ST_GEN_004
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_ST_GEN_004, status:VALID,
-
VIEW: APPS.IGS_FI_FEE_CAT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_FEE_CAT, object_name:IGS_FI_FEE_CAT, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_VAL_FC
12.1.1
-
APPS.IGS_FI_VAL_FCFL SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_PRC_FEE_ROLLV
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_PRC_FEE_ROLLV, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_GEN_010
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_010, status:VALID,
-
APPS.IGS_GE_VAL_PARAM SQL Statements
12.1.1
-
VIEW: APPS.IGS_EN_STDNT_PS_ATT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT_V, object_name:IGS_EN_STDNT_PS_ATT_V, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_VAL_FCM
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_VAL_FE
12.1.1
-
PACKAGE BODY: APPS.IGS_GE_VAL_PARAM
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_VAL_FRTNS
12.1.1
-
APPS.IGS_EN_GEN_009 dependencies on IGS_FI_FEE_CAT
12.1.1
-
APPS.IGS_FI_VAL_FC dependencies on IGS_FI_FEE_CAT
12.1.1
-
APPS.IGS_AD_GEN_005 dependencies on IGS_FI_FEE_CAT
12.1.1
-
APPS.IGS_AD_GEN_014 dependencies on IGS_FI_FEE_CAT
12.1.1
-
APPS.IGS_AD_VAL_FCM dependencies on IGS_FI_FEE_CAT
12.1.1
-
APPS.IGS_ST_GEN_004 dependencies on IGS_FI_FEE_CAT
12.1.1
-
APPS.IGS_FI_VAL_FE dependencies on IGS_FI_FEE_CAT
12.1.1
-
APPS.IGS_GE_VAL_PARAM dependencies on IGS_FI_FEE_CAT
12.1.1
-
APPS.IGS_FI_GEN_001 dependencies on IGS_FI_FEE_CAT
12.1.1
-
APPS.IGS_FI_CHARGES_API_PVT dependencies on IGS_FI_FEE_CAT
12.1.1
-
APPS.IGS_FI_GEN_008 dependencies on IGS_FI_FEE_CAT
12.1.1
-
APPS.IGS_EN_VAL_SCA dependencies on IGS_FI_FEE_CAT
12.1.1