Search Results duns_servicer_id




Overview

The IGF_SL_SERVICER_V view is a Financial Aid (IGF) reporting and integration object owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes student loan servicer records — the external organizations that administer, disburse, and track federal and institutional loan funds on behalf of an institution — together with selected party-level attributes. Because servicer identifiers must be exchanged with external agencies (for example, the Common Origination and Disbursement process and Title IV reporting), the view provides a stable, denormalized read interface rather than requiring downstream consumers to join the servicer table and the institution organization hierarchy themselves.

The view is a simple, non-key-preserving join. It does not store data; all values are derived at query time from the underlying servicer and organization definitions maintained through the Financial Aid setup and organization administration forms.

Underlying Base Objects

The view is defined over two documented sources:

  • IGF_SL_SERVICER — the primary base table holding servicer setup records, including the servicer identifier, description, party reference, and enabled flag.
  • IGS_OR_INST_ORG_BASE_V — an institution organization base view supplying PARTY_NUMBER and PARTY_NAME for the organization associated with the servicer party.

The join between the two is an outer join on PARTY_ID (SRVC.PARTY_ID = ORG.PARTY_ID(+)). This construction ensures that every servicer row from IGF_SL_SERVICER is returned even when no matching institution organization record exists, with a NULL party number and name in that case. Practically, this means the view is safe to use as the single authoritative servicer list without silently dropping rows.

Key Columns

  • ROW_ID — the base table ROWID, exposed for locking or direct row addressing.
  • SERVICER_ID — the primary business identifier for the servicer.
  • DESCRIPTION — the descriptive name of the servicer.
  • DUNS_SERVICER_ID — exposed as a literal NULL in the view text. This column is a placeholder retained for interface compatibility; it is not populated from any base column and will always return NULL. Users searching on duns_servicer_id should be aware that this attribute carries no data in this view.
  • PARTY_ID — the trading community party identifier linking the servicer to the organization model.
  • ENABLED — active/inactive status flag controlling whether the servicer is selectable in Financial Aid transactions.
  • Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
  • PARTY_NUMBER, PARTY_NAME — organization identifiers sourced from the institution organization view.

Common Use Cases and Queries

Typical usage includes validating servicer setup before loan processing, populating LOVs in custom extensions, and extracting servicer reference data for downstream reporting. A standard enabled-servicer query follows:

  • SELECT servicer_id, description, party_id, party_number, party_name FROM apps.igf_sl_servicer_v WHERE enabled = 'Y' ORDER BY description;
  • SELECT servicer_id, party_name FROM apps.igf_sl_servicer_v WHERE servicer_id = :p_servicer_id;
  • SELECT COUNT(*) FROM apps.igf_sl_servicer_v WHERE party_id IS NULL; to detect servicers lacking a linked organization.

Because DUNS_SERVICER_ID is always NULL, any query filtering or joining on that column will return no data; the actual DUNS attribute, where required, must be sourced from the underlying party or organization records rather than this view.