Search Results tracking_step_type
Overview
IGS_TR_TYPE_STEP_V is a reporting view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environments, owned by the APPS schema and primarily associated with the Oracle Student System (formerly Oracle iLearning / Oracle Higher Education, product family "IGS"). The view exposes the configuration of tracking type steps — the discrete stages that make up a tracking type used to monitor the progress of a person or entity through a defined workflow. The user search term "tracking_step_type" maps directly to the view's central column S_TRACKING_STEP_TYPE and to the lookup type TRACKING_STEP_TYPE referenced in the WHERE clause.
The view's purpose is to present tracking-type steps in a denormalized, display-ready form. It resolves the internal tracking step type code to its user-facing lookup meaning, resolves the recipient identifier to a person's number and formatted full name, and supplies a placeholder column for a DSP staff member indicator. This makes the view suitable for concurrent programs, XML Publisher (BI Publisher) reports, Oracle Forms LOVs, and inbound/outbound interfaces that need step definitions without joining multiple base tables directly.
Underlying Base Objects
Although the documented metadata lists no referenced base objects, the view text is definitive. It is defined over three sources joined in a single SELECT:
- IGS_TR_TYPE_STEP TTS — the driving table, holding the persistent definition of each tracking type step, including its organization, tracking type, step number, description, action window, recipient, catalog code, group, and publish flag.
- IGS_PE_PERSON_BASE_V PE — the person base view, joined by TTS.RECIPIENT_ID = PE.PERSON_ID to supply PERSON_NUMBER and FULL_NAME.
- IGS_LOOKUPS_VIEW LKUP — the lookup view, joined on LOOKUP_TYPE = 'TRACKING_STEP_TYPE' and TTS.S_TRACKING_STEP_TYPE = LKUP.LOOKUP_CODE, providing the MEANING value.
Both the person and lookup joins are outer joins (indicated by the (+) operator), so steps with no recipient or no matching lookup code remain visible. TTS.ROWID is surfaced as ROW_ID to support row-level identification in Forms or update-aware integrations.
Key Columns
- ORG_ID — the operating unit that owns the tracking type step record; central to multi-org (MOAC) filtering.
- TRACKING_TYPE, TRACKING_TYPE_STEP_ID, TRACKING_TYPE_STEP_NUMBER — the parent tracking type and the step's identity and sequence.
- S_TRACKING_STEP_TYPE, MEANING — the step type code and its decoded lookup meaning.
- DESCRIPTION — free-text description of the step.
- ACTION_DAYS — the number of days allowed or expected for the step action.
- RECIPIENT_ID, RECIPIENT_NUMBER, DSP_PREFERRED_NAME — the assigned recipient and their person number and name.
- STEP_CATALOG_CD, STEP_GROUP_ID, PUBLISH_IND — catalog classification, grouping, and publication status.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard EBS audit columns; mandatory in any reporting or interface query.
Common Use Cases and Queries
Typical uses include listing all steps for a tracking type, identifying steps assigned to a specific recipient, and validating that every step type code maps to an active lookup meaning. A representative query follows:
SELECT tracking_type, tracking_type_step_number, description, meaning, recipient_number, dsp_preferred_name, action_days, publish_ind FROM apps.igs_tr_type_step_v WHERE org_id = :p_org_id AND tracking_type = :p_tracking_type ORDER BY tracking_type_step_number;
To find steps with unresolved lookup or recipient data:
SELECT tracking_type_step_id, tracking_type, s_tracking_step_type, recipient_id FROM apps.igs_tr_type_step_v WHERE meaning IS NULL OR recipient_number IS NULL;
Because the view applies outer joins and does not filter by org, callers must apply ORG_ID predicates explicitly to respect operating unit security. Since only SELECT privileges are exposed via APPS, the view is safe for read-only reporting and integration use.
-
Lookup Type: TRACKING_STEP_TYPE
12.1.1
product: IGS - Student System , meaning: Tracking Step Type , description: Tracking Step Type ,
-
Lookup Type: TRACKING_STEP_TYPE
12.2.2
product: IGS - Student System (Obsolete) , meaning: Tracking Step Type , description: Tracking Step Type ,
-
VIEW: APPS.IGS_TR_TYPE_STEP_V
12.1.1
-
VIEW: APPS.IGS_TR_STEP_CTLG
12.1.1
-
VIEW: APPS.IGS_TR_STEP_V
12.1.1
-
View: IGS_TR_TYPE_STEP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_TR_TYPE_STEP_V, object_name:IGS_TR_TYPE_STEP_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_TR_TYPE_STEP_V ,
-
View: IGS_TR_TYPE_STEP_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_TR_STEP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_TR_STEP_V, object_name:IGS_TR_STEP_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_TR_STEP_V ,
-
View: IGS_TR_STEP_CTLG
12.2.2
product: IGS - Student System (Obsolete) , description: This is the multi-org view for a master table for tracking steps , implementation_dba_data: Not implemented in this database ,
-
View: IGS_TR_STEP_CTLG
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_TR_STEP_CTLG, object_name:IGS_TR_STEP_CTLG, status:VALID, product: IGS - Student System , description: This is the multi-org view for a master table for tracking steps , implementation_dba_data: APPS.IGS_TR_STEP_CTLG ,
-
View: IGS_TR_STEP_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_LOOKUPS_VIEW_PKG
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.IGS_TR_STEP_CTLG_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_TR_TYPE_STEP_PKG
12.1.1
-
APPS.IGS_LOOKUPS_VIEW_PKG dependencies on IGS_TR_STEP_PKG
12.1.1
-
APPS.IGS_TR_STEP_PKG dependencies on IGS_LOOKUPS_VIEW_PKG
12.1.1
-
APPS.IGS_TR_TYPE_STEP_PKG dependencies on IGS_LOOKUPS_VIEW_PKG
12.1.1
-
APPS.IGS_LOOKUPS_VIEW_PKG dependencies on IGS_TR_TYPE_STEP_PKG
12.1.1
-
APPS.IGS_LOOKUPS_VIEW_PKG dependencies on IGS_RE_THESIS_RESULT_PKG
12.1.1
-
APPS.IGS_TR_STEP_CTLG_PKG dependencies on IGS_LOOKUPS_VIEW_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_TR_STEP_PKG
12.1.1
-
APPS.IGS_TR_STEP_CTLG_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_TR_STEP_CTLG_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
APPS.IGS_LOOKUPS_VIEW_PKG dependencies on IGS_LOOKUPS_VIEW
12.1.1
-
APPS.IGS_TR_TYPE_STEP_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGS_TR_TYPE_STEP_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
APPS.IGS_TR_TYPE_STEP_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_TR_STEP_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
APPS.IGS_TR_STEP_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGS_TR_STEP_PKG dependencies on FND_MESSAGE
12.1.1