Search Results igs_ad_txcpt_int_all




Overview

The table IGS_AD_TXCPT_INT_ALL is a data object within the Oracle E-Business Suite (EBS) Student System (IGS), specifically designated as obsolete. Its primary function is to serve as an interface table for holding transcript details. In the context of EBS architecture, interface tables are typically used as staging areas for data being loaded from external systems or legacy applications before being validated and processed into the core transactional tables. Given its "ALL" suffix and the provided metadata, this table is structured to support a multi-organization architecture, storing data partitioned by operating unit. However, a critical note from the documentation states it is "Not implemented in this database," indicating that while the table definition exists, it may not be populated or actively used in a standard deployment of EBS 12.1.1 or 12.2.2.

Key Information Stored

Based on its description and standard interface table patterns, IGS_AD_TXCPT_INT_ALL would hold raw transcript data awaiting processing. The central column is INTERFACE_TRANSCRIPT_ID, which serves as the primary key for each unique record loaded into the interface. While the full column list is not provided, typical data stored in such a table would include student identifiers, course or program codes, grades, credit hours, institution details, and the date of the transcript. The table would also contain control columns common to interface tables, such as a PROCESS_STATUS flag (e.g., 'PENDING', 'ERROR', 'PROCESSED'), ERROR_MESSAGE text for failed validations, and CREATION_DATE. The "ALL" suffix implies the presence of an ORG_ID column to identify the operating unit.

Common Use Cases and Queries

The primary use case for this table would be the batch loading of academic transcript data from an external student information system into Oracle EBS. A data conversion or integration program would insert records into this interface table. A subsequent concurrent program would then validate this data against EBS setup tables (e.g., students, courses, grading schemes) and transfer successful records to the base transactional tables, updating the process status. Common queries would focus on monitoring the interface load's progress and troubleshooting errors.

  • Monitoring pending records: SELECT COUNT(*), ORG_ID FROM IGS_AD_TXCPT_INT_ALL WHERE PROCESS_STATUS = 'PENDING' GROUP BY ORG_ID;
  • Reviewing error records: SELECT INTERFACE_TRANSCRIPT_ID, ERROR_MESSAGE FROM IGS_AD_TXCPT_INT_ALL WHERE PROCESS_STATUS = 'ERROR';

Related Objects

The most directly related object is the primary key constraint, IGS_AP_TXCPT_INT_PK, on the INTERFACE_TRANSCRIPT_ID column. This table is logically related to the core transactional table(s) for finalized transcript data within the IGS product, which would likely have a name such as IGS_AD_TXCPT_ALL (without the _INT_ infix). It would also relate to setup tables for students (IGS_PE_PERSON), academic structures (IGS_PS_UNIT), and grading schemas. Given its obsolete status and non-implementation, dependencies from other application objects like views or public APIs are expected to be minimal or non-existent in standard installations.