Search Results plus_processing_type_code
Overview
APPS.IGF_SL_CL_SETUP is a multi-org view in the Oracle E-Business Suite Financial Aid (IGF) module, documented as FND Design Data IGF.IGF_SL_CL_SETUP and marked VALID in the APPS schema. It presents CommonLine loan setup configuration data used by the Federal Family Education Loan Program (FFELP) processing features within Oracle Student Financial Aid. Because it is registered as a multi-org view, it automatically restricts results to the operating unit associated with the current session, ignoring records belonging to other operating units. This behavior is governed by the ORG_ID column exposed by the view.
The view serves as the configuration layer that drives loan processing defaults, including borrower interest handling, fee percentages, PLUS and Stafford processing type codes, and lender fund return methods. For reporting and integration, it is the primary read-only interface through which setup values are surfaced to concurrent programs, OBIEE extracts, and custom SQL used by financial aid administrators. The column PLUS_PROCESSING_TYPE_CODE, which the user searched for, is the FFELP processing type code applied to FFELP PLUS and alternative loans and represents one of the most frequently referenced attributes of this view.
Underlying Base Objects
The ETRM documentation for this object records no referenced base objects. Oracle EBS documentation classifies IGF_SL_CL_SETUP as a view whose FND Design Data is IGF.IGF_SL_CL_SETUP, meaning the underlying table carries the same logical name within the IGF application. In practice, the view resolves to the IGF base table housing CommonLine setup records and is filtered by the multi-org security mechanism. Dependent views and PL/SQL packages within IGF reference it to read relationship and processing defaults. The presence of audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) confirms that the view exposes the standard WHO columns of its base entity, allowing change tracking in reports.
Key Columns
- CLSET_ID — Primary identifier for the CommonLine setup record.
- PLUS_PROCESSING_TYPE_CODE — FFELP processing type code applied to FFELP PLUS and alternative loans; the searched attribute.
- PRC_TYPE_CODE — FFELP processing type code for FFELP Stafford Loans.
- CL_VERSION — CommonLine processing version code.
- RELATIONSHIP_CD, PARTY_ID, DEFAULT_FLAG — Define the lender or guarantor relationship and whether it is the default.
- EST_ORIG_FEE_PERCT, EST_GUARNT_FEE_PERCT, EST_ALT_ORIG_FEE_PERCT, EST_ALT_GUARNT_FEE_PERCT — Estimated origination and guaranty fee percentages for standard and alternative loans.
- BORW_INTEREST_IND, HOLD_REL_IND, EFT_AUTHORIZATION, AUTO_LATE_DISB_IND — Processing indicators controlling borrower interest, hold release, electronic funds transfer authorization, and automatic late disbursement.
- FUND_RETURN_METHOD_CODE — Default fund return method for a lender relationship.
- ORG_ID — Operating unit used by the multi-org filter.
Several columns are documented as obsolete, including LENDER_ID, DUNS_LENDER_ID, GUARANTOR_ID, RECIPIENT_ID, MEDIA_TYPE, and LOAN_AWARD_METHOD. These should not be used in new development.
Common Use Cases and Queries
Typical scenarios include validating the PLUS processing type code configured for the current operating unit, extracting fee percentages for reconciliation, and confirming default lender relationships for disbursement processing.
Query for PLUS processing setup by organization:
SELECT clset_id,
plus_processing_type_code,
prc_type_code,
cl_version,
org_id
FROM apps.igf_sl_cl_setup
WHERE plus_processing_type_code IS NOT NULL;
Query default lender relationship and fund return method:
SELECT party_id,
relationship_cd,
fund_return_method_code,
default_flag
FROM apps.igf_sl_cl_setup
WHERE default_flag = 'Y';
Because multi-org filtering is applied automatically, callers need not bind ORG_ID explicitly; the view returns only rows belonging to the active operating unit, which simplifies both ad hoc reporting and embedded integration queries.
-
VIEW: APPS.IGF_SL_CL_SETUP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_CL_SETUP, object_name:IGF_SL_CL_SETUP, status:VALID,
-
TABLE: IGF.IGF_SL_CL_SETUP_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_CL_SETUP_ALL, object_name:IGF_SL_CL_SETUP_ALL, status:VALID,
-
View: IGF_SL_CL_SETUP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_CL_SETUP, object_name:IGF_SL_CL_SETUP, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_CL_SETUP ,
-
View: IGF_SL_CL_SETUP
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_CL_SETUP_OVRD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_CL_SETUP_OVRD_V, object_name:IGF_SL_CL_SETUP_OVRD_V, status:VALID, product: IGF - Financial Aid , description: FFELP Organization Unit Setup Override , implementation_dba_data: APPS.IGF_SL_CL_SETUP_OVRD_V ,
-
View: IGF_SL_CL_SETUP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_CL_SETUP_V, object_name:IGF_SL_CL_SETUP_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_CL_SETUP_V ,
-
View: IGF_SL_CL_SETUP_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_CL_SETUP_OVRD_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: FFELP Organization Unit Setup Override , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_SL_CL_SETUP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_CL_SETUP_V, object_name:IGF_SL_CL_SETUP_V, status:VALID,
-
VIEW: APPS.IGF_SL_CL_SETUP_OVRD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_CL_SETUP_OVRD_V, object_name:IGF_SL_CL_SETUP_OVRD_V, status:VALID,
-
APPS.IGF_SL_CL_SETUP_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_CL_SETUP_PKG
12.1.1
-
APPS.IGF_SL_CL_SETUP_PKG dependencies on IGF_SL_CL_SETUP_ALL
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,