Search Results igs_re_thesis_exam
Overview
The IGS_RE_THESIS_EXAM table is a core data entity within the Oracle E-Business Suite Student System (IGS) module, specifically designed to manage the examination process for student theses. It functions as the central repository for recording and tracking each distinct examination event associated with a thesis submission. The table's primary role is to store the examination metadata, including its type, result, panel composition, and logistical tracking information. It serves as a critical junction point, linking a specific thesis record to its examination outcomes and the administrative actions taken throughout the evaluation process. Its implementation is consistent across major EBS releases, including versions 12.1.1 and 12.2.2.
Key Information Stored
The table's structure is defined by a composite primary key and several foreign key relationships that enforce data integrity. The primary key uniquely identifies an examination record by combining the student's PERSON_ID, the CA_SEQUENCE_NUMBER (likely identifying a course attempt), the THES_SEQUENCE_NUMBER (identifying the specific thesis submission), and the CREATION_DT of the exam record. Beyond these identifiers, key columns store the examination's classification and outcome. The THESIS_EXAM_TYPE categorizes the examination (e.g., initial defense, final review). The THESIS_RESULT_CD stores the final outcome code of the examination. The THESIS_PANEL_TYPE indicates the structure of the evaluating committee, while the TRACKING_ID links to a corresponding item in the tracking system (IGS_TR_ITEM_ALL) for workflow and correspondence management.
Common Use Cases and Queries
This table is central to reporting and process automation for graduate studies administration. Common use cases include generating examination schedules, tracking the status and results of thesis defenses, and managing examiner panel assignments. A typical reporting query would join this table to the thesis master (IGS_RE_THESIS_ALL) and related code tables to produce a list of examinations with their results.
Sample Query Pattern:
SELECT tre.person_id, tre.thesis_exam_type, tre.thesis_result_cd, tre.creation_dt
FROM igs_re_thesis_exam tre
JOIN igs_re_thesis_all tra ON tre.person_id = tra.person_id
AND tre.ca_sequence_number = tra.ca_sequence_number
AND tre.the_sequence_number = tra.the_sequence_number
WHERE tre.thesis_result_cd IS NULL; -- To find pending examinations
Related Objects
The IGS_RE_THESIS_EXAM table is deeply integrated into the Student System's data model through documented foreign key relationships.
- Referenced Objects (Foreign Keys):
- IGS_RE_THS_EXAM_TYPE: Validates the THESIS_EXAM_TYPE column.
- IGS_RE_THESIS_ALL: Validates the thesis identifier (PERSON_ID, CA_SEQUENCE_NUMBER, THE_SEQUENCE_NUMBER).
- IGS_RE_THESIS_RESULT_ALL: Validates the THESIS_RESULT_CD column.
- IGS_RE_THS_PNL_TYPE: Validates the THESIS_PANEL_TYPE column.
- IGS_TR_ITEM_ALL: Validates the TRACKING_ID for workflow integration.
- Referencing Objects (Child Tables):
- IGS_RE_THS_PNL_MBR: This table references IGS_RE_THESIS_EXAM to store the individual members assigned to the examination panel, linking via the primary key columns (CA_PERSON_ID, CA_SEQUENCE_NUMBER, THE_SEQUENCE_NUMBER, CREATION_DT).
-
Table: IGS_RE_THESIS_EXAM
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_RE_THESIS_EXAM, object_name:IGS_RE_THESIS_EXAM, status:VALID, product: IGS - Student System , description: This entity describes the thesis examination and its actions , implementation_dba_data: IGS.IGS_RE_THESIS_EXAM ,
-
Table: IGS_RE_THS_EXAM_TYPE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_RE_THS_EXAM_TYPE, object_name:IGS_RE_THS_EXAM_TYPE, status:VALID, product: IGS - Student System , description: This table describes the type of thesis examination which can be undertaken. eg. Written, performance, oral. , implementation_dba_data: IGS.IGS_RE_THS_EXAM_TYPE ,
-
Table: IGS_RE_THS_PNL_MBR
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_RE_THS_PNL_MBR, object_name:IGS_RE_THS_PNL_MBR, status:VALID, product: IGS - Student System , description: This entity describes the selected members of a thesis panel. , implementation_dba_data: IGS.IGS_RE_THS_PNL_MBR ,
-
Table: IGS_RE_THS_PNL_TYPE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_RE_THS_PNL_TYPE, object_name:IGS_RE_THS_PNL_TYPE, status:VALID, product: IGS - Student System , description: This table describes the types of thesis panels which can be used for thesis examinations. , implementation_dba_data: IGS.IGS_RE_THS_PNL_TYPE ,
-
Table: IGS_RE_THESIS_RESULT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_RE_THESIS_RESULT_ALL, object_name:IGS_RE_THESIS_RESULT_ALL, status:VALID, product: IGS - Student System , description: This table describes the available thesis result codes which can be attributed to panel members, examinations or as final outcomes against a thesis. , implementation_dba_data: IGS.IGS_RE_THESIS_RESULT_ALL ,
-
Table: IGS_RE_THESIS_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_RE_THESIS_ALL, object_name:IGS_RE_THESIS_ALL, status:VALID, product: IGS - Student System , description: This entity describes the thesis details for a research student. , implementation_dba_data: IGS.IGS_RE_THESIS_ALL ,
-
View: IGS_RE_THESIS_EXAM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_RE_THESIS_EXAM_V, object_name:IGS_RE_THESIS_EXAM_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_RE_THESIS_EXAM_V ,
-
Table: IGS_TR_ITEM_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_TR_ITEM_ALL, object_name:IGS_TR_ITEM_ALL, status:VALID, product: IGS - Student System , description: Describes each occurrence of a tracking process for a particular student. , implementation_dba_data: IGS.IGS_TR_ITEM_ALL ,