Search Results igsfv_student_prg_transfers




Overview

IGSFV_STUDENT_PRG_TRANSFERS is a read-only Oracle E-Business Suite view belonging to the IGS (Student System) product family. Within the ETRM documentation it is classified under the notation "IGS - Student System (Obsolete)," indicating that the object originates from the legacy Student System data model and is not implemented in current 12.1.1 / 12.2.2 environments. Its stated purpose is to expose "the student program attempt transfers" — that is, records in which a student's prior or external program attempt is recognized as a transfer against a program of study.

The view is not a stored table. The ETRM entry explicitly records "Not implemented in this database," and the referenced base objects list is empty. This means the view is documented as part of the historical IGS schema but is absent from the shipped database. Consequently it plays no active role in current reporting or integration; its value is as a reference artefact for understanding the structure and relationships that existed in the legacy Student System.

Underlying Base Objects

Although the ETRM metadata records no referenced base objects, the documented view text defines the joins unambiguously. The view is built over seven underlying objects:

The final clause "WITH READ ONLY" confirms the view's non-updatable character.

Key Columns

The projected column list combines transfer attributes, party information, program titles, and audit fields:

Common Use Cases and Queries

In legacy implementations this view supported student transfer reporting, credit recognition checks, and integration extracts into downstream records. Because the object is not implemented in 12.1.1 or 12.2.2, queries against it will fail with an "object does not exist" error and are presented here only illustratively.

A typical listing of transfers for a student:

  • SELECT person_number, person_name, program_code, transfer_program_code, transfer_date, status_flag FROM igsfv_student_prg_transfers WHERE person_id = :p_person_id;

Extracting approved transfers for a term:

  • SELECT program_code, transfer_program_code, transfer_date, effective_term_cal_desc FROM igsfv_student_prg_transfers WHERE approved_date IS NOT NULL AND effective_term_cal_type = :cal_type AND effective_term_sequence_num = :seq;

Summarizing advanced standing transfers:

  • SELECT transfer_program_code, COUNT(*) FROM igsfv_student_prg_transfers WHERE transfer_adv_stand_flag = 'Y' GROUP BY transfer_program_code;

For current environments, equivalent functionality must be sourced from the supported Student System tables, since this documented view remains only as a historical reference in the ETRM catalogue.