Search Results create_reason




Overview

The IGSFV_EXCHANGE_VISITORS view is a read-only reporting object in the Oracle E-Business Suite Student System (IGS) product. It presents information about persons entering an institution as exchange visitors, consolidating data from the exchange visitor form records maintained in the base tables. The view is owned by the APPS schema and is defined over IGS_PE_EV_FORM joined to HZ_PARTIES, giving both the regulatory exchange visitor form details and the party (person) identifier. Because the view is defined WITH READ ONLY, it is intended strictly for querying, reporting, and integration extraction rather than for data manipulation.

The view carries a notable characteristic: several columns are not delivered as raw lookup codes. Instead, the SELECT list substitutes literal descriptive expressions such as '_LA:PEV.FORM_STATUS:IGS_LOOKUP_VALUES:PE_SV_FM_STAT_TYPE:MEANING'. These pseudo-columns are resolved at runtime by the ETRM/Oracle EBS localization and lookup architecture, which translates the stored code value into its lookup meaning for the target language. The same mechanism applies to REPRINT_REASON, POSITION_CODE, SUBJECT_FIELD_CODE, MATRICULATION, and CATEGORY_CODE.

Underlying Base Objects

Although the ETRM 12.2.2 metadata records "referenced base objects: none documented," the view text supplied for 12.1.1/12.2.2 explicitly identifies two sources:

  • IGS_PE_EV_FORM PEV — the primary driving table holding the exchange visitor form records, including the funded amounts, program dates, reason codes, and form identifiers.
  • HZ_PARTIES HZP — the Trading Community Architecture party table, joined on PEV.PERSON_ID = HZP.PARTY_ID to supply PARTY_NUMBER and to guarantee the record resolves to a valid party.

The join is an equi-join on person/party identifier, and the view is exposed WITH READ ONLY. This structure means each row of IGSFV_EXCHANGE_VISITORS corresponds to one exchange visitor form instance for one party.

Key Columns

Common Use Cases and Queries

The view is typically queried for reporting on exchange visitor programme participants, financial resource declarations, and audit of form creation or reprint activity. A representative query filtering on the creation reason and listing funding totals is:

  • SELECT ev_form_number, party_number, person_id, create_reason, prgm_start_date, prgm_end_date, personal_funds_amt, prgm_sponsor_amt FROM igsfv_exchange_visitors WHERE create_reason = :reason;
  • SELECT party_number, ev_form_number, "_LA:FORM_STATUS" FROM igsfv_exchange_visitors WHERE is_valid = 'Y';

Because several columns are lookup-resolved expression columns, their aliases must be quoted in SQL, and consumers should reference them exactly as exposed. The view is suitable for BI Publisher reports, extracts, and inbound interface validation, but not for DML given its read-only definition.