Search Results s_adm_fee_status
Overview
The view IGS_AD_FEE_STAT_V is a seeded database object owned by the APPS schema within the Oracle E-Business Suite Student System (IGS) product family. It exists to present admissions fee status information in a denormalized, user-facing format suitable for forms, concurrent programs, reports, and integration interfaces. Rather than exposing raw internal codes, the view resolves descriptive meaning text so that consumers of the data see human-readable status descriptions alongside the underlying stored values. Its status is VALID, confirming that it is a supported, compiled object in both release 12.1.1 and 12.2.2.
The view is intended for reporting and inquiry scenarios where admissions fee status codes must be translated for display. It functions as a read-only presentation layer over the admissions fee status base table and the shared lookup framework, and therefore carries no independent data of its own.
Underlying Base Objects
The view text defines a join across two data sources. The driving table is IGS_AD_FEE_STAT, aliased as DRVTAB, which stores the admissions fee status definitions, their descriptions, default and closed indicators, and standard audit columns. The lookup source is IGS_LOOKUPS_VIEW, aliased as LKUP, which supplies the decoded meaning for the lookup code.
The join is constrained on two predicates: the lookup type must equal 'ADM_FEE_STATUS', and the lookup code must equal the stored S_ADM_FEE_STATUS value. In effect, the view returns one row per admissions fee status record whose lookup code has a matching entry in the ADM_FEE_STATUS lookup type. Records lacking a corresponding lookup code will not appear in the result set, which is a standard behavior of the Oracle lookups view pattern used throughout the IGS schema.
Key Columns
ROW_ID— The physical row identifier of the underlyingIGS_AD_FEE_STATrecord, useful for retrieving the base row in forms or update logic.S_ADM_FEE_STATUS— The stored (internal) admissions fee status code, keyed to theADM_FEE_STATUSlookup type.MEANING— The decoded, translatable description of the lookup code, obtained from the lookups view.ADM_FEE_STATUS— The primary descriptive or alternate status value held on the base table.DESCRIPTION— Free-text description of the fee status.SYSTEM_DEFAULT_IND— Indicates whether the status is the system default for the associated context.CLOSED_IND— Flag on the base record showing whether the status is closed.DSP_CLOSED_IND— The closed indicator sourced from the lookup definition, which may differ from the base table indicator; this supports consistent display behavior across lookups.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— Standard who-columns supporting audit and concurrency.
Common Use Cases and Queries
The view is typically queried to populate lists of values, validate status codes during admission processing, or drive reporting. A basic retrieval demonstrating the join to lookup meanings is:
SELECT s_adm_fee_status,
adm_fee_status,
meaning,
description,
system_default_ind,
closed_ind
FROM apps.igs_ad_fee_stat_v
ORDER BY meaning;
To isolate the system default status:
SELECT *
FROM apps.igs_ad_fee_stat_v
WHERE system_default_ind = 'Y';
To restrict to open statuses, filtering on the lookup-derived indicator:
SELECT *
FROM apps.igs_ad_fee_stat_v
WHERE dsp_closed_ind = 'N';
Because the join relies on the ADM_FEE_STATUS lookup type, any customization or new lookup codes must be configured in the standard lookups maintenance form before records become visible through this view. This dependency should be accounted for during implementation, testing, and data migration activities.
-
View: IGS_AD_FEE_STAT_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_FEE_STAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_FEE_STAT_V, object_name:IGS_AD_FEE_STAT_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_FEE_STAT_V ,
-
VIEW: APPS.IGS_AD_FEE_STAT_V
12.1.1
-
View: IGF_AP_FA_BASE_H
12.2.2
product: IGF - Financial Aid (Obsolete) , description: This view is obsolete now. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_FEE_STAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_FEE_STAT_V, object_name:IGS_AD_FEE_STAT_V, status:VALID,
-
VIEW: APPS.IGF_AP_FA_BASE_H
12.1.1
-
View: IGF_AP_FA_BASE_H
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_FA_BASE_H, object_name:IGF_AP_FA_BASE_H, status:VALID, product: IGF - Financial Aid , description: This view is obsolete now. , implementation_dba_data: APPS.IGF_AP_FA_BASE_H ,
-
APPS.IGS_AD_FEE_STAT_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGF_AP_FA_BASE_H
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_FA_BASE_H, object_name:IGF_AP_FA_BASE_H, status:VALID,
-
TABLE: IGS.IGS_AD_FEE_STAT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_FEE_STAT, object_name:IGS_AD_FEE_STAT, status:VALID,
-
VIEW: APPS.IGF_AP_FA_BASE_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_FA_BASE_H_V, object_name:IGF_AP_FA_BASE_H_V, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_FEE_STAT_PKG
12.1.1
-
View: IGF_AP_FA_BASE_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_FA_BASE_H_V, object_name:IGF_AP_FA_BASE_H_V, status:VALID, product: IGF - Financial Aid , description: This view is obsolete now. , implementation_dba_data: APPS.IGF_AP_FA_BASE_H_V ,
-
View: IGF_AP_FA_BASE_H_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: This view is obsolete now. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AD_GEN_008 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_VAL_AFS
12.1.1
-
TABLE: IGF.IGF_AP_FA_BASE_H_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_FA_BASE_H_ALL, object_name:IGF_AP_FA_BASE_H_ALL, status:VALID,
-
PACKAGE: APPS.IGF_AP_OSS_INTR_DTLS
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_GEN_008
12.1.1
-
APPS.IGS_AD_GEN_008 dependencies on IGS_AD_FEE_STAT
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_FEE_STAT
12.1.1
-
APPS.IGS_AD_FEE_STAT_PKG dependencies on IGS_AD_FEE_STAT
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_APPL
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_OFR_RESP_STAT
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_PS_APPL_INST_ALL
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_PS_APPL_INST
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_APPL_ALL
12.1.1
-
APPS.IGS_AD_FEE_STAT_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGS_AD_FEE_STAT_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
APPS.IGS_AD_FEE_STAT_PKG dependencies on FND_MESSAGE
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
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'. ,