Search Results interface_eit_id




Overview

IGS.IGS_PE_EIT_INT is the interface staging table used by Oracle E-Business Suite to import permanent resident extra information for person records. It is an open interface table that temporarily holds extra information attributes — such as Country of Physical Residence, State of Residence, and Citizenship/Residency Status — before that data is validated and transferred into the permanent destination table, IGS_PE_EIT. The table belongs to the IGS product (Student Systems / Person extra information architecture) and carries the FND Design Data reference IGS.IGS_PE_EIT_INT.

The object is scoped as public, has an active lifecycle, and is classified as a business entity associated with HZ_PERSON. It resides in the APPS_TS_INTERFACE tablespace with PCT Free 10, which is consistent with its role as a high-throughput staging table rather than a long-term transactional store.

The heuristic Data Vault classification mined from its foreign-key structure is standalone. In modeling terms, this suggests the interface table should be treated as an independent staging entity rather than as a hub, link, or satellite; it does not participate in the core Data Vault relationships and instead serves as a landing zone whose rows are consumed by downstream processing.

Key Information Stored

The table contains 24 documented physical columns. The most consequential are:

Common Use Cases and Queries

Typical usage centers on loading extra information, monitoring interface status, and diagnosing errors before the data is pushed to IGS_PE_EIT.

To inspect pending and errored rows for a given interface run:

  • SELECT INTERFACE_EIT_ID, INTERFACE_ID, INFORMATION_TYPE, STATUS, ERROR_CODE FROM IGS.IGS_PE_EIT_INT WHERE INTERFACE_RUN_ID = :run_id AND STATUS IN (3,4);
  • SELECT INFORMATION_TYPE, PEI_INFORMATION1, PEI_INFORMATION2 FROM IGS.IGS_PE_EIT_INT WHERE INTERFACE_ID = :interface_id;
  • SELECT STATUS, COUNT(*) FROM IGS.IGS_PE_EIT_INT GROUP BY STATUS;

These patterns support reconciliation reporting, error triage, and confirmation that all staged rows have reached Completed status.

Related Objects

  • IGS.IGS_PE_EIT — The destination table receiving validated rows from this interface.
  • IGS_PE_PERSON_INT — The parent person interface table; related through INTERFACE_ID.
  • HZ_PERSON — The business entity the imported extra information ultimately attaches to.
  • FND_CONCURRENT_REQUESTS — Joined via REQUEST_ID for concurrent program tracking.
  • FND_CONCURRENT_PROGRAMS — Joined via PROGRAM_ID and PROGRAM_APPLICATION_ID.

These relationships reflect the documented column structure and the standard concurrent processing framework used across IGS interface tables.