Search Results igs_tr_status_pk
Overview
The IGS_TR_STATUS table is a core data entity within the Oracle E-Business Suite (EBS) Student System (IGS), specifically designed for tracking functionality. As indicated in the ETRM documentation, its primary role is to store user-defined tracking statuses. These user-defined statuses are not arbitrary; they are mapped back to a set of system-defined tracking statuses that are recognized and processed by the underlying application logic. This mapping allows for flexible, institution-specific labeling of tracking states while ensuring system functionality operates correctly against a consistent internal status framework. It is critical to note that the provided metadata explicitly labels the IGS Student System module as "Obsolete," indicating this table pertains to a legacy component of Oracle EBS.
Key Information Stored
The central data element stored in this table is the tracking status itself. Based on the documented primary key, the most critical column is TRACKING_STATUS, which uniquely identifies each status record. While the provided metadata does not list additional columns, typical design patterns for such a reference table would suggest the presence of descriptive columns (e.g., DESCRIPTION), columns to manage the mapping to the internal system status, and standard WHO columns for auditing (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE). The integrity of the TRACKING_STATUS column is enforced by the primary key constraint IGS_TR_STATUS_PK.
Common Use Cases and Queries
The primary use case for the IGS_TR_STATUS table is to serve as a reference lookup for the valid statuses that can be applied to tracked items within the Student System. It enables the configuration and maintenance of institutional tracking workflows. Common operational and reporting queries would involve joining this table to the main tracking item table to translate status codes into meaningful descriptions. A fundamental query pattern would be:
- Listing All Configured Tracking Statuses:
SELECT tracking_status, description FROM igs_tr_status ORDER BY tracking_status; - Reporting on Tracking Items with Status Description: This involves joining to the related
IGS_TR_ITEM_ALLtable:SELECT iti.tracking_id, iti.tracking_status, its.description FROM igs_tr_item_all iti, igs_tr_status its WHERE iti.tracking_status = its.tracking_status;
Related Objects
The IGS_TR_STATUS table has a defined parent-child relationship within the EBS data model, as documented in the foreign key metadata. It is referenced as a foreign key by the primary transactional table for tracking items.
- IGS_TR_ITEM_ALL: This is the primary table that references IGS_TR_STATUS. The foreign key constraint ensures that every
TRACKING_STATUSvalue inIGS_TR_ITEM_ALLmust exist in theIGS_TR_STATUStable. The specific join column isIGS_TR_ITEM_ALL.TRACKING_STATUSreferencingIGS_TR_STATUS.TRACKING_STATUS.
This relationship establishes IGS_TR_STATUS as a validated reference source for all status values used on tracking item records, enforcing data integrity across the tracking module.
-
Table: IGS_TR_STATUS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_TR_STATUS, object_name:IGS_TR_STATUS, status:VALID, product: IGS - Student System , description: This entity describes the user-defined tracking statuses. These map back to the system-defined tracking statuses which are recognized by system functionality. , implementation_dba_data: IGS.IGS_TR_STATUS ,
-
Table: IGS_TR_STATUS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the user-defined tracking statuses. These map back to the system-defined tracking statuses which are recognized by system functionality. , implementation_dba_data: Not implemented in this database ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,