Search Results original_ssn
Overview
IGF_AP_ISIR_SAR_V is a reporting view in the Oracle E-Business Suite Financial Aid module (IGF), owned by the APPS schema. It exposes records that originate from the ISIR (Institutional Student Information Record) and SAR (Student Aid Report) processing performed by the U.S. Department of Education's Central Processing System. In EBS 12.1.1 and 12.2.2, this view serves as a consolidated, read-oriented projection over the raw ISIR transaction data captured by Oracle's financial aid data-loading programs, presenting the applicant's demographic, dependency-status, household, income, and need-analysis attributes in a single relational shape.
The view is predominantly consumed for institutional need analysis, verification workflows, packaging eligibility checks, and downstream reporting to federal or state agencies. The user search term "paid_efc" refers to the Paid_EFC column, which is the Expected Family Contribution calculated by the federal processor and returned on the ISIR. It is one of the most frequently referenced values in disbursement, award, and verification queries.
Underlying Base Objects
The ETRM metadata documents the view text as a single SELECT but lists no referenced base objects, and the view owner is not populated in the metadata record. In practice the view is defined in the APPS schema over the IGF ISIR staging and transaction tables — the ISIR header, transaction, applicant demographic, and need-analysis detail tables maintained by the Financial Aid ISIR load concurrent programs. Because the metadata does not enumerate the base tables, the view should be treated as an abstraction layer: the columns it exposes correspond to the flattened federal ISIR record layout.
The ISIR_ID and BASE_ID columns act as the primary keys linking a specific ISIR transaction to its parent student/applicant record, with transaction_num and TRAN_SOURCE_SITE_CODE identifying the federal source and transaction sequence.
Key Columns
- Paid_EFC – The federal Expected Family Contribution, used for need-based award calculations and to determine eligibility for Pell and campus-based aid.
- ISIR_ID / BASE_ID / transaction_num – Identifiers for the ISIR transaction and its associated student record.
- original_ssn / CURRENT_SSN – Applicant Social Security Number as originally submitted and as corrected.
- S_MARITAL_STATUS, S_MARRIED, S_HAVE_CHILDREN, S_VETERAN – Student dependency and status indicators.
- S_ADJUSTED_GROSS_INCOME, S_FED_TAXES_PAID, S_INCOME_FROM_WORK, S_INVESTMENT_NETWORTH, S_CASH_SAVINGS – Student income and asset fields.
- P_* columns (P_ADJUSTED_GROSS_INCOME, P_TAXES_PAID, P_NUM_FAMILY_MEMBER, P_NUM_IN_COLLEGE) – Parent contribution, income, and household data.
- FATHER_SSN / MOTHER_SSN / F_INCOME_WORK / M_INCOME_WORK – Parental identification and earnings.
- FIRST_COLLEGE … SIXTH_COLLEGE and FIRST_HOUSE_PLAN … SIXTH_HOUSE_PLAN – College choice and housing plan selections.
- DATE_APP_COMPLETED, SIGNED_BY, PREPARER_SSN, PREPARER_SIGN – Completion and signature information.
Common Use Cases and Queries
Typical scenarios include retrieving the federal EFC for packaging, comparing ISIR-reported data against institutional records for verification, and extracting applicant demographics for reporting.
Sample query to retrieve the paid EFC for a student's latest ISIR transaction:
SELECT isir_id, base_id, transaction_num, paid_efc, ssn, date_app_completed FROM apps.igf_ap_isir_sar_v WHERE base_id = :p_base_id ORDER BY transaction_num DESC;
Sample query to identify students whose federal EFC qualifies them for need-based aid:
SELECT base_id, transaction_num, paid_efc, s_adjusted_gross_income
FROM apps.igf_ap_isir_sar_v
WHERE paid_efc <= :p_efc_threshold
AND transaction_num = (SELECT MAX(transaction_num)
FROM apps.igf_ap_isir_sar_v v2
WHERE v2.base_id = igf_ap_isir_sar_v.base_id);
Because the view flattens federal ISIR data, it is well suited for verification reports, EFC-based eligibility checks, and reconciliation of student-submitted versus processor-calculated figures.
-
VIEW: APPS.IGF_AP_ISIR_SAR_V
12.1.1
-
View: IGF_AP_ISIR_SAR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_SAR_V, object_name:IGF_AP_ISIR_SAR_V, status:VALID, product: IGF - Financial Aid , description: Obsolete , implementation_dba_data: APPS.IGF_AP_ISIR_SAR_V ,
-
View: IGF_AP_ISIR_SAR_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
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.IGF_AP_ISIR_CORR_REC_V
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: APPS.IGF_GR_YTD_ORIG
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_YTD_ORIG, object_name:IGF_GR_YTD_ORIG, status:VALID,
-
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: 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: 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: IGFBV_PELL_YTD_ORIGINATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_PELL_YTD_ORIGINATIONS, object_name:IGFBV_PELL_YTD_ORIGINATIONS, status:VALID, product: IGF - Financial Aid , description: Base View for the Entity that holds the information about the year to date origination data , implementation_dba_data: APPS.IGFBV_PELL_YTD_ORIGINATIONS ,
-
View: IGFFV_PELL_YTD_ORIGINATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_PELL_YTD_ORIGINATIONS, object_name:IGFFV_PELL_YTD_ORIGINATIONS, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds the information about the year to date origination data , implementation_dba_data: APPS.IGFFV_PELL_YTD_ORIGINATIONS ,
-
View: IGFBV_PELL_YTD_ORIGINATIONS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base View for the Entity that holds the information about the year to date origination data , implementation_dba_data: Not implemented in this database ,
-
View: IGFFV_PELL_YTD_ORIGINATIONS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds the information about the year to date origination data , implementation_dba_data: Not implemented in this database ,
-
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: IGF_GR_YTD_ORIG
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_YTD_ORIG, object_name:IGF_GR_YTD_ORIG, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_GR_YTD_ORIG ,
-
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: 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_YTD_ORIG
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_AP_ISIR_SAR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_SAR_V, object_name:IGF_AP_ISIR_SAR_V, status:VALID,
-
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_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: APPS.IGFFV_PELL_YTD_ORIGINATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_PELL_YTD_ORIGINATIONS, object_name:IGFFV_PELL_YTD_ORIGINATIONS, status:VALID,
-
VIEW: APPS.IGFBV_PELL_YTD_ORIGINATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_PELL_YTD_ORIGINATIONS, object_name:IGFBV_PELL_YTD_ORIGINATIONS, status:VALID,
-
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,
-
TABLE: IGF.IGF_GR_YTD_ORIG_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_YTD_ORIG_ALL, object_name:IGF_GR_YTD_ORIG_ALL, 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,
-
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 ,
-
APPS.IGF_GR_YTD_ORIG_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGF_AP_ISIR_INTRFACE
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,
-
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,
-
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_GR_YTD_ORIG_PKG
12.1.1
-
VIEW: APPS.IGFBV_ISIRS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_ISIRS, object_name:IGFBV_ISIRS, status:VALID,
-
VIEW: APPS.IGFFV_ISIRS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_ISIRS, object_name:IGFFV_ISIRS, status:VALID,
-
PACKAGE BODY: APPS.IGF_AP_MK_ISIR_ACT_PKG
12.1.1
-
APPS.IGF_AP_ISIR_GEN_PKG SQL Statements
12.1.1