Search Results igf_ap_fa_ant_data
Overview
The table IGF_AP_FA_ANT_DATA is a core data object within the now-obsolete Financial Aid (IGF) module of Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. As indicated by its description, "Financial Aid Base Record Anticipated Data," this table was designed to store anticipated or projected academic and enrollment information for a student's financial aid application. This data is distinct from the student's actual, historical record and is crucial for the packaging process, where aid awards are calculated based on the student's planned course of study, attendance pattern, and academic period for a future loan disbursement. Its role was to serve as a detailed child record linked to the primary financial aid application header, enabling the system to project costs and eligibility for upcoming terms.
Key Information Stored
The table's structure centers on linking anticipated data to a specific financial aid base record and academic period. The primary key is a composite of BASE_ID, LD_CAL_TYPE, and LD_SEQUENCE_NUMBER, establishing a unique anticipated data record for a given application and loan disbursement period. Key columns and their purposes include:
- BASE_ID: Foreign key to IGF_AP_FA_BASE_REC_ALL, linking to the main financial aid application.
- LD_CAL_TYPE & LD_SEQUENCE_NUMBER: Foreign keys to IGS_CA_INST_ALL, identifying the specific academic calendar instance (e.g., "Semester 1, 2024") for which the data is anticipated.
- ATTENDANCE_TYPE & ATTENDANCE_MODE: Foreign keys defining the student's expected attendance type (e.g., Full-time, Half-time) and mode.
- PROGRAM_CD, PROGRAM_TYPE, PROGRAM_LOCATION_CD: Foreign keys detailing the anticipated academic program (IGS_PS_COURSE), its type (IGS_PS_TYPE_ALL), and the campus location (IGS_AD_LOCATION_ALL).
- CLASS_STANDING: Foreign key to IGS_PR_CLASS_STD, indicating the anticipated academic class level (e.g., Freshman, Sophomore).
Common Use Cases and Queries
This table was primarily accessed during the financial aid packaging and disbursement planning workflows. A common use case involved generating a report of all anticipated enrollment details for students packaged for an upcoming academic year to validate data before disbursement. Technical consultants might query this table to troubleshoot packaging issues or to extract data for custom interfaces. A typical SQL pattern would join to the base application and descriptive tables:
SELECT base.person_id, ant.ld_cal_type, ant.ld_sequence_number,
course.course_cd, loc.location_code
FROM igf_ap_fa_ant_data ant,
igf_ap_fa_base_rec_all base,
igs_ps_course course,
igs_ad_location_all loc
WHERE ant.base_id = base.base_id
AND ant.program_cd = course.course_cd
AND ant.program_location_cd = loc.location_cd
AND base.award_year = '2024-2025';
Related Objects
IGF_AP_FA_ANT_DATA is a central hub with numerous foreign key relationships, primarily serving as a detail table to the financial aid base record. Key related objects include:
- IGF_AP_FA_BASE_REC_ALL: The primary parent table for all financial aid application data.
- IGS_CA_INST_ALL: Provides the calendar context for the anticipated loan disbursement period.
- IGS_EN_ATD_TYPE_ALL / IGS_EN_ATD_MODE_ALL: Reference tables for attendance type and mode descriptions.
- IGS_PS_COURSE / IGS_PS_TYPE_ALL: Reference tables for academic program details.
- IGS_AD_LOCATION_ALL: Reference table for location codes.
- IGS_PR_CLASS_STD: Reference table for academic class standing descriptions.
Critical Note: The ETRM metadata explicitly states this table is "Not implemented in this database" and the IGF module is marked "Obsolete." This indicates the table may not exist in a standard installation, and its functionality has likely been superseded in later EBS releases or by different product strategies.
-
Table: IGF_AP_FA_ANT_DATA
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Financial Aid Base Record Anticipated Data , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_AP_FA_ANT_DATA
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_FA_ANT_DATA, object_name:IGF_AP_FA_ANT_DATA, status:VALID, product: IGF - Financial Aid , description: Financial Aid Base Record Anticipated Data , implementation_dba_data: IGF.IGF_AP_FA_ANT_DATA ,
-
APPS.IGF_AW_PACKAGING dependencies on IGF_AP_FA_ANT_DATA
12.1.1
-
APPS.IGF_AP_INST_APP dependencies on IGF_AP_FA_ANT_DATA
12.1.1
-
APPS.IGF_AW_PACKNG_SUBFNS dependencies on IGF_AP_FA_ANT_DATA
12.1.1
-
APPS.IGF_GR_PELL_CALC dependencies on IGF_AP_FA_ANT_DATA
12.1.1
-
APPS.IGF_AP_ISIR_GEN_PKG dependencies on IGF_AP_FA_ANT_DATA
12.1.1
-
APPS.IGF_AW_ANTICIPATED_DATA dependencies on IGF_AP_FA_ANT_DATA
12.1.1
-
APPS.IGF_AW_COA_GEN dependencies on IGF_AP_FA_ANT_DATA
12.1.1
-
APPS.IGF_AP_FA_ANT_DATA_PKG dependencies on IGF_AP_FA_ANT_DATA
12.1.1
-
APPS.IGF_SL_GEN dependencies on IGF_AP_FA_ANT_DATA
12.1.1
-
APPS.IGF_AP_GEN_001 dependencies on IGF_AP_FA_ANT_DATA
12.1.1
-
APPS.IGF_AW_COA_GEN dependencies on IGF_AP_FA_ANT_DATA
12.1.1
-
APPS.IGF_AW_PACKNG_SUBFNS dependencies on IGS_CA_INST_ALL
12.1.1
-
VIEW: APPS.IGF_AP_FA_ANT_DATA_V
12.1.1
-
SYNONYM: APPS.IGF_AP_FA_ANT_DATA
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGF_AP_FA_ANT_DATA, status:VALID,
-
APPS.IGF_AP_FA_ANT_DATA_PKG SQL Statements
12.1.1
-
APPS.IGF_SL_GEN dependencies on IGF_AW_AWD_LD_CAL_V
12.1.1
-
APPS.IGF_GR_PELL_CALC dependencies on IGS_PS_VER
12.1.1
-
APPS.IGF_GR_PELL_CALC dependencies on IGF_AW_AWD_LD_CAL_V
12.1.1
-
TABLE: IGF.IGF_AP_FA_ANT_DATA
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_FA_ANT_DATA, object_name:IGF_AP_FA_ANT_DATA, status:VALID,
-
APPS.IGF_GR_PELL_CALC dependencies on IGF_AW_DP_TEACH_PRDS_V
12.1.1
-
Table: IGS_PR_CLASS_STD
12.2.2
product: IGS - Student System (Obsolete) , description: Maintains the institution defined Class Standing set-up values , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGF_AP_FA_ANT_DATA_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_FA_ANT_DATA_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_FA_ANT_DATA_PKG, status:VALID,
-
APPS.IGF_AW_PACKNG_SUBFNS dependencies on IGF_AW_AWD_PRD_TERM
12.1.1
-
View: IGF_AP_FA_ANT_DATA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_FA_ANT_DATA_V, object_name:IGF_AP_FA_ANT_DATA_V, status:VALID, product: IGF - Financial Aid , description: Financial Aid Base Record Anticipated Data View , implementation_dba_data: APPS.IGF_AP_FA_ANT_DATA_V ,
-
Table: IGS_EN_ATD_TYPE_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_ATD_TYPE_ALL, object_name:IGS_EN_ATD_TYPE_ALL, status:VALID, product: IGS - Student System , description: Describes available university program attendance types , implementation_dba_data: IGS.IGS_EN_ATD_TYPE_ALL ,
-
View: IGF_AP_FA_ANT_DATA_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Financial Aid Base Record Anticipated Data View , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_AW_PACKNG_SUBFNS dependencies on IGS_CA_INST
12.1.1
-
Table: IGS_PR_CLASS_STD
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PR_CLASS_STD, object_name:IGS_PR_CLASS_STD, status:VALID, product: IGS - Student System , description: Maintains the institution defined Class Standing set-up values , implementation_dba_data: IGS.IGS_PR_CLASS_STD ,
-
APPS.IGF_AP_FA_ANT_DATA_PKG dependencies on IGF_AP_FA_ANT_DATA_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_GEN_001, status:VALID,
-
PACKAGE BODY: APPS.IGF_AW_ANTICIPATED_DATA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_ANTICIPATED_DATA, status:VALID,
-
Table: IGS_EN_ATD_MODE_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_ATD_MODE_ALL, object_name:IGS_EN_ATD_MODE_ALL, status:VALID, product: IGS - Student System , description: Describes available university program attendance modes , implementation_dba_data: IGS.IGS_EN_ATD_MODE_ALL ,
-
APPS.IGF_GR_PELL_CALC dependencies on IGF_AW_DP_TEACH_PRDS
12.1.1
-
PACKAGE: APPS.IGF_AW_COA_GEN
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGF_AW_COA_GEN, status:VALID,
-
Table: IGS_EN_ATD_MODE_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes available university program attendance modes , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PS_COURSE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_COURSE, object_name:IGS_PS_COURSE, status:VALID, product: IGS - Student System , description: This entity describes the programs which are offered by the university, covering both award and non-award programs. , implementation_dba_data: IGS.IGS_PS_COURSE ,
-
Table: IGF_AP_FA_BASE_REC_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_FA_BASE_REC_ALL, object_name:IGF_AP_FA_BASE_REC_ALL, status:VALID, product: IGF - Financial Aid , description: Holds the summarized information of all the financial aid processes for a student for an academic year , implementation_dba_data: IGF.IGF_AP_FA_BASE_REC_ALL ,
-
APPS.IGF_AP_INST_APP dependencies on IGS_CA_INST_ALL
12.1.1
-
Table: IGS_PS_COURSE
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the programs which are offered by the university, covering both award and non-award programs. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGF_AP_INST_APP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_INST_APP, status:VALID,
-
Table: IGS_PS_TYPE_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the university set of program types. This set is not limited to the DEET set and values, which are reported to DEET, will be mapped onto DEET equivalent values. , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_AP_FA_BASE_REC_ALL
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Holds the summarized information of all the financial aid processes for a student for an academic year , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGF_AW_PACKNG_SUBFNS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_PACKNG_SUBFNS, status:VALID,
-
Table: IGS_EN_ATD_TYPE_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes available university program attendance types , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGF_AP_ISIR_GEN_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_ISIR_GEN_PKG, status:VALID,
-
Table: IGS_AD_LOCATION_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes available geographic locations at which programs and units may be offered or taught , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PS_TYPE_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_TYPE_ALL, object_name:IGS_PS_TYPE_ALL, status:VALID, product: IGS - Student System , description: This entity describes the university set of program types. This set is not limited to the DEET set and values, which are reported to DEET, will be mapped onto DEET equivalent values. , implementation_dba_data: IGS.IGS_PS_TYPE_ALL ,