Search Results isir_transaction_type
Overview
IGF_AP_ISIR_MATCHED_ALL is a Financial Aid (IGF) module table in Oracle E-Business Suite, documented in the ETRM for releases 12.1.1 and 12.2.2. Its stated purpose is to hold the complete ISIR record of matched students. An ISIR (Institutional Student Information Record) is the output produced by the U.S. Department of Education's Central Processing System (CPS) after processing a student's FAFSA, and this table acts as the staging and archival repository for the full institutional copy of that record once a student has been matched to an existing financial aid applicant or person record. The table is flagged as belonging to an obsolete area of IGF, and the ETRM notes it is not implemented in this database; consequently, in many environments the object will exist only in older installations where the legacy Financial Aid product was licensed and configured. It should not be treated as a supported extension point.
The 311-column footprint reflects the breadth of the ISIR payload, which carries student, parent, need-analysis, verification, and match-result data. Under a heuristic Data Vault classification derived from the foreign key structure, the object leans toward a hub role: its primary key ISIR_ID is a surrogate identifier, and several satellite-like detail tables in the surrounding model reference it. This is a modeling suggestion rather than a documented Data Vault implementation, and the table's denormalized shape does not conform strictly to hub/satellite separation.
Key Information Stored
The table's integrity is anchored by the primary key IGF_AP_ISIR_MATCHED_ALL_PK on the column ISIR_ID, which is the surrogate identifier for a single ISIR transaction. The ETRM lists no additional unique index; the business-key candidates are therefore carried within the record itself rather than enforced as alternate keys, for example the combination of BATCH_YEAR, TRANSACTION_NUM, and DRN, along with identifiers such as SERIAL_NUMBER and BATCH_NUMBER. The most consequential stored attributes include:
ISIR_ID— surrogate primary key for the ISIR transaction.BASE_ID— foreign key toIGF_AP_FA_BASE_REC_ALL, tying the ISIR to the applicant's financial aid base record.BATCH_YEARandTRANSACTION_NUM— award-year and CPS transaction sequencing.SSN-related columns such asCURRENT_SSN,ORIGINAL_SSN, andSSN_NAME_CHANGE— student identification.DATE_OF_BIRTH,CITIZENSHIP_STATUS, andALIEN_REG_NUMBER— demographic and eligibility data.- Need-analysis figures including
PRIMARY_EFC,SECONDARY_EFC, andPAID_EFC. S_ADJUSTED_GROSS_INCOME,P_ADJUSTED_GROSS_INCOME, andTOTAL_INCOME— student and parent income components.- Match flags such as
SSN_MATCH_FLAG,NSLDS_MATCH_FLAG, andSEC_INS_MATCH_FLAG— federal verification outcomes. VERIFICATION_FLAGandVERIFICATION_SELECTION_FLAG— verification tracking status.ACTIVE_ISIRandISIR_TRANSACTION_TYPE— current-record and correction indicators.- Standard Who columns (
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE) andORG_ID.
Common Use Cases and Queries
Historically this table supported ISIR load and match processing, verification tracking, need-analysis comparison, and financial aid reporting. A typical query retrieves the active ISIR for an applicant by joining to the base record:
SELECT m.ISIR_ID, m.TRANSACTION_NUM, m.PRIMARY_EFC FROM IGF_AP_ISIR_MATCHED_ALL m, IGF_AP_FA_BASE_REC_ALL b WHERE m.BASE_ID = b.BASE_ID AND m.ACTIVE_ISIR = 'Y' AND m.BATCH_YEAR = :p_award_year;
Verification reporting commonly filters on VERIFICATION_FLAG, while EFC trending compares PRIMARY_EFC and PAID_EFC across TRANSACTION_NUM values. Correction history is examined through the related IGF_AP_ISIR_CORR_ALL table keyed by ISIR_ID.
Related Objects
The following objects are documented as directly related through foreign keys:
IGF_AP_FA_BASE_REC_ALL— parent base record referenced viaBASE_ID.IGF_AP_EFC_DET— Expected Family Contribution detail, referencingCONTEXT_ISIR_ID.IGF_AP_ISIR_CORR_ALL— ISIR correction records, referencingISIR_ID.IGF_AP_NSLDS_DATA_ALL— NSLDS match data, referencingISIR_ID.IGF_AW_FISAP_REP— Financial Aid reporting structure, referencingISIR_ID.
Together these define the legacy ISIR processing constellation within the obsolete IGF Financial Aid module.
-
Table: 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, product: IGF - Financial Aid , description: Holds the complete ISIR record of the matched students , implementation_dba_data: IGF.IGF_AP_ISIR_MATCHED_ALL ,
-
Table: IGF_AP_ISIR_INTS_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_ISIR_INTS_ALL, object_name:IGF_AP_ISIR_INTS_ALL, status:VALID, product: IGF - Financial Aid , description: ISIR Interface table for holding ISIRs received from CPS , implementation_dba_data: IGF.IGF_AP_ISIR_INTS_ALL ,
-
Table: 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, product: IGF - Financial Aid , description: Holds the complete ISIR record - Obsolete , implementation_dba_data: IGF.IGF_AP_ISIR_INTRFACE_ALL ,
-
Table: IGF_AP_LI_ISIR_INTS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_LI_ISIR_INTS, object_name:IGF_AP_LI_ISIR_INTS, status:VALID, product: IGF - Financial Aid , description: Interface table for ISIR , implementation_dba_data: IGF.IGF_AP_LI_ISIR_INTS ,
-
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_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_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: APPS.IGF_AP_ISIR_CORR_REC_V
12.1.1
-
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_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: IGF_AP_ISIR_INTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_INTS, object_name:IGF_AP_ISIR_INTS, status:VALID, product: IGF - Financial Aid , description: ISIR Interface view for holding ISIRs received from CPS , implementation_dba_data: APPS.IGF_AP_ISIR_INTS ,
-
VIEW: APPS.IGF_AP_ISIR_INTS
12.1.1
-
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_INTS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: ISIR Interface view for holding ISIRs received from CPS , implementation_dba_data: Not implemented in this database ,
-
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: 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: 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: 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,
-
TABLE: IGF.IGF_AP_LI_ISIR_INTS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_LI_ISIR_INTS, object_name:IGF_AP_LI_ISIR_INTS, 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
-
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,
-
VIEW: APPS.IGF_AP_ISIR_INTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_INTS, object_name:IGF_AP_ISIR_INTS, status:VALID,
-
TABLE: IGF.IGF_AP_ISIR_INTS_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_ISIR_INTS_ALL, object_name:IGF_AP_ISIR_INTS_ALL, status:VALID,
-
APPS.IGF_AP_ISIR_MATCHED_PKG SQL Statements
12.1.1
-
APPS.IGF_AP_MATCHING_PROCESS_PKG dependencies on FND_DATE
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_ISIR_MATCHED_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_ISIR_GEN_PKG
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
PACKAGE BODY: APPS.IGF_AP_MATCHING_PROCESS_PKG
12.1.1