Search Results igf_gr_mrr_all_u1




Overview

IGF.IGF_GR_MRR_ALL is a transactional table in the Oracle E-Business Suite Financial Aid module (IGF), part of the U.S. Department of Education Pell Grant processing framework. The table stores Multiple Reporting Records (MRR) that are uploaded from an external system — typically the Department of Education's Common Origination and Disbursement (COD) system — into Oracle EBS. Each row represents a single multiple reporting record that conveys origination or disbursement information between institutions for a given student. The object resides in the APPS_TS_TX_DATA tablespace with a PCT Free of 10 and carries FND design data registration under IGF.IGF_GR_MRR_ALL.

From a heuristic Data Vault modeling perspective, IGF_GR_MRR_ALL is classified as a standalone object — no foreign key dependencies were mined from its physical structure. It behaves most like a satellite-style record keyed by a surrogate identifier, with no documented parent hub or link tables in the physical schema. This classification is a modeling suggestion and does not imply referential constraints exist at the database level.

Key Information Stored

The table contains 46 documented columns. The most significant are listed below:

Common Use Cases and Queries

IGF_GR_MRR_ALL is queried primarily for financial aid reconciliation, dispute resolution, and reporting on inter-institution Pell activity. Typical scenarios include retrieving all MRR records for a student's SSN, identifying records by requesting institution, and reconciling disbursement amounts.

Fetch a record by its surrogate key:

  • SELECT * FROM IGF.IGF_GR_MRR_ALL WHERE MRR_ID = :p_mrr_id;

Retrieve records for a student by SSN:

  • SELECT MRR_ID, RECORD_TYPE, INST_PELL_ID, SCHD_PELL_GRANT, DISB_ACCEPTED_AMT FROM IGF.IGF_GR_MRR_ALL WHERE STUD_ORIG_SSN = :p_ssn;

Aggregate accepted disbursements by operating unit for a period:

  • SELECT ORG_ID, SUM(DISB_ACCEPTED_AMT) FROM IGF.IGF_GR_MRR_ALL WHERE CREATION_DATE BETWEEN :p_from AND :p_to GROUP BY ORG_ID;

Because the table is standalone, joins must be constructed against surrounding Pell entities by matching SSN, name code, or Pell identifier columns rather than by declared foreign keys.

Related Objects

The documented physical schema contains no foreign key relationships, so related objects are inferred from shared Pell business identifiers. The most significant are:

As a standalone table, IGF_GR_MRR_ALL acts as a staging and reference source that is consumed by these downstream Pell objects rather than referencing them by constraint.