Search Results igf_aw_fisap_rep
Overview
IGF_AW_FISAP_REP is a Financial Aid table in the Oracle EBS IGF (Financial Aid) product family. It stores student-level records with FISAP-related attributes corresponding to Sections Part II's F and Part VI's A of the FISAP (Fiscal Operations Report and Application to Participate) submission. FISAP reporting is mandated for institutions participating in the Federal Perkins Loan, Federal Work-Study, and Federal Supplemental Educational Opportunity Grant programs, and this table serves as the staging and reporting vehicle for the data required to populate those sections.
The object is documented under the IGF module, which carries an "Obsolete" designation in current Oracle EBS documentation. Notes indicate it is not implemented in the reference database used by ETRM. Consequently, the table should be treated as a legacy or deprecated object within EBS 12.1.1 and 12.2.2, relevant primarily to historical data models and migrations rather than to active production configurations.
Based on the mined foreign-key structure, the heuristic Data Vault classification for this table is satellite-leaning. This reflects that the table hangs off parent keys (batch and ISIR references) and carries descriptive attributes, rather than acting as an independent business hub or a pure many-to-many link. This classification is offered as a modeling suggestion, not as a normative EBS designation.
Key Information Stored
The primary key is IGF_AW_FISAP_REP_PK, defined on the surrogate column FISAP_DTLS_ID, which uniquely identifies each FISAP detail record. Business-key candidates center on the relationships to parent records rather than a natural student identifier; the foreign keys BATCH_ID and ISIR_ID provide the contextual linkage to the batch run and to the matched ISIR data respectively.
Among the most significant columns:
- FISAP_DTLS_ID — surrogate primary key for each FISAP reporting detail row.
- BATCH_ID — foreign key to IGF_AW_FISAP_BATCH, grouping rows by FISAP processing batch.
- ISIR_ID — foreign key to IGF_AP_ISIR_MATCHED_ALL, tying the record to a specific matched ISIR.
- DEPENDENCY_STATUS — dependency classification of the student for need analysis.
- CAREER_LEVEL — academic career level of the student.
- ENROLLMENT_STATUS — enrollment classification used in FISAP aggregation.
- AUTO_ZERO_EFC_FLAG — indicates an automatically calculated zero Expected Family Contribution.
- FISAP_INCOME_AMT — income amount relevant to FISAP reporting.
- PERKINS_DISB_AMT — Perkins Loan disbursement amount.
- FWS_DISB_AMT — Federal Work-Study disbursement amount.
- FSEOG_DISB_AMT — FSEOG disbursement amount.
- PART_II_SECTION_F_FLAG — flag identifying records applicable to Part II Section F.
- PART_VI_SECTION_A_FLAG — flag identifying records applicable to Part VI Section A.
- CREATED_BY / CREATION_DATE / LAST_UPDATED_BY / LAST_UPDATE_DATE — standard WHO audit columns.
- PROGRAM_APPLICATION_ID / PROGRAM_ID / REQUEST_ID — concurrent program and request context columns.
Common Use Cases and Queries
Typical use cases involve extracting student populations for FISAP Sections Part II F and Part VI A, reconciling disbursement totals by program, and auditing records flagged for each section. Reporting queries commonly join to the batch parent to group and filter by processing run:
- Retrieve all detail rows for a given batch:
SELECT * FROM IGF_AW_FISAP_REP WHERE BATCH_ID = :p_batch_id; - Aggregate disbursements by section flag:
SELECT PART_II_SECTION_F_FLAG, SUM(PERKINS_DISB_AMT), SUM(FWS_DISB_AMT), SUM(FSEOG_DISB_AMT) FROM IGF_AW_FISAP_REP GROUP BY PART_II_SECTION_F_FLAG; - Join to the matched ISIR parent for student-level context:
SELECT r.FISAP_DTLS_ID, i.ISIR_ID FROM IGF_AW_FISAP_REP r, IGF_AP_ISIR_MATCHED_ALL i WHERE r.ISIR_ID = i.ISIR_ID; - Identify auto-zero EFC records:
SELECT * FROM IGF_AW_FISAP_REP WHERE AUTO_ZERO_EFC_FLAG = 'Y';
Related Objects
- IGF_AW_FISAP_BATCH — parent batch table; joined via IGF_AW_FISAP_REP.BATCH_ID = IGF_AW_FISAP_BATCH.BATCH_ID.
- IGF_AP_ISIR_MATCHED_ALL — matched ISIR records; joined via IGF_AW_FISAP_REP.ISIR_ID.
- Other IGF Financial Aid reporting and configuration tables that consume batch and ISIR data, including any FISAP summary or extract objects tied to the same batch process.
- Concurrent program and request metadata referenced by PROGRAM_APPLICATION_ID and REQUEST_ID for process traceability.
Because the object is documented as obsolete and not implemented in the reference database, references to it should be validated against the target environment before reliance in new development or migration efforts.
-
Table: IGF_AW_FISAP_REP
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Table storing all students with FISAP related attributes for Sections Part II's F and Part VI' A , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_AW_FISAP_REP
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_FISAP_REP, object_name:IGF_AW_FISAP_REP, status:VALID, product: IGF - Financial Aid , description: Table storing all students with FISAP related attributes for Sections Part II's F and Part VI' A , implementation_dba_data: IGF.IGF_AW_FISAP_REP ,
-
SYNONYM: APPS.IGF_AW_FISAP_REP
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGF_AW_FISAP_REP, status:VALID,
-
APPS.IGF_AW_FISAP_REP_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGF_AW_FISAP_REP_V
12.1.1
-
APPS.IGF_AW_FISAP_PKG SQL Statements
12.1.1
-
Table: IGF_AW_FISAP_BATCH
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Table storing the FISAP batch details , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGF.IGF_AW_FISAP_REP
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_FISAP_REP, object_name:IGF_AW_FISAP_REP, status:VALID,
-
Table: IGF_AW_FISAP_BATCH
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_FISAP_BATCH, object_name:IGF_AW_FISAP_BATCH, status:VALID, product: IGF - Financial Aid , description: Table storing the FISAP batch details , implementation_dba_data: IGF.IGF_AW_FISAP_BATCH ,
-
PACKAGE BODY: APPS.IGF_AW_FISAP_REP_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_AW_FISAP_REP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_FISAP_REP_PKG, status:VALID,
-
View: IGF_AW_FISAP_REP_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Displays the FISAP reporting data populated by the FISAP report , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AW_FISAP_REP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FISAP_REP_V, object_name:IGF_AW_FISAP_REP_V, status:VALID, product: IGF - Financial Aid , description: Displays the FISAP reporting data populated by the FISAP report , implementation_dba_data: APPS.IGF_AW_FISAP_REP_V ,
-
PACKAGE BODY: APPS.IGF_AW_FISAP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AW_FISAP_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.IGF_AW_FISAP_PKG
12.1.1
-
VIEW: APPS.IGF_AW_FISAP_REP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_FISAP_REP_V, object_name:IGF_AW_FISAP_REP_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
APPS.IGF_AW_FISAP_REP_PKG dependencies on IGF_AW_FISAP_REP
12.1.1
-
APPS.IGF_AW_FISAP_PKG dependencies on IGF_AW_FISAP_REP
12.1.1
-
APPS.IGF_AW_FISAP_PKG dependencies on IGF_AW_FISAP_RANGES
12.1.1
-
APPS.IGF_AW_FISAP_PKG dependencies on IGF_AP_BATCH_AW_MAP_ALL
12.1.1
-
APPS.IGF_AW_FISAP_PKG dependencies on IGF_AW_FISAP_REP_PKG
12.1.1
-
APPS.IGF_AW_FISAP_PKG dependencies on IGF_AW_GEN
12.1.1
-
APPS.IGF_AW_FISAP_REP_PKG dependencies on IGF_AW_FISAP_REP_PKG
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,