Search Results igr_is_testseg
Overview
The IGR_IS_TESTSEG table is a core data object within the Oracle E-Business Suite (EBS) Student System (IGS). It functions as a staging table, specifically designed to hold inquiry test segment data processed through the Self Service application layer. Its primary role is to temporarily store detailed, segmented components of standardized tests (such as SAT, ACT, or GRE sections) that are submitted by prospective students or applicants via the self-service portal. This staging mechanism allows for data validation and processing before the information is formally integrated into the student information system, ensuring data integrity within the admissions and recruitment modules of Oracle EBS releases 12.1.1 and 12.2.2.
Key Information Stored
The table's structure is centered on managing the relationship between a parent inquiry test record and its constituent segments. The documented primary key, INQ_TEST_SEG_ID, uniquely identifies each test segment record. A critical foreign key column is INQ_TEST_ID, which links each segment row to its corresponding parent test record in the related IGR_IS_TEST table. While specific column details beyond the keys are not provided in the excerpt, typical data stored would include segment or section identifiers (e.g., "Verbal," "Quantitative"), corresponding scores, percentile rankings, and potentially the date the segment was taken. This segmented storage allows for granular analysis of an applicant's test performance.
Common Use Cases and Queries
This table is central to processing and reporting on self-service academic test submissions. Common operational use cases include the batch validation of incoming test data from external portals and the subsequent population of official student testing profiles. For reporting, admissions officers may query this table to analyze the distribution of scores for specific test sections across an applicant pool. A typical SQL pattern involves joining to the parent test table to retrieve a complete testing profile for an inquiry or applicant.
SELECT seg.*, t.inquiry_id, t.test_type
FROM igs.igr_is_testseg seg,
igs.igr_is_test t
WHERE seg.inq_test_id = t.inq_test_id
AND t.inquiry_id = :p_inquiry_id;
Data from this table may also feed into admissions dashboards and eligibility reports where segmented score requirements are enforced.
Related Objects
The IGR_IS_TESTSEG table has a direct and documented dependency relationship within the IGS schema, as per the provided metadata.
- Primary Key Constraint: IGR_IS_TESTSEG_PK on the column INQ_TEST_SEG_ID.
- Foreign Key Relationship (This table references): The table IGR_IS_TESTSEG contains a foreign key column, INQ_TEST_ID, which references the primary key of the IGR_IS_TEST table. This establishes a parent-child relationship where IGR_IS_TEST holds the header test information, and IGR_IS_TESTSEG stores the detailed segments for that test.
This relationship is fundamental, indicating that every test segment must be associated with a valid, pre-existing inquiry test record. Integration or data migration scripts must respect this referential integrity constraint.
-
Table: IGR_IS_TESTSEG
12.2.2
product: IGS - Student System (Obsolete) , description: Holds Self Service Staging Inquiry Test Segments , implementation_dba_data: Not implemented in this database ,
-
Table: IGR_IS_TEST
12.2.2
product: IGS - Student System (Obsolete) , description: Holds Self Service Staging Inquiry Test records , implementation_dba_data: Not implemented in this database ,