Search Results fee_description




Overview

The view IGS_AD_APP_REQ_V belongs to the Oracle EBS IGS — Student System product family, a module that Oracle has designated as obsolete in the 12.1.1 and 12.2.2 release streams. The view presents the admission application requirement records — effectively the applicant fee and payment details captured when a prospective student submits an admission application. Its declared purpose, per the ETRM metadata, is to "show the applicant's application requirement," which in practice means exposing the fee type, fee status, fee amount, payment method, and the associated credit-card and General Ledger accounting attributes for each application requirement row.

Because the underlying IGS tables are legacy Student System objects, the view is primarily encountered in historical reporting, migration extracts, or when investigating a column such as FEE_DESCRIPTION. The ETRM metadata explicitly records "Not implemented in this database," indicating that in many 12.1.1/12.2.2 instances the view is absent or invalid, and the documented referenced base objects list is empty.

Underlying Base Objects

The view text is defined over four objects:

The single lookup table IGS_AD_CODE_CLASSES is self-joined three times to decode the fee type, fee status, and payment method code identifiers into human-readable values. The ROW_ID column is derived from AR.ROWID, and NOMINATED_COURSE_CD and SEQUENCE_NUMBER are projected as NULL placeholders.

Key Columns

Common Use Cases and Queries

The view is typically queried to report application fee collections and their accounting disposition. A representative query retrieving the fee description alongside the applicant application number is:

  • SELECT ADMISSION_APPL_NUMBER, FEE_TYPE, FEE_DESCRIPTION, FEE_STATUS, FEE_AMOUNT, FEE_DATE, PAYMENT_METHOD FROM IGS_AD_APP_REQ_V WHERE FEE_DESCRIPTION IS NOT NULL;
  • Filtering by applicant: ... WHERE PERSON_ID = :person_id ORDER BY FEE_DATE;
  • Reconciling postings: SELECT ADMISSION_APPL_NUMBER, FEE_AMOUNT, GL_DATE, GL_POSTED_DATE, POSTING_CONTROL_ID FROM IGS_AD_APP_REQ_V WHERE GL_POSTED_DATE IS NULL;

Because the module is obsolete and the view may be unimplemented, consultants should verify existence in ALL_VIEWS before relying on it and plan migration to supported student-lifecycle equivalents.