Search Results igs_tr_status
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.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 ,
-
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 ,
-
APPS.IGS_TR_GEN_002 dependencies on IGS_TR_STATUS
12.1.1
-
APPS.IGS_TR_VAL_TRI dependencies on IGS_TR_STATUS
12.1.1
-
APPS.IGS_AS_SU_ATMPT_ITM_PKG dependencies on IGS_TR_STATUS
12.1.1
-
APPS.IGS_TR_STATUS_PKG dependencies on IGS_TR_STATUS
12.1.1
-
APPS.IGS_RE_GEN_003 dependencies on IGS_TR_STATUS
12.1.1
-
APPS.IGS_AD_ADM_REQ dependencies on IGS_TR_STATUS
12.1.1
-
APPS.IGS_AD_TI_COMP dependencies on IGS_TR_STATUS
12.1.1
-
APPS.IGS_EN_ELGBL_PERSON dependencies on IGS_TR_STATUS
12.1.1
-
APPS.IGS_AD_WRKFLOW_PKG dependencies on IGS_TR_STATUS
12.1.1
-
APPS.IGS_AD_AC_COMP dependencies on IGS_TR_STATUS
12.1.1
-
APPS.IGS_TR_STATUS_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_TR_STATUS_V
12.1.1
-
APPS.IGS_AD_TI_COMP dependencies on IGS_TR_ITEM
12.1.1
-
SYNONYM: APPS.IGS_TR_STATUS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_TR_STATUS, status:VALID,
-
APPS.IGS_AD_TI_COMP dependencies on IGS_AD_APLINS_ADMREQ
12.1.1
-
TABLE: IGS.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,
-
View: IGS_TR_STATUS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_EN_ELGBL_PERSON dependencies on IGS_TR_TYPE
12.1.1
-
View: IGS_TR_STATUS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_TR_STATUS_V, object_name:IGS_TR_STATUS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_TR_STATUS_V ,
-
APPS.IGS_EN_ELGBL_PERSON dependencies on IGS_EN_STDNT_PS_ATT
12.1.1
-
APPS.IGS_TR_STATUS_PKG dependencies on IGS_TR_STATUS_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_TR_STATUS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_TR_STATUS_PKG, status:VALID,
-
APPS.IGS_AD_AC_COMP dependencies on IGS_TR_TYPE
12.1.1
-
APPS.IGS_TR_VAL_TRI SQL Statements
12.1.1
-
APPS.IGS_AD_AC_COMP dependencies on IGS_TR_ITEM
12.1.1
-
APPS.IGS_AD_AC_COMP dependencies on IGS_AD_APLINS_ADMREQ
12.1.1
-
PACKAGE BODY: APPS.IGS_TR_VAL_TRI
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_TR_VAL_TRI, status:VALID,
-
PACKAGE BODY: APPS.IGS_TR_STATUS_PKG
12.1.1
-
APPS.IGS_AS_SU_ATMPT_ITM_PKG dependencies on IGS_TR_TYPE
12.1.1
-
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 ,
-
APPS.IGS_RE_GEN_003 dependencies on IGS_RE_THS_PNL_TYPE
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_AC_COMP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_AC_COMP, status:VALID,
-
APPS.IGS_EN_ELGBL_PERSON dependencies on IGS_TR_ITEM
12.1.1
-
Table: IGS_TR_ITEM_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes each occurrence of a tracking process for a particular student. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_AD_TI_COMP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_TI_COMP, status:VALID,
-
APPS.IGS_RE_GEN_003 dependencies on IGS_RE_THS_PNL_MR_TP
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_SU_ATMPT_ITM_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_SU_ATMPT_ITM_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_WRKFLOW_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_WRKFLOW_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_RE_GEN_003
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_RE_GEN_003, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_ELGBL_PERSON
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_ELGBL_PERSON, status:VALID,
-
PACKAGE BODY: APPS.IGS_TR_GEN_002
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_TR_GEN_002, status:VALID,
-
VIEW: APPS.IGS_TR_STATUS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_TR_STATUS_V, object_name:IGS_TR_STATUS_V, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_ADM_REQ
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_ADM_REQ, status:VALID,
-
APPS.IGS_TR_VAL_TRI dependencies on IGS_TR_ITEM
12.1.1
-
APPS.IGS_AS_SU_ATMPT_ITM_PKG dependencies on IGS_TR_ITEM
12.1.1
-
VIEW: APPS.IGS_AD_MISSING_ITEMS_LETTER_V
12.1.1
-
VIEW: APPS.IGS_AD_POSTADM_MISS_ITM_LTR_V
12.1.1
-
APPS.IGS_AD_TI_COMP SQL Statements
12.1.1