Search Results orig_fee_perct
Overview
IGF_SL_COD_LOANKEY_V is a reporting view in the Oracle E-Business Suite (EBS) financial aid module, belonging to the IGF (Financial Aid) schema and exposed under the APPS application schema. It presents loan key configuration data that governs the origination and disclosure of student loan records within the Oracle Student Financial Aid (SFAS) functionality. The view consolidates document-level loan key attributes — including entity identifiers, base identifiers, loan keys, rebate percentages, loan and academic period dates, print indicators, origination fee percentages, and grade level codes — into a single read-consistent result set suitable for reporting, integration, and downstream processing.
The view's primary role is to provide a denormalized, group-consistent presentation of loan key parameters so that reports, interfaces, and dependent logic can retrieve one representative row per distinct combination of loan attributes. Because it applies a GROUP BY across every projected column, it effectively performs a DISTINCT operation, filtering out duplicate rows from the underlying source while preserving all documented columns.
Underlying Base Objects
The view text defines a single base object: IGF_SL_LOR_LOC_ALL, an intersection and location table storing student loan origination and location information. All columns exposed by IGF_SL_COD_LOANKEY_V are projected directly from this table — no joins, unions, or subqueries appear in the documented definition. The GROUP BY clause lists the same fourteen columns that appear in the SELECT list, so the view does not aggregate numeric or date values; rather, it deduplicates identical rows.
Documented ETRM metadata for this view records no additional referenced base objects beyond IGF_SL_LOR_LOC_ALL. Because the view is owned by APPS in typical EBS deployments, access is granted through the APPS schema synonym or direct grants. The base table itself is populated as part of the loan origination lifecycle, and the view therefore reflects the current state of loan key data at query time.
Key Columns
- DOCUMENT_ID_TXT — Textual document identifier for the loan record.
- REP_ENTITY_ID_TXT — Reporting entity identifier, indicating the institution or reporting party.
- ATD_ENTITY_ID_TXT — Attendance or originated entity identifier associated with the loan.
- BASE_ID — Base identifier, a searchable key often used to link loan key data to related base records; this is the column most frequently referenced in "base_id" lookups.
- SOURCE_ENTITY_ID_TXT — Source entity identifier for the loan originator.
- LOAN_KEY_NUM — Numeric loan key uniquely identifying the loan configuration.
- INTEREST_REBATE_PERCENT_NUM — Interest rebate percentage applied to the loan.
- LOAN_PER_BEGIN_DATE / LOAN_PER_END_DATE — Loan period boundaries, formatted as YYYY-MM-DD via TO_CHAR.
- ACAD_YR_BEGIN_DATE / ACAD_YR_END_DATE — Academic year boundaries, formatted as YYYY-MM-DD.
- PNOTE_PRINT_IND — Promissory note print indicator.
- DISCLOSURE_PRINT_IND — Disclosure statement print indicator.
- ORIG_FEE_PERCT — Origination fee percentage charged on the loan.
- GRADE_LEVEL_CODE — Grade level code of the borrower.
Common Use Cases and Queries
The view is typically used to report loan key parameters by base identifier, entity, or loan key, and to drive promissory note and disclosure printing logic based on the PNOTE_PRINT_IND and DISCLOSURE_PRINT_IND flags. A common query filters by BASE_ID to retrieve the loan configuration tied to a specific base record:
SELECT DOCUMENT_ID_TXT, BASE_ID, LOAN_KEY_NUM, GRADE_LEVEL_CODE FROM APPS.IGF_SL_COD_LOANKEY_V WHERE BASE_ID = :p_base_id;SELECT BASE_ID, LOAN_PER_BEGIN_DATE, LOAN_PER_END_DATE, ORIG_FEE_PERCT FROM APPS.IGF_SL_COD_LOANKEY_V WHERE PNOTE_PRINT_IND = 'Y';SELECT SOURCE_ENTITY_ID_TXT, COUNT(*) FROM APPS.IGF_SL_COD_LOANKEY_V GROUP BY SOURCE_ENTITY_ID_TXT;
These queries support reporting, reconciliation, and interface extracts where loan key attributes must be retrieved per base identifier or entity.
-
VIEW: APPS.IGF_SL_COD_LOANKEY_V
12.1.1
-
View: IGF_SL_COD_LOANKEY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_COD_LOANKEY_V, object_name:IGF_SL_COD_LOANKEY_V, status:VALID, product: IGF - Financial Aid , description: View containing the Loan Key level tags , implementation_dba_data: APPS.IGF_SL_COD_LOANKEY_V ,
-
View: IGF_SL_COD_LOANKEY_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View containing the Loan Key level tags , 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.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: 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: APPS.IGF_SL_COD_LOANKEY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_COD_LOANKEY_V, object_name:IGF_SL_COD_LOANKEY_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,
-
View: IGF_SL_LOR_DTLS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: 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 ,
-
View: IGF_SL_LOR
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_LOR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR, object_name:IGF_SL_LOR, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_LOR ,
-
VIEW: APPS.IGF_SL_LOR_DTLS_V
12.1.1
-
View: IGF_SL_LOR_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_LOR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_V, object_name:IGF_SL_LOR_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_LOR_V ,
-
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_SL_DL_VALIDATION SQL Statements
12.1.1
-
VIEW: APPS.IGF_SL_LOR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR, object_name:IGF_SL_LOR, status:VALID,
-
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,
-
VIEW: APPS.IGF_SL_LOR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_V, object_name:IGF_SL_LOR_V, status:VALID,
-
VIEW: APPS.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,
-
TABLE: IGF.IGF_SL_LOR_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_LOR_ALL, object_name:IGF_SL_LOR_ALL, status:VALID,
-
PACKAGE BODY: APPS.IGF_SL_DL_VALIDATION
12.1.1
-
APPS.IGF_SL_LOR_PKG SQL Statements
12.1.1
-
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,
-
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,
-
Lookup Type: IGF_SL_LOAN_FIELDS
12.1.1
product: IGF - Financial Aid , meaning: Loan Fields , description: Loan Fields ,
-
Lookup Type: IGF_SL_LOAN_FIELDS
12.2.2
product: IGF - Financial Aid (Obsolete) , meaning: Loan Fields , description: Loan Fields ,
-
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_DL_CHG_ORIG
12.1.1
-
APPS.IGF_SL_UPLOAD_XML SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_LOR_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_LOR_LOC_HISTORY_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_LOR_LOC_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_LI_IMP_PKG
12.1.1
-
APPS.IGF_SL_DL_VALIDATION dependencies on IGF_SL_EDIT
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_UPLOAD_XML
12.1.1
-
APPS.IGF_SL_DL_VALIDATION dependencies on FND_LOG
12.1.1
-
APPS.IGF_SL_DL_VALIDATION dependencies on IGF_SL_DL_VALIDATION
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,