Search Results loan_type
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.
-
Lookup Type: LOAN_TYPE
12.2.2
product: LNS - Loans , meaning: Loan Type , description: Obsoleted and replaced by DIRECT and ERS lookup types that correspond to the lookup codes for LOAN_CLASS lookup type ,
-
Lookup Type: LOAN_TYPE
12.1.1
product: LNS - Loans , meaning: Loan Type , description: Obsoleted and replaced by DIRECT and ERS lookup types that correspond to the lookup codes for LOAN_CLASS lookup type ,
-
VIEW: APPS.IGF_SL_REP_SMRY_V
12.1.1
-
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: 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: LNS.LNS_EVENT_ACTIONS#
12.2.2
-
VIEW: LNS.LNS_DEFAULT_DISTRIBS_ALL#
12.2.2
-
VIEW: LNS.LNS_SYSTEM_OPTIONS_ALL#
12.2.2
-
VIEW: LNS.LNS_LOAN_HEADERS_ALL#
12.2.2
-
TABLE: IGF.IGF_SL_REQD_FIELDS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_REQD_FIELDS, object_name:IGF_SL_REQD_FIELDS, status:VALID,
-
TABLE: LNS.LNS_DEFAULT_DISTRIBS_ALL
12.2.2
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_DEFAULT_DISTRIBS_ALL, object_name:LNS_DEFAULT_DISTRIBS_ALL, status:VALID,
-
TABLE: LNS.LNS_DEFAULT_DISTRIBS_ALL
12.1.1
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_DEFAULT_DISTRIBS_ALL, object_name:LNS_DEFAULT_DISTRIBS_ALL, status:VALID,
-
VIEW: LNS.LNS_EVENT_ACTIONS#
12.2.2
owner:LNS, object_type:VIEW, object_name:LNS_EVENT_ACTIONS#, status:VALID,
-
VIEW: APPS.LNS_LOAN_INFO
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_LOAN_INFO, object_name:LNS_LOAN_INFO, status:VALID,
-
VIEW: APPS.LNS_LOAN_INFO
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_LOAN_INFO, object_name:LNS_LOAN_INFO, status:VALID,
-
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_COD_REP_V
12.1.1
-
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: 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: LNS_LOAN_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_LOAN_SUMMARY_V, object_name:LNS_LOAN_SUMMARY_V, status:VALID, product: LNS - Loans , description: View for Loan Summary Information , implementation_dba_data: APPS.LNS_LOAN_SUMMARY_V ,
-
View: LNS_LOAN_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_LOAN_SUMMARY_V, object_name:LNS_LOAN_SUMMARY_V, status:VALID, product: LNS - Loans , description: View for Loan Summary Information , implementation_dba_data: APPS.LNS_LOAN_SUMMARY_V ,
-
Table: IGF_SL_REQD_FIELDS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_REQD_FIELDS, object_name:IGF_SL_REQD_FIELDS, status:VALID, product: IGF - Financial Aid , description: Stores the fields which are required or mandatory for processing the loan. This is mainly used in the validation process while checking whether the value is present for each of the fields sent to the external processor. , implementation_dba_data: IGF.IGF_SL_REQD_FIELDS ,
-
Table: LNS_DEFAULT_DISTRIBS_ALL
12.2.2
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_DEFAULT_DISTRIBS_ALL, object_name:LNS_DEFAULT_DISTRIBS_ALL, status:VALID, product: LNS - Loans , description: Loans Default Distributions Table - This table establishes the accounting to default for loans and fees. The Default for loans will be based on the combination of LOAN_CLASS + LOAN_TYPE. The default for fees is associated to the fee_id. , implementation_dba_data: LNS.LNS_DEFAULT_DISTRIBS_ALL ,
-
VIEW: LNS.LNS_DEFAULT_DISTRIBS_ALL#
12.2.2
owner:LNS, object_type:VIEW, object_name:LNS_DEFAULT_DISTRIBS_ALL#, status:VALID,
-
TABLE: LNS.LNS_EVENT_ACTIONS
12.1.1
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_EVENT_ACTIONS, object_name:LNS_EVENT_ACTIONS, status:VALID,
-
TABLE: LNS.LNS_EVENT_ACTIONS
12.2.2
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_EVENT_ACTIONS, object_name:LNS_EVENT_ACTIONS, status:VALID,
-
VIEW: APPS.LNS_AEL_GL_V
12.1.1
-
VIEW: APPS.LNS_LOAN_SUMMARY_V
12.1.1
-
View: LNS_LOAN_INFO
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_LOAN_INFO, object_name:LNS_LOAN_INFO, status:VALID, product: LNS - Loans , description: Loans Accounting Events Informational View , implementation_dba_data: APPS.LNS_LOAN_INFO ,
-
Table: IGF_SL_REQD_FIELDS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores the fields which are required or mandatory for processing the loan. This is mainly used in the validation process while checking whether the value is present for each of the fields sent to the external processor. , implementation_dba_data: Not implemented in this database ,
-
Table: LNS_DEFAULT_DISTRIBS_ALL
12.1.1
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_DEFAULT_DISTRIBS_ALL, object_name:LNS_DEFAULT_DISTRIBS_ALL, status:VALID, product: LNS - Loans , description: Loans Default Distributions Table - This table establishes the accounting to default for loans and fees. The Default for loans will be based on the combination of LOAN_CLASS + LOAN_TYPE. The default for fees is associated to the fee_id. , implementation_dba_data: LNS.LNS_DEFAULT_DISTRIBS_ALL ,
-
VIEW: APPS.LNS_AEL_GL_V
12.2.2
-
VIEW: APPS.LNS_LOAN_SUMMARY_V
12.2.2
-
View: LNS_LOAN_INFO
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_LOAN_INFO, object_name:LNS_LOAN_INFO, status:VALID, product: LNS - Loans , description: Loans Accounting Events Informational View , implementation_dba_data: APPS.LNS_LOAN_INFO ,
-
VIEW: LNS.LNS_SYSTEM_OPTIONS_ALL#
12.2.2
owner:LNS, object_type:VIEW, object_name:LNS_SYSTEM_OPTIONS_ALL#, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
APPS.IGF_SL_REQD_FIELDS_PKG SQL Statements
12.1.1
-
MATERIALIZED VIEW: APPS.LNS_LOAN_DTLS_ALL_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:LNS_LOAN_DTLS_ALL_MV, status:VALID,
-
TABLE: APPS.LNS_LOAN_DTLS_ALL_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:LNS.LNS_LOAN_DTLS_ALL_MV, object_name:LNS_LOAN_DTLS_ALL_MV, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
APPS.XLA_00206_AAD_S_000004_PKG SQL Statements
12.2.2
-
VIEW: APPS.IEX_LOAN_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_LOAN_SUMMARY_V, status:VALID,
-
VIEW: APPS.IGF_SL_LOANS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOANS_V, object_name:IGF_SL_LOANS_V, status:VALID,
-
VIEW: APPS.IEX_LOAN_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_LOAN_SUMMARY_V, status:VALID,
-
APPS.XLA_00206_AAD_S_000004_PKG SQL Statements
12.1.1
-
VIEW: LNS.LNS_LOAN_HEADERS_ALL#
12.2.2
owner:LNS, object_type:VIEW, object_name:LNS_LOAN_HEADERS_ALL#, status:VALID,
-
APPS.LNS_IMPORT_LOAN_PUB SQL Statements
12.2.2
-
View: IGF_SL_LOANS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOANS_V, object_name:IGF_SL_LOANS_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_LOANS_V ,
-
View: IGF_SL_LOANS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_LOR_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_DTLS_V, object_name:IGF_SL_LOR_DTLS_V, status:VALID, product: IGF - Financial Aid , description: Obsolete , implementation_dba_data: APPS.IGF_SL_LOR_DTLS_V ,