Search Results igf_sl_dl_manifest_all
Overview
The IGF_SL_DL_MANIFEST_ALL table is a core data repository within the Oracle E-Business Suite's Financial Aid module (IGF). It serves the critical function of storing manifests for the U.S. Federal Direct Loan program, specifically for Stafford and PLUS loans. These manifests are generated and populated by the automated Direct Loan Promissory Note Manifest process. The table's role is to act as the system of record for the electronic manifests that detail promissory note information, which is essential for the accurate origination, disbursement, and reporting of Direct Loans between the educational institution and the U.S. Department of Education. Its multi-org structure, indicated by the "_ALL" suffix, allows it to store data for multiple operating units within a single installation.
Key Information Stored
The table's primary purpose is to track manifest records linked to specific loans. The documented metadata highlights the PNMN_ID column as the table's primary key, uniquely identifying each manifest record. A critical foreign key relationship is established via the LOAN_ID column, which references the IGF_SL_LOANS_ALL table. This link is fundamental, as it ties each manifest entry directly to its corresponding loan record within the Financial Aid system. While the full column list is not detailed in the provided excerpt, a table of this nature typically stores data points such as the manifest creation date, status, sequence number, the associated award year, and identifiers for the batch process that created it, in addition to the core PNMN_ID and LOAN_ID.
Common Use Cases and Queries
The primary use case revolves around the execution and audit of the Direct Loan Promissory Note Manifest process. Administrators query this table to verify successful manifest generation, troubleshoot errors, and review historical data for reporting or reconciliation purposes. A common query pattern involves joining to the loan table to retrieve comprehensive details. For example, to find all manifests for a specific student or award period, one might use a SQL pattern such as:
- SELECT m.pnmn_id, m.loan_id, l.student_id FROM igf_sl_dl_manifest_all m, igf_sl_loans_all l WHERE m.loan_id = l.loan_id AND l.student_id = :student_id;
Reporting use cases include generating lists of loans included in a specific manifest batch or identifying loans pending manifest generation for a given disbursement period.
Related Objects
The table has defined dependencies with other key Financial Aid objects. Its structure is centrally linked to the IGF_SL_LOANS_ALL table through the LOAN_ID foreign key, making that table the primary source for related loan data. The primary key constraint, IGF_SL_DL_MANIFEST_ALL_PK, enforces uniqueness on the PNMN_ID column. In a typical EBS implementation, this table is also likely referenced by various financial aid forms, interfaces, and potentially by standard APIs or public views used for data extraction and integration with external loan servicers or Department of Education systems.
-
Table: IGF_SL_DL_MANIFEST_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_DL_MANIFEST_ALL, object_name:IGF_SL_DL_MANIFEST_ALL, status:VALID, product: IGF - Financial Aid , description: Stores the Direct Loan - Stafford and PLUS Loans manifests, which are populated by the Direct Loan Promissory Note Manifest process , implementation_dba_data: IGF.IGF_SL_DL_MANIFEST_ALL ,
-
View: IGFBV_DL_PROM_NOTE_MANIFESTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_DL_PROM_NOTE_MANIFESTS, object_name:IGFBV_DL_PROM_NOTE_MANIFESTS, status:VALID, product: IGF - Financial Aid , description: Base view for the entity that holds Direct Loan Promissory Note Manifests , implementation_dba_data: APPS.IGFBV_DL_PROM_NOTE_MANIFESTS ,
-
Table: IGF_SL_LOANS_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_LOANS_ALL, object_name:IGF_SL_LOANS_ALL, status:VALID, product: IGF - Financial Aid , description: Contains the loan application record details , implementation_dba_data: IGF.IGF_SL_LOANS_ALL ,
-
View: IGF_SL_DL_MANIFEST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DL_MANIFEST, object_name:IGF_SL_DL_MANIFEST, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_DL_MANIFEST ,
-
View: IGFFV_DL_PROM_NOTE_MANIFESTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_DL_PROM_NOTE_MANIFESTS, object_name:IGFFV_DL_PROM_NOTE_MANIFESTS, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds Direct Loan Promissory Note Manifests , implementation_dba_data: APPS.IGFFV_DL_PROM_NOTE_MANIFESTS ,