Search Results igs_pe_res_dtls_int




Overview

The IGS_PE_RES_DTLS_INT table is an interface entity within the Oracle E-Business Suite (EBS) Student System (IGS) module, which is now marked as obsolete. Its primary role is to act as a staging area for residency detail information pertaining to a person before this data is formally imported into the core transactional tables of the application. As an interface table, it facilitates batch data loading processes, allowing for data validation and transformation prior to final integration. The provided metadata explicitly states it is "Not implemented in this database," indicating it may be a standard object defined by Oracle but not deployed or actively used in all EBS 12.1.1 or 12.2.2 instances.

Key Information Stored

While the specific column list is not detailed in the provided excerpt, the table's structure is defined by its primary and foreign keys. The primary key column, INTERFACE_RES_ID, uniquely identifies each residency detail record within the interface. A critical foreign key column is INTERFACE_ID, which links each residency detail record to a parent record in the IGS_AD_INTERFACE_ALL table. This relationship suggests that residency details are part of a larger person or admission data interface process. Typically, such an interface table would also contain columns for the core residency attributes (e.g., residency type, effective dates, country, state) and control columns for the import process (e.g., status, error message).

Common Use Cases and Queries

The principal use case for this table is the batch import of person residency information, often from external systems like a student portal or legacy database. Data would be inserted into this interface table via a custom program or SQL*Loader, after which a standard Oracle concurrent program would validate and transfer the data. Common queries would focus on monitoring the interface process. For example, to find pending or errored residency records, one might use a query such as: SELECT * FROM IGS_PE_RES_DTLS_INT int_res JOIN IGS_AD_INTERFACE_ALL int ON int.interface_id = int_res.interface_id WHERE int.status = 'PENDING';. Reporting directly from this table is atypical, as its purpose is transient data staging.

Related Objects

The documented relationships for IGS_PE_RES_DTLS_INT are exclusively with the IGS_AD_INTERFACE_ALL table, based on the provided foreign key metadata. The table references IGS_AD_INTERFACE_ALL twice via the same INTERFACE_ID column. This indicates a strong dependency where each residency detail interface record must be associated with a master interface control record. The primary key constraint IGS_PE_RES_DTLS_INT_PK ensures data integrity within the interface itself. Given its obsolete module status and interface nature, it is not expected to be referenced by other core application tables or views, which would instead use the definitive residency tables populated after a successful import.