Search Results duplicate_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:

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.