Search Results tran_process_date
Overview
IGF_AP_ISIR_CORR_REC_V is a reporting view owned by the APPS schema within the IGF (Financial Aid) product family of Oracle E-Business Suite, valid in both the 12.1.1 and 12.2.2 releases. Its documented purpose is to retrieve the list of all ISIR matched records whose system record type is CORRECTION. In the ISIR (Institutional Student Information Record) processing flow, an incoming ISIR carries a transaction type that indicates whether it is an original application or a correction to a previously submitted record. This view isolates the CORRECTION subset, allowing financial aid offices to report on and reconcile correction transactions separately from originals.
As a view rather than a table, it carries no independent storage; it is a read-only projection used primarily for reporting, data extraction, and downstream integration where a normalized set of ISIR correction attributes is required.
Underlying Base Objects
The ETRM metadata for this object documents no referenced base objects, and the excerpted view text does not include a FROM clause. As a result, the precise underlying tables cannot be confirmed from the supplied documentation alone. Based on the ISIR data model and the column set exposed, the view is expected to draw from the standard ISIR staging and matched-record tables in the IGF schema - typically an ISIR base/matched record table keyed by ISIR_ID, BASE_ID, and ROW_ID, joined to control and batch data supplying BATCH_YEAR and record-type information. The WHERE clause (implied by the description) filters on the system record type equal to CORRECTION.
Practitioners should treat the base-object relationships as inferred rather than verified, and confirm them by inspecting the full view definition in the database (for example, via ALL_VIEWS / DBA_VIEWS against the APPS schema) before relying on any join path.
Key Columns
The column list mirrors the ISIR correction record layout, grouped broadly as follows:
- Identity and keys: ROW_ID, ISIR_ID, BASE_ID, BATCH_YEAR, TRANSACTION_NUM - uniquely identify the matched record, its ISIR source, the base record instance, the processing year, and the transaction sequence.
- Applicant identifiers: CURRENT_SSN, ORIGINAL_SSN, LAST_NAME, FIRST_NAME, MIDDLE_INITIAL, DATE_OF_BIRTH, DRIVER_LICENSE_NUMBER, ALIEN_REG_NUMBER, and the SSN/name-change indicators.
- Contact and residency: PERM_MAIL_ADD, PERM_CITY, PERM_STATE, PERM_ZIP_CODE, S_STATE_LEGAL_RESIDENCE, and related legal residence dates.
- Enrollment and status: SUMM_ENRL_STATUS, FALL_ENRL_STATUS, WINTER_ENRL_STATUS, SPRING_ENRL_STATUS, SUMM2_ENRL_STATUS, GRADE_LEVEL_IN_COLLEGE, DEGREE_CERTIFICATION, and citizenship or selective-service data.
- Student financials (S_ prefix): S_TAX_RETURN_STATUS, S_ADJUSTED_GROSS_INCOME, S_FED_TAXES_PAID, S_EXEMPTIONS, S_INCOME_FROM_WORK, S_INVESTMENT_NETWORTH, S_BUSI_FARM_NETWORTH, S_CASH_SAVINGS, and the S_TOA_AMT_FROM_WSA/WSB/WSC worksheet totals.
- Parent and spouse data (P_, F_, M_ prefixes): P_MARITAL_STATUS, P_NUM_FAMILY_MEMBER, P_NUM_IN_COLLEGE, P_ADJUSTED_GROSS_INCOME, P_TAXES_PAID, FATHER_SSN, MOTHER_SSN, and parent net worth and income fields.
Common Use Cases and Queries
Typical scenarios include reporting correction volume by year, exporting correction records for reconciliation, and auditing SSN or name changes. Because the view is filtered to correction record types, no additional record-type predicate is normally required.
- Count corrections by batch year:
SELECT BATCH_YEAR, COUNT(*) FROM APPS.IGF_AP_ISIR_CORR_REC_V GROUP BY BATCH_YEAR; - Retrieve a specific correction by SSN:
SELECT ISIR_ID, TRANSACTION_NUM, LAST_NAME, FIRST_NAME, CURRENT_SSN FROM APPS.IGF_AP_ISIR_CORR_REC_V WHERE CURRENT_SSN = :ssn; - Audit SSN/name changes:
SELECT ISIR_ID, ORIGINAL_SSN, CURRENT_SSN, ORIG_NAME_ID FROM APPS.IGF_AP_ISIR_CORR_REC_V WHERE SSN_NAME_CHANGE IS NOT NULL;
All queries should be run as APPS or a user with appropriate grants, and results should be scoped by BATCH_YEAR in large environments.
-
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: APPS.IGF_AP_ISIR_CORR_REC_V
12.1.1
-
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_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: IGF_AP_ISIR_INTRFACE
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_AP_ISIR_INTS
12.1.1
-
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: 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: 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_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