Search Results igs_tr_gen_001
Overview
IGS_TR_ITEM_V is a reporting view belonging to the IGS (Student System) product family within Oracle E-Business Suite. The IGS module is documented in ETRM as obsolete, and the view carries the annotation "Not implemented in this database," indicating that it is not present in every EBS instance and should be treated with caution when referenced in custom code or reports. The view exposes tracking item records — rows describing individual tracking assignments generated against a tracking type — together with derived columns that surface computed target dates, completion dates, and overdue durations. Its principal design purpose is to encapsulate the business logic of the tracking engine (packaged in IGS_TR_GEN_001) so that forms, concurrent programs, and custom reports can retrieve fully calculated tracking status information from a single SELECT statement rather than re-implementing the date arithmetic themselves.
Underlying Base Objects
Although the ETRM metadata entry lists no referenced base objects, the view text documents the actual sources. The primary table is IGS_TR_ITEM (aliased TRI), which stores the tracking item rows themselves, including tracking status, tracking type, target days, and audit columns. It is joined to IGS_TR_TYPE (TRT) on TRACKING_TYPE to supply the descriptive text for the type. Two outer-joined lookups against IGS_PE_PERSON_BASE_V (aliased PE1 for the source person and PE2 for the originator) resolve person identifiers into person numbers and preferred display names; the (+) notation confirms these joins are outer joins, so tracking items persist even when a person record is missing. A defining characteristic of the view is its repeated invocation of the IGS_TR_GEN_001 package functions — TRKP_CLC_DT_OFFSET, TRKP_CLC_TRI_CMP_DT, and TRKP_CLC_DAYS_OVRDUE — which calculate the target date, the completion date, and the number of overdue days respectively. This coupling means view performance is sensitive to the cost of those PL/SQL calls per row.
Key Columns
- ROW_ID / ROWID: The row identifier of the underlying IGS_TR_ITEM row, reserved for locked-row operations.
- ORG_ID: Operating unit context, supporting multi-org security in reporting.
- TRACKING_ID, TRACKING_STATUS, TRACKING_TYPE, DESCRIPTION: The core tracking identity and its type description taken from IGS_TR_TYPE.
- SOURCE_PERSON_ID, SOURCE_PERSON_NUMBER, DSP_PREFERRED_NAME2: The person whose tracking is being recorded, with resolved number and display name.
- ORIGINATOR_PERSON_ID, ORIGINATOR_PERSON_NUMBER, DSP_PREFERRED_NAME: The person who created or assigned the tracking item.
- START_DT, TARGET_DAYS, TARGET_DT: The start date, configured target duration, and the computed target date derived through TRKP_CLC_DT_OFFSET.
- BUSINESS_DAYS_IND, OVERRIDE_OFFSET_CLC_IND, SEQUENCE_IND: Flags controlling whether business days are used in the offset calculation, whether the offset calculation is overridden, and sequencing behavior.
- COMPLETION_DT, COMPLETION_DUE_DT, OVERDUE_DAYS: The actual completion date, the due date, and the computed overdue count via TRKP_CLC_DAYS_OVRDUE.
- S_CREATED_IND, PUBLISH_IND: Indicators for self-created and published tracking items.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN: Standard audit columns inherited from IGS_TR_ITEM.
Common Use Cases and Queries
The view is typically queried for tracking dashboards, overdue tracking-item reports, and integration extracts that feed downstream workflow or notification processes. A representative query for outstanding overdue items:
SELECT tracking_id, tracking_type, description, source_person_number, dsp_preferred_name2, start_dt, target_dt, completion_due_dt, overdue_days FROM igs_tr_item_v WHERE tracking_status = 'INCOMPLETE' AND overdue_days > 0 ORDER BY overdue_days DESC;SELECT tracking_type, COUNT(*) total_items, SUM(NVL(overdue_days,0)) total_overdue FROM igs_tr_item_v WHERE org_id = :p_org_id GROUP BY tracking_type;SELECT tracking_id, originator_person_number, start_dt, target_days, business_days_ind, target_dt FROM igs_tr_item_v WHERE publish_ind = 'Y';
Because the view embeds package function calls, large-volume extracts should be filtered before aggregation, and any site where the "not implemented" annotation applies will receive an ORA-00942 error, so existence should be verified in ALL_VIEWS before deployment.
-
View: IGS_TR_ITEM_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
VIEW: APPS.IGS_TR_ITEM_V
12.1.1
-
VIEW: APPS.IGS_TR_STEP_V
12.1.1
-
PACKAGE BODY: APPS.IGS_TR_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_TR_GEN_001, status:VALID,
-
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_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE: APPS.IGS_TR_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_TR_GEN_001, status:VALID,
-
PACKAGE: APPS.IGS_TR_GEN_001
12.1.1
-
PACKAGE: APPS.IGS_TR_GEN_002
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_TR_GEN_002, status:VALID,
-
SYNONYM: APPS.IGS_TR_ITEM_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_TR_ITEM_ALL, status:VALID,
-
SYNONYM: APPS.IGS_TR_STEP
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_TR_STEP, 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: APPS.IGS_TR_VAL_TRI
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_TR_VAL_TRI, 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,
-
PACKAGE BODY: APPS.IGS_AS_GEN_007
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_GEN_007, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.IGS_TR_ITEM
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_TR_ITEM, object_name:IGS_TR_ITEM, status:VALID,
-
APPS.IGS_TR_GEN_002 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_TR_GEN_001
12.1.1
-
APPS.IGS_TR_GEN_002 dependencies on IGS_TR_GEN_001
12.1.1
-
APPS.IGS_TR_STEP_V dependencies on IGS_TR_GEN_001
12.1.1
-
APPS.IGS_TR_ITEM_V dependencies on IGS_TR_GEN_001
12.1.1
-
APPS.IGS_AD_POSTADM_MISS_ITM_LTR_V dependencies on IGS_TR_GEN_001
12.1.1
-
VIEW: APPS.IGS_AD_POSTADM_MISS_ITM_LTR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_POSTADM_MISS_ITM_LTR_V, object_name:IGS_AD_POSTADM_MISS_ITM_LTR_V, status:VALID,
-
APPS.IGS_AD_MISSING_ITEMS_LETTER_V dependencies on IGS_TR_GEN_001
12.1.1
-
APPS.IGS_AS_GEN_007 dependencies on IGS_TR_GEN_001
12.1.1
-
APPS.IGS_RE_GEN_003 dependencies on IGS_TR_GEN_001
12.1.1
-
APPS.IGS_TR_GEN_001 dependencies on IGS_TR_GEN_001
12.1.1
-
VIEW: APPS.IGS_AD_MISSING_ITEMS_LETTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_MISSING_ITEMS_LETTER_V, object_name:IGS_AD_MISSING_ITEMS_LETTER_V, status:VALID,
-
PACKAGE BODY: APPS.IGS_TR_GEN_002
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.IGS_RE_GEN_003
12.1.1
-
APPS.IGS_AS_GEN_007 dependencies on IGS_TR_ITEM_PKG
12.1.1
-
APPS.IGS_TR_GEN_002 dependencies on IGS_TR_ITEM
12.1.1
-
APPS.IGS_AS_GEN_007 dependencies on IGS_TR_ITEM
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_GEN_007
12.1.1
-
APPS.IGS_TR_GEN_002 dependencies on IGS_TR_STEP
12.1.1
-
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'. ,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.FND_MESSAGE
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_MESSAGE, status:VALID,
-
PACKAGE: SYS.STANDARD
12.1.1
owner:SYS, object_type:PACKAGE, object_name:STANDARD, status:VALID,
-
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'. ,