Search Results igf_sl_rep_stdnt_v




Overview

IGF_SL_REP_STDNT_V is a reporting view within the Oracle E-Business Suite Financial Aid module (IGF), historically associated with the Direct Loan processing subsystem. Its documented purpose is to supply the data required to populate the Student tag in the outbound XML payload transmitted to the Common Origination and Disbursement (COD) system for Direct Loan origination and disbursement. In the context of Oracle EBS 12.1.1 and 12.2.2, this view represents a presentation-layer construct that flattens and formats student-level demographic and permanent-address attributes so that the outbound XML generation process can consume a single, pre-formatted result set rather than joining multiple base tables at runtime.

The view is catalogued under the IGF - Financial Aid product, which is marked obsolete in later releases. As a consequence, it is typically absent from fresh 12.1.1 and 12.2.2 installations, and the ETRM metadata explicitly records "Not implemented in this database." Its presence is therefore generally limited to legacy environments that were upgraded from earlier Financial Aid implementations and in which Direct Loan processing remained configured.

Underlying Base Objects

The ETRM metadata documents no referenced base objects, but the view text embedded in the definition clearly identifies a single source object: IGF_SL_LOR_LOC_ALL. All columns projected by the view are drawn from this table, and the query applies a GROUP BY clause over every projected expression, effectively producing a distinct set of student records. The reliance on a single base table simplifies lineage analysis, though the absence of documented foreign-key relationships means that join semantics to student, person, or address entities must be inferred from the underlying Financial Aid data model.

Because the view is not instantiated as a physical object in many databases, DBAs should verify its existence with a query against ALL_VIEWS before attempting to reference it in custom reports or concurrent programs.

Key Columns

The view exposes a broad set of student identity, address, and eligibility attributes. Notable columns include:

All textual columns are wrapped in TRIM to remove padding, ensuring clean values in the outbound XML.

Common Use Cases and Queries

The primary use case is extraction of Student-tag data for Direct Loan outbound XML. A typical query filtering on the permanent city would be:

  • SELECT base_id, s_ssn, s_last_name, s_first_name, s_permt_city, s_permt_state FROM igf_sl_rep_stdnt_v WHERE s_permt_city = 'BOSTON';
  • SELECT base_id, s_permt_city, s_permt_zip FROM igf_sl_rep_stdnt_v WHERE s_permt_state = 'MA' ORDER BY s_permt_city;
  • SELECT COUNT(*) FROM igf_sl_rep_stdnt_v WHERE s_permt_city IS NULL; — used to identify records that would produce an empty XML tag.

Because the view is obsolete in 12.1.1 and 12.2.2, any query must be validated against the specific instance; where the view is absent, equivalent logic must be reconstructed directly from IGF_SL_LOR_LOC_ALL.