Search Results igs_pe_vst_hist_int




Overview

IGS_PE_VST_HIST_INT is the interface (staging) table for the IGS_PE_VISIT_HISTRY entity within the Oracle EBS Student System (IGS) product module. It exists to receive and validate inbound records describing a person's visit history — typically entry/exit events associated with visas, ports of entry, and country entry forms — before those records are processed into their final destination tables. Like other IGS performance and person interface tables, it acts as a transient landing zone that supports bulk data loads, concurrent program-based imports, and error handling for rejected rows.

From a heuristic Data Vault classification, this table is modeled as a standalone satellite — it is heavily descriptive, carries no foreign key relationships to parent hubs beyond its interface reference to IGS_PE_VISA_INT, and is anchored by a single surrogate key. The metadata indicates it does not participate in a link structure, so it is best modeled as a satellite recording visit-history attributes keyed by its own identifier.

Key Information Stored

The table contains 43 documented physical columns. The most significant are:

Common Use Cases and Queries

Typical uses include loading external visit-history extracts, monitoring import errors, and reconciling staged rows against the base IGS_PE_VISIT_HISTRY table. A common validation query identifies failed rows:

  • SELECT interface_visit_history_id, status, error_code FROM igs.igs_pe_vst_hist_int WHERE status = 'ERROR';
  • SELECT interface_visit_history_id, port_of_entry, visit_start_date, visit_end_date FROM igs.igs_pe_vst_hist_int WHERE match_ind = 'N';
  • Joining to the visa interface to enrich reporting: SELECT h.*, v.* FROM igs.igs_pe_vst_hist_int h, igs.igs_pe_visa_int v WHERE h.interface_visa_id = v.interface_visa_id;

Reporting scenarios commonly track rows by INTERFACE_RUN_ID or REQUEST_ID to audit a specific concurrent import run.

Related Objects

  • IGS_PE_VISA_INT — referenced via INTERFACE_VISA_ID; the immediate parent interface record.
  • IGS_PE_VISIT_HISTRY — the base (non-interface) table this staging table ultimately populates.
  • IGS_PE_VST_HIST_INT_PK — the primary key index enforcing uniqueness on INTERFACE_VISIT_HISTRY_ID.
  • IGS person/visa import concurrent programs that consume rows from this table and write the processed results forward.
  • Related IGS interface tables sharing the ATTRIBUTE and PROGRAM_* audit pattern, useful for consistent error-reporting queries.