Search Results fin_award_year
Overview
IGF_SL_REP_SMRY_V is a reporting view in the Oracle E-Business Suite (EBS) Financial Aid / Student Loan module (IGF schema, formerly part of the Oracle Student System). Its name — SL (Student Loan) REP (Reporting) SMRY (Summary) — indicates that it aggregates William D. Ford Federal Direct Loan award and disbursement activity into a summary form suitable for loan reconciliation and reporting to the U.S. Department of Education and to institutional reporting entities. In EBS 12.1.1 and 12.2.2, the view is owned by the APPS schema and is exposed for reporting tools (Oracle Reports, OBIEE, Discoverer, and ad-hoc SQL) that need a pre-aggregated picture of Direct Loan volume.
The view is specifically relevant to the "loan_type" search because it filters to and derives the three Direct Loan subtypes from the LOAN_TYPE code column. It is a pure read-only reporting object; it does not store data, enforce business logic, or participate in transaction processing.
Underlying Base Objects
Per the ETRM metadata, the view text is defined over two references to the same base table, IGF_SL_LOR_LOC_ALL (aliased LOC1 and LOC2), together with an inline aggregation subquery. The metadata lists no formally documented base objects, but the view text reveals the following dependencies:
- IGF_SL_LOR_LOC_ALL — the "Loan Origination / Location" table holding Direct Loan award records. It supplies AWARD_ID, BASE_ID, DOCUMENT_ID_TXT, REP_ENTITY_ID_TXT, FIN_AWARD_YEAR, LOAN_TYPE, and LOAN_AMT_ACCEPTED.
- IGF_AW_DB_COD_DTLS — the disbursement detail table, supplying DISB_ACCEPTED_AMT, joined to the loan table on AWARD_ID.
- The inline view DISB1 aggregates disbursements per AWARD_ID before joining, using an outer join (+) so loans with no disbursements still appear with a zero total.
Key Columns
- DOCUMENT_ID_TXT — the loan document identifier used as a grouping key.
- REP_ENTITY_ID_TXT — the reporting entity (campus or school code) to which the loan activity belongs.
- FIN_AWARD_YEAR — the financial aid award year being summarized.
- LOAN_TYPE — the raw code ('DLP', 'DLS', or 'DLU') from IGF_SL_LOR_LOC_ALL.
- FIN_AWARD_TYPE — a decoded label derived via DECODE: 'DLS' → DLSubsidized, 'DLP' → DLPLUS, 'DLU' → DLUnsubsidized.
- TOT_CNT_NUM — COUNT(DISTINCT BASE_ID), the number of distinct borrowers/awards in the group.
- TOT_REP_AWD_AMT — SUM(LOAN_AMT_ACCEPTED), the total accepted award amount.
- TOT_REP_DISB_AMT — SUM(NVL(DISB_AMT,0)), the total accepted disbursement amount.
Common Use Cases and Queries
Typical uses include award-versus-disbursement reconciliation, reporting Direct Loan volume by entity and award year, and feeding downstream summaries where only the three Direct Loan types are relevant (the view explicitly restricts LOAN_TYPE to 'DLP','DLS','DLU').
Retrieve all Direct Loan summary rows for a given award year:
- SELECT rep_entity_id_txt, fin_award_year, fin_award_type, tot_cnt_num, tot_rep_awd_amt, tot_rep_disb_amt FROM apps.igf_sl_rep_smry_v WHERE fin_award_year = :year ORDER BY rep_entity_id_txt, fin_award_type;
Compare awards against disbursements to find under-disbursed loans:
- SELECT rep_entity_id_txt, fin_award_type, tot_rep_awd_amt, tot_rep_disb_amt, (tot_rep_awd_amt - tot_rep_disb_amt) variance FROM apps.igf_sl_rep_smry_v WHERE (tot_rep_awd_amt - tot_rep_disb_amt) > 0;
Aggregate totals by loan type for a reporting entity:
- SELECT loan_type, SUM(tot_cnt_num) borrowers, SUM(tot_rep_disb_amt) disbursed FROM apps.igf_sl_rep_smry_v WHERE rep_entity_id_txt = :entity GROUP BY loan_type;
Because results are already grouped by DOCUMENT_ID_TXT, REP_ENTITY_ID_TXT, FIN_AWARD_YEAR, and LOAN_TYPE, consumers should apply any further aggregation with these dimensions in mind.
-
VIEW: APPS.IGF_SL_REP_SMRY_V
12.1.1
-
VIEW: APPS.IGF_GR_REP_SMRY_V
12.1.1
-
VIEW: APPS.IGF_GR_REP_PELL_V
12.1.1
-
View: IGF_GR_REP_SMRY_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View used for reporting the financial summary tag in the outbound XML for Pell , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_REP_SMRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_REP_SMRY_V, object_name:IGF_GR_REP_SMRY_V, status:VALID, product: IGF - Financial Aid , description: View used for reporting the financial summary tag in the outbound XML for Pell , implementation_dba_data: APPS.IGF_GR_REP_SMRY_V ,
-
View: IGF_GR_REP_PELL_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_REP_PELL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_REP_PELL_V, object_name:IGF_GR_REP_PELL_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_GR_REP_PELL_V ,
-
View: IGF_SL_REP_SMRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_REP_SMRY_V, object_name:IGF_SL_REP_SMRY_V, status:VALID, product: IGF - Financial Aid , description: View used for reproting the financial summary tag in the outbound XML for Direct Loan , implementation_dba_data: APPS.IGF_SL_REP_SMRY_V ,
-
View: IGF_SL_REP_SMRY_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View used for reproting the financial summary tag in the outbound XML for Direct Loan , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_SL_COD_REP_V
12.1.1
-
View: IGF_SL_COD_REP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_COD_REP_V, object_name:IGF_SL_COD_REP_V, status:VALID, product: IGF - Financial Aid , description: View used for reporting the various Direct Loan tags in the outbound XML for Direct Loan , implementation_dba_data: APPS.IGF_SL_COD_REP_V ,
-
View: IGF_SL_COD_REP_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View used for reporting the various Direct Loan tags in the outbound XML for Direct Loan , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_SL_REP_SMRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_REP_SMRY_V, object_name:IGF_SL_REP_SMRY_V, status:VALID,
-
VIEW: APPS.IGF_GR_REP_SMRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_REP_SMRY_V, object_name:IGF_GR_REP_SMRY_V, status:VALID,
-
TABLE: IGF.IGF_SL_REP_F_SMRY
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_REP_F_SMRY, object_name:IGF_SL_REP_F_SMRY, status:VALID,
-
VIEW: APPS.IGF_GR_REP_PELL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_REP_PELL_V, object_name:IGF_GR_REP_PELL_V, status:VALID,
-
VIEW: APPS.IGF_SL_COD_REP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_COD_REP_V, object_name:IGF_SL_COD_REP_V, status:VALID,
-
TABLE: IGF.IGF_SL_RESP_F_SMRY
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_RESP_F_SMRY, object_name:IGF_SL_RESP_F_SMRY, status:VALID,
-
TABLE: IGF.IGF_GR_COD_HISTORY
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_COD_HISTORY, object_name:IGF_GR_COD_HISTORY, status:VALID,
-
TABLE: IGF.IGF_GR_COD_DTLS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_COD_DTLS, object_name:IGF_GR_COD_DTLS, status:VALID,
-
APPS.IGF_GR_COD_HISTORY_PKG SQL Statements
12.1.1
-
View: IGF_SL_LOR_LOC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_LOC, object_name:IGF_SL_LOR_LOC, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_LOR_LOC ,
-
View: IGF_SL_LOR_LOC
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_GR_COD_DTLS_PKG SQL Statements
12.1.1
-
APPS.IGF_SL_UPLOAD_XML SQL Statements
12.1.1
-
VIEW: APPS.IGF_SL_LOR_LOC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_LOC, object_name:IGF_SL_LOR_LOC, status:VALID,
-
TABLE: IGF.IGF_SL_LOR_LOC_HISTORY
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_LOR_LOC_HISTORY, object_name:IGF_SL_LOR_LOC_HISTORY, status:VALID,
-
TABLE: IGF.IGF_SL_LOR_LOC_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_LOR_LOC_ALL, object_name:IGF_SL_LOR_LOC_ALL, status:VALID,
-
PACKAGE BODY: APPS.IGF_GR_COD_HISTORY_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_COD_DTLS_PKG
12.1.1
-
APPS.IGF_SL_LOR_LOC_PKG SQL Statements
12.1.1
-
APPS.IGF_SL_LOR_LOC_HISTORY_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_UPLOAD_XML
12.1.1
-
APPS.IGF_SL_UPLOAD_XML dependencies on IGF_SL_RESP_F_SMRY
12.1.1
-
APPS.IGF_SL_UPLOAD_XML dependencies on IGF_GR_COD_DTLS
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_LOR_LOC_HISTORY_PKG
12.1.1
-
APPS.IGF_SL_UPLOAD_XML dependencies on IGF_SL_LOR_LOC_ALL
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_LOR_LOC_PKG
12.1.1
-
APPS.IGF_SL_UPLOAD_XML dependencies on IGF_SL_LOR_LOC
12.1.1
-
APPS.IGF_SL_UPLOAD_XML dependencies on IGF_SL_LOR
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,