Search Results isir_id
Overview
The IGF_AP_ISIR_CORR_ALL table is a core data structure within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically in the Federal Financial Aid (IGF) module. It serves as the central repository for tracking corrections made to Institutional Student Information Records (ISIRs). When data from a student's Free Application for Federal Student Aid (FAFSA) requires amendment, correction records are created and managed within this table. Its role is critical for maintaining data integrity, audit trails, and supporting the federal aid reconciliation and verification processes mandated by the U.S. Department of Education. The table is multi-org enabled, as indicated by the ORG_ID column, allowing it to store data for multiple operating units within a single installation.
Key Information Stored
The table stores metadata and values for each specific correction. The primary identifier for a correction record is the ISIRC_ID. Each record is fundamentally linked to a source ISIR via the ISIR_ID column. The correction process is defined by the SAR_FIELD_NUMBER, which maps to a specific field on the Student Aid Report (SAR), and the associated ORIGINAL_VALUE and CORRECTED_VALUE columns that capture the change. The lifecycle of a correction is managed through the CORRECTION_STATUS column, with documented values including 'BATCHED', 'PENDING', 'READY', or 'HOLD'. The BATCH_ID links corrections processed together. Context for the award year is provided by CI_CAL_TYPE and CI_SEQUENCE_NUMBER. The table also includes standard EBS "Who" columns (CREATED_BY, LAST_UPDATE_DATE, etc.) for auditing and the REQUEST_ID group of columns for concurrent program tracking.
Common Use Cases and Queries
A primary use case is generating reports on pending corrections for a specific ISIR or batch. Financial aid administrators often need to review all outstanding changes. A typical query would be:
SELECT sar_field_number, original_value, corrected_value FROM igf.igf_ap_isir_corr_all WHERE isir_id = :p_isir_id AND correction_status = 'PENDING' ORDER BY sar_field_number;
Another common scenario is identifying all corrections processed in a specific batch for submission or audit purposes:
SELECT isir_id, sar_field_number, correction_status FROM igf.igf_ap_isir_corr_all WHERE batch_id = :p_batch_id;
Data integrity checks often involve joining this table to the main ISIR record table (IGF_AP_ISIR_MATCH_ALL) to validate student and award year context. The unique indexes, particularly IGF_AP_ISIR_CORR_ALL_U2 on (ISIR_ID, SAR_FIELD_NUMBER, CORRECTION_STATUS), enforce business rules preventing duplicate active corrections for the same field on an ISIR.
Related Objects
The table has a direct and fundamental relationship with the primary ISIR table, IGF_AP_ISIR_MATCH_ALL, via the ISIR_ID column. The IGF_AP_ISIR_CORR_ALL_U2 and IGF_AP_ISIR_CORR_ALL_N1 indexes explicitly highlight this key relationship by including ISIR_ID as their leading column. While explicit foreign key constraints are not detailed in the provided metadata, the data model implies that ISIR_ID in IGF_AP_ISIR_CORR_ALL references the primary key of IGF_AP_ISIR_MATCH_ALL. This table is also central to any batch correction processing programs within the IGF module, which would populate the BATCH_ID and update CORRECTION_STATUS. Reports and interfaces managing the ISIR correction lifecycle will query and update this table as the system of record.
-
APPS.IGF_AP_LG_VER_IMP dependencies on IGF_AP_ISIR_CORR
12.1.1
-
APPS.IGF_AP_TODO_GRPS_PRC_PKG dependencies on IGF_AP_ISIR_MATCHED_ALL
12.1.1
-
APPS.IGF_AP_LG_VER_IMP dependencies on IGF_AP_ISIR_MATCHED
12.1.1
-
APPS.IGF_AP_PROCESS_CORRECTIONS dependencies on IGF_AP_ISIR_CORR
12.1.1
-
TABLE: IGF.IGF_AP_ISIR_CORR_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_ISIR_CORR_ALL, object_name:IGF_AP_ISIR_CORR_ALL, status:VALID,
-
APPS.IGF_GR_REPACKAGE dependencies on IGF_AP_ISIR_MATCHED_ALL
12.1.1
-
APPS.IGF_AP_ISIR_IMPORT_PKG dependencies on DBMS_SQL
12.1.1
-
APPS.IGF_AP_BATCH_VER_PRC_PKG dependencies on DBMS_SQL
12.1.1
-
APPS.IGF_AP_MATCHING_PROCESS_PKG dependencies on IGF_AP_ISIR_MATCHED_ALL
12.1.1
-
APPS.IGF_AP_ISIR_CORR_PKG dependencies on IGF_AP_ISIR_CORR_ALL
12.1.1
-
APPS.IGF_AP_BATCH_VER_PRC_PKG dependencies on IGF_AP_ISIR_CORR
12.1.1
-
TABLE: IGF.IGF_AP_ST_COMM_CD_ALL_OLD
12.1.1
owner:IGF, object_type:TABLE, object_name:IGF_AP_ST_COMM_CD_ALL_OLD, status:VALID,
-
APPS.IGF_AP_SS_PKG dependencies on IGF_AP_FA_BASE_REC_ALL
12.1.1
-
APPS.IGF_AP_ISIR_IMPORT_PKG dependencies on IGF_AP_ISIR_MATCHED
12.1.1
-
APPS.IGF_AP_LG_VER_IMP dependencies on DBMS_SQL
12.1.1
-
APPS.IGF_AP_ISIR_CORR_PKG SQL Statements
12.1.1
-
APPS.IGF_AP_ISIR_MATCHED_PKG dependencies on IGF_AP_ISIR_MATCHED_ALL
12.1.1
-
APPS.IGF_AP_ISIR_MATCHED_PKG dependencies on IGF_AP_ISIR_MATCHED
12.1.1
-
APPS.IGF_AW_PACKAGING dependencies on IGF_AP_ISIR_MATCHED_ALL
12.1.1
-
VIEW: APPS.IGF_AP_ISIR_CORRECTION_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_CORRECTION_DTL_V, object_name:IGF_AP_ISIR_CORRECTION_DTL_V, status:VALID,
-
APPS.IGF_AP_NSLDS_DATA_PKG dependencies on IGF_AP_NSLDS_DATA_ALL
12.1.1
-
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,
-
APPS.IGF_SL_DL_LI_IMP_PKG dependencies on IGF_AP_ISIR_MATCHED_ALL
12.1.1
-
VIEW: APPS.IGFBV_ISIR_CORRECTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_ISIR_CORRECTIONS, object_name:IGFBV_ISIR_CORRECTIONS, status:VALID,
-
VIEW: APPS.IGF_AP_ISIR_CORR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_CORR, object_name:IGF_AP_ISIR_CORR, status:VALID,
-
Table: IGF_AP_ISIR_CORR_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_ISIR_CORR_ALL, object_name:IGF_AP_ISIR_CORR_ALL, status:VALID, product: IGF - Financial Aid , description: Maintains ISIR correction records , implementation_dba_data: IGF.IGF_AP_ISIR_CORR_ALL ,
-
Table: IGF_AP_ISIR_CORR_ALL
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Maintains ISIR correction records , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_AP_ISIR_MATCHED_ALL
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Holds the complete ISIR record of the matched students , implementation_dba_data: Not implemented in this database ,
-
View: IGFBV_ISIR_CORRECTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_ISIR_CORRECTIONS, object_name:IGFBV_ISIR_CORRECTIONS, status:VALID, product: IGF - Financial Aid , description: Maintains ISIR correction records , implementation_dba_data: APPS.IGFBV_ISIR_CORRECTIONS ,
-
VIEW: APPS.IGFFV_ISIR_CORRECTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_ISIR_CORRECTIONS, object_name:IGFFV_ISIR_CORRECTIONS, status:VALID,
-
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: 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 ,
-
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 ,
-
APPS.IGF_AW_LI_IMPORT dependencies on IGF_AP_ISIR_MATCHED_ALL
12.1.1
-
APPS.IGF_AP_MATCHING_PROCESS_PKG dependencies on IGF_AP_ISIR_MATCHED
12.1.1
-
APPS.IGF_AP_ISIR_IMPORT_PKG dependencies on IGS_OR_ORG_ALT_IDS
12.1.1
-
View: IGF_AP_ISIR_INFO_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Obsolete , 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.IGF_AP_INAR_DTL_ALL_OLD
12.1.1
owner:IGF, object_type:TABLE, object_name:IGF_AP_INAR_DTL_ALL_OLD, status:VALID,
-
APPS.IGF_AP_PROCESS_CORRECTIONS SQL Statements
12.1.1
-
View: IGFBV_ISIR_CORRECTIONS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Maintains ISIR correction records , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AP_ISIR_CORRECTION_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_CORRECTION_DTL_V, object_name:IGF_AP_ISIR_CORRECTION_DTL_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AP_ISIR_CORRECTION_DTL_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: IGF_AP_ISIR_CORR
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGFFV_ISIR_CORRECTIONS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Maintains ISIR correction records , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AP_ISIR_CORR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ISIR_CORR, object_name:IGF_AP_ISIR_CORR, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AP_ISIR_CORR ,
-
View: IGFFV_ISIR_CORRECTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_ISIR_CORRECTIONS, object_name:IGFFV_ISIR_CORRECTIONS, status:VALID, product: IGF - Financial Aid , description: Maintains ISIR correction records , implementation_dba_data: APPS.IGFFV_ISIR_CORRECTIONS ,
-
APPS.IGF_GR_PELL dependencies on IGF_AP_ISIR_MATCHED
12.1.1
-
APPS.IGF_AP_SS_PKG dependencies on IGF_AP_ISIR_MATCHED
12.1.1