Search Results igs_ad_txcpt_int
Overview
The view IGS_AD_TXCPT_INT is a critical interface object within the Oracle E-Business Suite (EBS) Student System (IGS), specifically for versions 12.1.1 and 12.2.2. It serves as a direct interface view onto the underlying table IGS_AD_TXCPT_INT_ALL, which is designed to hold incoming transcript data during batch import or integration processes. Its primary role is to facilitate the transfer and validation of external academic records into the core student information system. The view provides a structured representation of transcript details, including calculated and converted grade point averages (GPAs), which are essential for admissions evaluation, credit transfer, and academic history management. The metadata indicates this view is a key component for processing interfaced transcript data before it is formally accepted into the production transactional tables.
Key Information Stored
The view contains columns that capture the full lifecycle and details of an interfaced transcript record. Key columns include identifiers like TRANSCRIPT_ID and INTERFACE_TRANSCRIPT_ID, and descriptive attributes such as TRANSCRIPT_TYPE, STATUS, and DATE_OF_RECEIPT. Crucially for the user's search context of "conv_gpa", the view stores both raw and processed academic metrics. The ENTERED_GPA and ENTERED_GS_ID columns hold the GPA value and grading schema as submitted, while the CONV_GPA and CONV_GS_ID columns store the institutionally standardized or converted equivalents. Additional columns support class ranking analysis (RANK_IN_CLASS, CLASS_SIZE, PERCENTILE_RANK) and system audit controls (CREATED_BY, LAST_UPDATE_DATE, ORG_ID). The MATCH_IND and ERROR_CODE fields are pivotal for tracking the success of the interface matching and validation processes.
Common Use Cases and Queries
A primary use case is monitoring the status of batch transcript imports to identify records pending processing, those with errors, or those successfully matched to a student. Analysts often query this view to audit GPA conversions or investigate data quality issues. Common SQL patterns include filtering by status to find records in error, joining to student tables via interface keys, or comparing entered versus converted GPA values for reporting.
- Identifying records with conversion errors:
SELECT * FROM IGS_AD_TXCPT_INT WHERE STATUS = 'ERROR' AND ERROR_CODE IS NOT NULL; - Reviewing GPA conversions for a specific grading schema:
SELECT TRANSCRIPT_ID, ENTERED_GPA, CONV_GPA, ENTERED_GS_ID, CONV_GS_ID FROM IGS_AD_TXCPT_INT WHERE ENTERED_GS_ID = 'US_4.0'; - Monitoring unprocessed interface records:
SELECT COUNT(*), TRANSCRIPT_STATUS FROM IGS_AD_TXCPT_INT WHERE STATUS IS NULL GROUP BY TRANSCRIPT_STATUS;
Related Objects
The most directly related object is the base table IGS_AD_TXCPT_INT_ALL, from which this view selects all columns. The view is intrinsically linked to the overall Admissions (IGS_AD) module's data flow. It likely feeds or is processed by concurrent programs or APIs that validate and transfer data into core transactional tables such as those storing final student academic history (e.g., IGS_AD_ACADHIS). The presence of PROGRAM_ID, PROGRAM_APPLICATION_ID, and REQUEST_ID columns suggests integration with standard EBS concurrent request and program tracking mechanisms. The INTERFACE_ACADHIS_ID column indicates a relationship with the broader academic history interface structure.
-
View: IGS_AD_TXCPT_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_TXCPT_INT
12.2.2
product: IGS - Student System (Obsolete) , description: Holds transcript details. , implementation_dba_data: Not implemented in this database ,