Search Results duns_recip_id
Overview
IGF_SL_RECIPIENT_ALL_V is a consolidated Oracle EBS view owned by the APPS schema and defined within the Oracle Financials for the United States (IGF) product family — specifically the Student Loan (SL) module. It presents a uniform, denormalized list of all payment or disbursement recipients known to the Student Loan subsystem: lenders, guarantors, and servicers. Rather than forcing a reporting layer to query three separate master tables, the view unions them into a single result set with a consistent column profile, distinguished by the RECIPIENT_TYPE discriminator column.
The name is descriptive: "SL" denotes Student Loan, and "RECIPIENT_ALL" denotes a union of every recipient category. In EBS 12.1.1 and 12.2.2 the view is typically consumed by reports, extracts, and integration interfaces that need to enumerate or validate recipient records across all entity types — for example, to build a picklist of valid lenders, guarantors, and servicers, or to reconcile recipient configuration before loan processing runs. Because it is a view rather than a table, it holds no data of its own and always reflects the current state of its base tables.
Underlying Base Objects
The view is a UNION ALL of three legs over five base tables:
- IGF_SL_LENDER and IGF_SL_LENDER_BRC — joined with an outer join (LENDER_ID = LENDER_ID(+)) to produce type 'LND' rows. Optional branch records supply branch-level identifiers and descriptions.
- IGF_SL_GUARANTOR — queried directly to produce type 'GUARN' rows. No branch table is joined, so branch-related columns are populated with blank strings.
- IGF_SL_SERVICER and IGF_SL_SERVICER_BRC — joined with an outer join (SERVICER_ID = SERVICER_ID(+)) to produce type 'SRVC' rows.
Notably, the guarantor leg exposes only the GUARANTOR_ID column (aliased as the shared identifier) and supplies empty literals for the branch columns. The outer joins ensure that a lender, servicer, or branch-less entity still appears even when no BRC (branch) row exists.
Key Columns
- LENDER_ID / GUARANTOR_ID / SERVICER_ID — the first column of the union, aliased consistently across legs. This is the primary identifier for the recipient. For guarantors, this is the column the user's search term "guarantor_id" refers to.
- RECIPIENT_TYPE — a literal discriminator: 'LND' for lender, 'GUARN' for guarantor, 'SRVC' for servicer.
- Description columns (LEND_DESCRIPTION, DESCRIPTION, SRVC_DESCRIPTION) — the human-readable recipient name.
- DUNS identifiers (DUNS_LENDER_ID, DUNS_GUARNT_ID, DUNS_SERVICER_ID) — external D-U-N-S numbers used for party identification and interfaces.
- Enabled flags (LEND_ENABLED, ENABLED, SRVC_ENABLED) — whether the recipient is active and selectable.
- BRC columns (LEND_NON_ED_BRC_ID, BRC_DESCRIPTION, BRC_ENABLED) — branch-specific data, populated for lenders and servicers and blank for guarantors.
Common Use Cases and Queries
The view supports recipient lookup and downstream interface population. A typical reporting query filters by type:
- Enumerate all guarantors:
SELECT GUARANTOR_ID, DESCRIPTION FROM APPS.IGF_SL_RECIPIENT_ALL_V WHERE RECIPIENT_TYPE = 'GUARN'; - List every active recipient across categories:
SELECT RECIPIENT_TYPE, LENDER_ID, DESCRIPTION, ENABLED FROM APPS.IGF_SL_RECIPIENT_ALL_V WHERE ENABLED = 'Y'; - Resolve a recipient by DUNS number:
SELECT RECIPIENT_TYPE, DESCRIPTION FROM APPS.IGF_SL_RECIPIENT_ALL_V WHERE DUNS_LENDER_ID = :duns OR DUNS_GUARNT_ID = :duns OR DUNS_SERVICER_ID = :duns;
Because the view performs UNION ALL without DISTINCT filtering, duplicate recipients can appear if a base entity is repeated. Queries should apply RECIPIENT_TYPE and ENABLED predicates to restrict results, and joins should use the unified ID column appropriate to the type.
-
VIEW: APPS.IGF_SL_RECIPIENT_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_RECIPIENT_ALL_V, object_name:IGF_SL_RECIPIENT_ALL_V, status:VALID,
-
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,
-
View: IGF_SL_RECIPIENT_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_RECIPIENT_ALL_V, object_name:IGF_SL_RECIPIENT_ALL_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_RECIPIENT_ALL_V ,
-
View: IGF_SL_RECIPIENT_ALL_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
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_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: 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: 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_DTLS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: 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: IGF_SL_LOR
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
PACKAGE BODY: APPS.IGF_SL_REJ_WF
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,
-
APPS.IGF_SL_LAR_CREATION SQL Statements
12.1.1
-
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,
-
APPS.IGF_SL_DL_PRINT_PNOTE 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,
-
PACKAGE BODY: APPS.IGF_SL_DL_ORIG_ACK
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_PRINT_PNOTE
12.1.1
-
APPS.IGF_SL_DL_LI_IMP_PKG SQL Statements
12.1.1
-
APPS.IGF_SL_DL_ORIG_ACK SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_PRINT_MANIFEST
12.1.1
-
Lookup Type: IGF_SL_LOAN_FIELDS
12.2.2
product: IGF - Financial Aid (Obsolete) , meaning: Loan Fields , description: Loan Fields ,
-
Lookup Type: IGF_SL_LOAN_FIELDS
12.1.1
product: IGF - Financial Aid , meaning: Loan Fields , description: Loan Fields ,
-
APPS.IGF_SL_CL_LI_IMP_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_CHG_ACK
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_PNOTE_ACK
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_ORIG
12.1.1
-
APPS.IGF_SL_CL_ORIG_ACK SQL Statements
12.1.1
-
APPS.IGF_SL_CL_ORIG_ACK dependencies on IGF_SL_LOR_LOC
12.1.1
-
APPS.IGF_SL_DL_CHG_ACK dependencies on IGF_SL_LOR_LOC
12.1.1
-
APPS.IGF_SL_CL_LI_IMP_PKG dependencies on IGF_SL_LOR_LOC_ALL
12.1.1
-
APPS.IGF_SL_DL_CHG_ACK dependencies on IGF_SL_LOR
12.1.1
-
APPS.IGF_SL_DL_ORIG_ACK dependencies on IGF_SL_LOR_LOC
12.1.1
-
APPS.IGF_SL_DL_LI_IMP_PKG dependencies on IGF_SL_LOR_LOC_ALL
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_LAR_CREATION
12.1.1
-
APPS.IGF_SL_DL_ORIG dependencies on IGF_SL_LOR_LOC
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_CHG_ORIG
12.1.1
-
APPS.IGF_SL_DL_ORIG_ACK dependencies on IGF_SL_LOR
12.1.1