Search Results igs_tr_type
Overview
The IGS_TR_TYPE view is a critical data object within the Oracle E-Business Suite (EBS) Student System (IGS) module, versions 12.1.1 and 12.2.2. It provides a filtered, multi-organization (Multi-Org) aware perspective on the underlying base table, IGS_TR_TYPE_ALL. The view's primary function is to expose master data for different tracking types used to monitor and manage various student-related processes or items, such as applications, inquiries, or service requests. The view's WHERE clause logic ensures data security by restricting rows based on the ORG_ID (Operating Unit identifier) derived from the user's session context (USERENV('CLIENT_INFO')), thereby enforcing a fundamental EBS security model. This allows different business units within an institution to maintain and view only their own tracking type definitions.
Key Information Stored
The view presents a comprehensive set of columns that define the characteristics and behavior of a tracking type. Key columns include:
- TRACKING_TYPE & DESCRIPTION: The unique code and descriptive name for the tracking type.
- S_TRACKING_TYPE: A system-defined classification for the tracking type, likely driving specific application behavior.
- TARGET_DAYS: The expected number of days for completion of items under this tracking type.
- SEQUENCE_IND, BUSINESS_DAYS_IND, CLOSED_IND, PUBLISH_IND: Important flags controlling functionality. These indicate if sequence numbering is used, if target days are calculated using business days only, if the type is closed for new assignments, and if the type is published for general use, respectively.
- ORG_ID: The Operating Unit identifier, central to the view's row-level security.
- Standard EBS audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) are also included.
Common Use Cases and Queries
This view is primarily used for setup validation, operational reporting, and as a source for List of Values (LOV) in application forms. Common scenarios include generating a list of all active tracking types for a given operating unit to configure workflow steps, or reporting on target service levels. A typical query would filter on key indicators and the session's ORG_ID.
Sample Query: To retrieve all published, open tracking types that use business-day calculations for the current operating unit:
SELECT tracking_type, description, target_days
FROM apps.igs_tr_type
WHERE publish_ind = 'Y'
AND closed_ind = 'N'
AND business_days_ind = 'Y'
ORDER BY description;
This view is also central in joins for transactional reporting, linking tracking type metadata to actual tracked items (e.g., in IGS_TR_ITEM or related tables) to analyze performance against targets.
Related Objects
The IGS_TR_TYPE view is intrinsically linked to several other EBS objects within the Student System module. Its direct base table is IGS_TR_TYPE_ALL, which stores the physical data for all operating units. This view is a likely source for foreign key references in transactional tables that assign a tracking type to a specific item or case, such as IGS_TR_ITEM or similar. It may also be referenced by other setup views or public APIs (e.g., IGS_TRACKING_PUB) that provide programmatic access to tracking functionality. The presence of the S_TRACKING_TYPE column suggests a relationship with a lookup table defining valid system types, such as IGS_LOOKUPS_VIEW for the relevant lookup type.
-
View: IGS_TR_TYPE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_TR_TYPE, object_name:IGS_TR_TYPE, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_TR_TYPE ,
-
View: IGS_TR_TYPE
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_TR_TYPE
12.1.1
product: IGS - Student System , description: This entity describes the user-defined tracking types which exist within the system. They are mapped back to the system defined tracking types which are recognised by the system functionality. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_TR_TYPE
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the user-defined tracking types which exist within the system. They are mapped back to the system defined tracking types which are recognised by the system functionality. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_AD_PRCS_CAT_STEP_PKG dependencies on IGS_TR_TYPE
12.1.1
-
APPS.IGS_AD_AC_COMP dependencies on IGS_TR_TYPE
12.1.1
-
APPS.IGS_AD_ADM_REQ dependencies on IGS_TR_TYPE
12.1.1
-
APPS.IGS_AD_APLINS_ADMREQ_PKG dependencies on IGS_TR_TYPE
12.1.1
-
APPS.IGS_EN_ELGBL_PERSON dependencies on IGS_TR_TYPE
12.1.1
-
APPS.IGS_TR_VAL_TRST dependencies on IGS_TR_TYPE
12.1.1
-
APPS.IGS_TR_GEN_002 dependencies on IGS_TR_TYPE
12.1.1
-
APPS.IGS_RE_GEN_003 dependencies on IGS_TR_TYPE
12.1.1
-
APPS.IGS_TR_VAL_TRI dependencies on IGS_TR_TYPE
12.1.1
-
APPS.IGS_AS_SU_ATMPT_ITM_PKG dependencies on IGS_TR_TYPE
12.1.1
-
APPS.IGS_RE_VAL_TPMT dependencies on IGS_TR_TYPE
12.1.1
-
APPS.IGS_AD_APLINS_ADMREQ_PKG dependencies on IGS_TR_ITEM
12.1.1
-
APPS.IGS_AD_AC_COMP dependencies on IGS_TR_ITEM
12.1.1
-
VIEW: APPS.IGS_AD_APLINS_ADMREQ_APLPRC_V
12.1.1
-
VIEW: APPS.IGS_TR_TYPE_V
12.1.1
-
APPS.IGS_AD_ADM_REQ dependencies on IGS_TR_ITEM
12.1.1
-
VIEW: APPS.IGS_TR_ITEM_V
12.1.1
-
VIEW: APPS.IGS_SS_EN_POST_ADREQ_V
12.1.1
-
APPS.IGS_AS_SU_ATMPT_ITM_PKG dependencies on IGS_TR_ITEM
12.1.1
-
APPS.IGS_RE_VAL_TPMT SQL Statements
12.1.1
-
SYNONYM: APPS.IGS_TR_TYPE_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_TR_TYPE_ALL, status:VALID,
-
VIEW: APPS.IGS_TR_TYPE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_TR_TYPE, object_name:IGS_TR_TYPE, status:VALID,
-
APPS.IGS_AD_AC_COMP dependencies on IGS_TR_STATUS
12.1.1
-
PACKAGE BODY: APPS.IGS_RE_VAL_TPMT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_RE_VAL_TPMT, status:VALID,
-
APPS.IGS_EN_ELGBL_PERSON dependencies on IGS_TR_STATUS
12.1.1
-
APPS.IGS_EN_ELGBL_PERSON dependencies on IGS_AD_APLINS_ADMREQ
12.1.1
-
APPS.IGS_AS_SU_ATMPT_ITM_PKG dependencies on IGS_TR_STATUS
12.1.1
-
PACKAGE BODY: APPS.IGS_TR_VAL_TRST
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_TR_VAL_TRST, status:VALID,
-
VIEW: APPS.IGS_AD_PRCS_CAT_STEP_V
12.1.1
-
APPS.IGS_AD_AC_COMP dependencies on IGS_AD_APLINS_ADMREQ
12.1.1
-
APPS.IGS_TR_VAL_TRI SQL Statements
12.1.1
-
View: IGS_TR_TYPE_V
12.2.2
product: IGS - Student System (Obsolete) , description: This is the form view for a tracking types table , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_AD_AC_COMP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_AC_COMP, status:VALID,
-
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_AD_PRCS_CAT_STEP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_PRCS_CAT_STEP_PKG, status:VALID,
-
View: IGS_TR_TYPE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_TR_TYPE_V, object_name:IGS_TR_TYPE_V, status:VALID, product: IGS - Student System , description: This is the form view for a tracking types table , implementation_dba_data: APPS.IGS_TR_TYPE_V ,
-
APPS.IGS_TR_GEN_002 dependencies on IGS_PE_PERSON
12.1.1
-
View: IGS_AD_APLINS_ADMREQ_APLPRC_V
12.2.2
product: IGS - Student System (Obsolete) , description: Holds the link records between the application instance and tracking items , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_APLINS_ADMREQ_APLPRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APLINS_ADMREQ_APLPRC_V, object_name:IGS_AD_APLINS_ADMREQ_APLPRC_V, status:VALID, product: IGS - Student System , description: Holds the link records between the application instance and tracking items , implementation_dba_data: APPS.IGS_AD_APLINS_ADMREQ_APLPRC_V ,
-
APPS.IGS_EN_ELGBL_PERSON dependencies on IGS_TR_ITEM
12.1.1
-
View: IGS_TR_ITEM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_TR_ITEM_V, object_name:IGS_TR_ITEM_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_TR_ITEM_V ,
-
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_APLINS_ADMREQ_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_APLINS_ADMREQ_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,
-
View: IGS_TR_ITEM_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SS_EN_POST_ADREQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_EN_POST_ADREQ_V, object_name:IGS_SS_EN_POST_ADREQ_V, status:VALID, product: IGS - Student System , description: Selects all the Post Admission requirements for a particular Term Calendar , implementation_dba_data: APPS.IGS_SS_EN_POST_ADREQ_V ,