Search Results secondary_efc
Overview
APPS.IGF_AP_ISIR_INFO_V is a supplementary Oracle E-Business Suite view owned by the APPS schema, registered under FND Design Data as IGF.IGF_AP_ISIR_INFO_V. It belongs to the Oracle Financial Aid (IGF) product family, specifically the ISIR (Institutional Student Information Record) processing area used by higher-education institutions running Oracle Student System and Financial Aid modules. The view presents ISIR transaction information — including the Expected Family Contribution (EFC) figures reported by the federal processor — in a flattened, form-friendly structure that simplifies coding of Oracle Forms-based maintenance screens.
Oracle classifies this as a supplementary view intended to simplify forms coding. The ETRM documentation carries an explicit warning that Oracle does not recommend querying or altering data through this view, because its definition may change dramatically in subsequent minor or major releases. Despite that caveat, the view is widely used as a read-only reporting and integration surface for ISIR and EFC data, because it joins the base record to its matched ISIR transaction without requiring the caller to reconstruct the join logic.
Underlying Base Objects
The view resolves to two documented base objects in the APPS schema:
- IGF_AP_FA_BASE_REC — the financial aid base record table holding the applicant-level record identity (BASE_ID) and associated linkage data.
- IGF_AP_ISIR_MATCHED — the matched ISIR transaction table holding the transaction-level details received from the federal ISIR processor and matched to the base record.
The view joins these objects to present ISIR transaction attributes against the underlying applicant base record. The ETRM metadata notes that IGF_AP_ISIR_INFO_V is not referenced by any other database object, meaning it is a terminal, leaf-level object in the dependency tree — nothing else in the schema depends on it.
Key Columns
- ISIR_ID (NUMBER 15) — surrogate identifier for the ISIR record surfaced by the view.
- BASE_ID (NUMBER 15) — foreign key to the financial aid base record; the primary linkage between applicant and ISIR transaction.
- SSN_NAME_CHANGE, ORIGINAL_SSN, ORIG_NAME_ID — flags and original values for Social Security Number and name changes reported on the ISIR.
- TRANSACTION_NUM, TRANSACTION_ID — the federal ISIR transaction sequence number and transaction identifier.
- VERIFICATION_FLAG — indicates whether the ISIR was selected for verification.
- ISIR_CORR_STATUS (VARCHAR2 30) — correction status of the ISIR record.
- PRIMARY_EFC (NUMBER 12) and SECONDARY_EFC (NUMBER 12) — the primary and secondary Expected Family Contribution values reported by the federal processor. SECONDARY_EFC is the column users most frequently search for; it is populated when a secondary EFC is computed for the applicant, typically for independent students or in specific dependency/need scenarios.
- PAYMENT_ISIR — flag relating to payment ISIR handling.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard WHO audit columns.
- SYSTEM_RECORD_TYPE (VARCHAR2 30) — classifies the originating record type.
Common Use Cases and Queries
Typical uses include reconciliation of ISIR transaction data with federal output, verification review, and reporting on EFC values for need analysis. Because the view flattens the base-to-transaction join, queries are straightforward.
Retrieve ISIR transactions with both EFC figures:
SELECT BASE_ID, TRANSACTION_NUM, PRIMARY_EFC, SECONDARY_EFC, ISIR_CORR_STATUS FROM APPS.IGF_AP_ISIR_INFO_V WHERE SECONDARY_EFC IS NOT NULL;
Locate records flagged for verification:
SELECT BASE_ID, TRANSACTION_NUM, VERIFICATION_FLAG, PRIMARY_EFC FROM APPS.IGF_AP_ISIR_INFO_V WHERE VERIFICATION_FLAG = 'Y';
Join to the base record for applicant-level reporting:
SELECT v.BASE_ID, v.TRANSACTION_ID, v.PRIMARY_EFC, v.SECONDARY_EFC FROM APPS.IGF_AP_ISIR_INFO_V v, APPS.IGF_AP_FA_BASE_REC b WHERE v.BASE_ID = b.BASE_ID;
Given the documented caution, consumers should treat the view as read-only and validate its definition against the current patch level whenever upgrading between EBS 12.1.1 and 12.2.2.
-
VIEW: APPS.IGF_AP_ISIR_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_INFO_V, object_name:IGF_AP_ISIR_INFO_V, status:VALID,
-
VIEW: APPS.IGFBV_FEDERAL_NEED_DETAILS
12.1.1
-
VIEW: APPS.IGFFV_FEDERAL_NEED_DETAILS
12.1.1
-
View: IGF_AP_ISIR_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_INFO_V, object_name:IGF_AP_ISIR_INFO_V, status:VALID, product: IGF - Financial Aid , description: Obsolete , implementation_dba_data: APPS.IGF_AP_ISIR_INFO_V ,
-
View: IGF_AP_ISIR_INFO_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
View: IGFBV_PELL_ORIGINATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_PELL_ORIGINATIONS, object_name:IGFBV_PELL_ORIGINATIONS, status:VALID, product: IGF - Financial Aid , description: Base View for the Entity that Stores all the RFMS data that needs to be sent to the COD system. , implementation_dba_data: APPS.IGFBV_PELL_ORIGINATIONS ,
-
View: IGFFV_FEDERAL_NEED_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_FEDERAL_NEED_DETAILS, object_name:IGFFV_FEDERAL_NEED_DETAILS, status:VALID, product: IGF - Financial Aid , description: Contains the details about the student for federal needs. , implementation_dba_data: APPS.IGFFV_FEDERAL_NEED_DETAILS ,
-
View: IGFFV_FEDERAL_NEED_DETAILS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Contains the details about the student for federal needs. , implementation_dba_data: Not implemented in this database ,
-
View: IGFBV_FEDERAL_NEED_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_FEDERAL_NEED_DETAILS, object_name:IGFBV_FEDERAL_NEED_DETAILS, status:VALID, product: IGF - Financial Aid , description: Contains the details about the student for federal needs. , implementation_dba_data: APPS.IGFBV_FEDERAL_NEED_DETAILS ,
-
View: IGFBV_PELL_ORIGINATIONS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base View for the Entity that Stores all the RFMS data that needs to be sent to the COD system. , implementation_dba_data: Not implemented in this database ,
-
View: IGFBV_FEDERAL_NEED_DETAILS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Contains the details about the student for federal needs. , implementation_dba_data: Not implemented in this database ,
-
View: IGFFV_PELL_ORIGINATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_PELL_ORIGINATIONS, object_name:IGFFV_PELL_ORIGINATIONS, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that Stores all the RFMS data that needs to be sent to the COD system. , implementation_dba_data: APPS.IGFFV_PELL_ORIGINATIONS ,
-
View: IGF_GR_RFMS
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGFFV_PELL_ORIGINATIONS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that Stores all the RFMS data that needs to be sent to the COD system. , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_RFMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS, object_name:IGF_GR_RFMS, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_GR_RFMS ,
-
VIEW: APPS.IGF_AP_ISIR_CORR_REC_V
12.1.1
-
View: IGF_AP_ISIR_CORR_REC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_CORR_REC_V, object_name:IGF_AP_ISIR_CORR_REC_V, status:VALID, product: IGF - Financial Aid , description: Retrieves the list of all the ISIR matched records with System record type as CORRECTION , implementation_dba_data: APPS.IGF_AP_ISIR_CORR_REC_V ,
-
VIEW: APPS.IGF_AP_ISIR_MATCHED_V
12.1.1
-
View: IGF_AP_ISIR_MATCHED_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AP_ISIR_CORR_REC_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Retrieves the list of all the ISIR matched records with System record type as CORRECTION , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_RFMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS_V, object_name:IGF_GR_RFMS_V, status:VALID, product: IGF - Financial Aid , description: Shows RFMS data which needs to be sent to the RFMS system , implementation_dba_data: APPS.IGF_GR_RFMS_V ,
-
View: IGF_AP_ISIR_MATCHED_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_MATCHED_V, object_name:IGF_AP_ISIR_MATCHED_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AP_ISIR_MATCHED_V ,
-
View: IGF_GR_RFMS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Shows RFMS data which needs to be sent to the RFMS system , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGFBV_PELL_ORIGINATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_PELL_ORIGINATIONS, object_name:IGFBV_PELL_ORIGINATIONS, status:VALID,
-
VIEW: APPS.IGFFV_PELL_ORIGINATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_PELL_ORIGINATIONS, object_name:IGFFV_PELL_ORIGINATIONS, status:VALID,
-
TABLE: IGF.IGF_GR_RFMS_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_RFMS_ALL, object_name:IGF_GR_RFMS_ALL, status:VALID,
-
VIEW: APPS.IGF_GR_RFMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS, object_name:IGF_GR_RFMS, status:VALID,
-
View: IGF_AP_ISIR_INTRFACE
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AP_ISIR_INTRFACE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_INTRFACE, object_name:IGF_AP_ISIR_INTRFACE, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AP_ISIR_INTRFACE ,
-
VIEW: APPS.IGF_GR_RFMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS_V, object_name:IGF_GR_RFMS_V, status:VALID,
-
VIEW: APPS.IGF_AP_ISIR_INTRFACE
12.1.1
-
APPS.IGF_GR_RFMS_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGF_AP_ISIR_CORR_REC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_CORR_REC_V, object_name:IGF_AP_ISIR_CORR_REC_V, status:VALID,
-
APPS.IGF_AP_GEN SQL Statements
12.1.1
-
View: IGFBV_ISIRS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_ISIRS, object_name:IGFBV_ISIRS, status:VALID, product: IGF - Financial Aid , description: Base View for the Entity that holds the complete ISIR record of the students , implementation_dba_data: APPS.IGFBV_ISIRS ,
-
View: IGFBV_ISIRS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base View for the Entity that holds the complete ISIR record of the students , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AP_ISIR_MATCHED
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_MATCHED, object_name:IGF_AP_ISIR_MATCHED, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AP_ISIR_MATCHED ,
-
View: IGFFV_ISIRS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds the complete ISIR record of the students , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AP_ISIR_MATCHED
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_AP_ISIR_MATCHED_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_MATCHED_V, object_name:IGF_AP_ISIR_MATCHED_V, status:VALID,
-
View: IGFFV_ISIRS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_ISIRS, object_name:IGFFV_ISIRS, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds the complete ISIR record of the students , implementation_dba_data: APPS.IGFFV_ISIRS ,
-
VIEW: APPS.IGF_AP_ISIR_INTRFACE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_INTRFACE, object_name:IGF_AP_ISIR_INTRFACE, status:VALID,
-
APPS.IGF_AP_MK_ISIR_ACT_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGF_AP_ISIR_MATCHED
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_MATCHED, object_name:IGF_AP_ISIR_MATCHED, status:VALID,
-
VIEW: APPS.IGFBV_ISIRS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_ISIRS, object_name:IGFBV_ISIRS, status:VALID,
-
PACKAGE BODY: APPS.IGF_GR_RFMS_PKG
12.1.1
-
VIEW: APPS.IGFFV_ISIRS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_ISIRS, object_name:IGFFV_ISIRS, status:VALID,
-
TABLE: IGF.IGF_AP_ISIR_MATCHED_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_ISIR_MATCHED_ALL, object_name:IGF_AP_ISIR_MATCHED_ALL, status:VALID,
-
PACKAGE BODY: APPS.IGF_AP_MK_ISIR_ACT_PKG
12.1.1
-
TABLE: IGF.IGF_AP_ISIR_INTRFACE_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_ISIR_INTRFACE_ALL, object_name:IGF_AP_ISIR_INTRFACE_ALL, status:VALID,