Search Results actual_reached_dt
Overview
APPS.IGS_PR_MILESTONE_V is a reporting and integration view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environments, owned by the APPS schema. It belongs to the Oracle Student System / Student Records (IGS) product family, specifically the Progression (PR) module that tracks academic milestones for learners. The view exposes milestone records together with a set of synthesized columns that are not stored directly on the underlying table, most notably the INCLUDE_REACHED_MILESTONES flag, the PRECED_PERSON_ID and PRECED_CA_SEQUENCE_NUMBER columns, and the notification override columns including OVRD_NTFCTN_RE_REMINDER_DAYS. Its primary role is to provide a stable, read-only projection of milestone data for use in forms, concurrent programs, BI Publisher reports, and inbound/outbound integrations without requiring consumers to reference the base table directly.
Underlying Base Objects
The ETRM metadata documents a single referenced base object: IGS_PR_MILESTONE (aliased as MIL in the view definition). No additional base tables, synonyms, or join dependencies are documented. The view is a straightforward, single-table projection rather than a join, meaning that all persisted columns — including PERSON_ID, CA_SEQUENCE_NUMBER, SEQUENCE_NUMBER, MILESTONE_TYPE, MILESTONE_STATUS, DUE_DT, ACTUAL_REACHED_DT, the notification override columns, and the standard WHO audit columns — are carried directly from IGS_PR_MILESTONE. The remaining columns are derived literals or functions applied at query time.
Key Columns
PERSON_IDandCA_SEQUENCE_NUMBER— identify the learner (party/person) and the course attempt context to which the milestone belongs.SEQUENCE_NUMBER,MILESTONE_TYPE,MILESTONE_STATUS— the milestone identifier, its classification, and its current lifecycle status.DUE_DTandACTUAL_REACHED_DT— the scheduled due date and the date the milestone was actually attained.INCLUDE_REACHED_MILESTONES— a hard-coded literal'N', used by consuming logic to filter out already-reached milestones when the calling program requests only outstanding items.PRECED_PERSON_IDandPRECED_CA_SEQUENCE_NUMBER— defined asNVL(PERSON_ID, NULL)andNVL(CA_SEQUENCE_NUMBER, NULL)respectively; these simplify the expression to the same value as the source column but provide a named alias for precedent-milestone joins in downstream queries.PRECED_SEQUENCE_NUMBER— the sequence number of the preceding milestone in the chain.OVRD_NTFCTN_IMMINENT_DAYS,OVRD_NTFCTN_REMINDER_DAYS, andOVRD_NTFCTN_RE_REMINDER_DAYS— notification override thresholds.OVRD_NTFCTN_RE_REMINDER_DAYSspecifically controls the number of days used for the repeat (re-reminder) notification window when a milestone remains outstanding after the initial reminder. These overrides supersede the default notification lead times configured at the milestone-type level.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN,COMMENTS— standard audit and free-text columns.
Common Use Cases and Queries
The view is typically queried to drive milestone notification concurrent programs, learner self-service pages, and progression reports. A frequent scenario is retrieving all outstanding milestones for a person together with their notification override windows:
- Milestone notification scheduling — selecting
OVRD_NTFCTN_RE_REMINDER_DAYSalongsideDUE_DTto determine when repeat reminders should fire. - Progression tracking reports — joining back to person and course attempt tables using
PERSON_IDandCA_SEQUENCE_NUMBER. - Integration extracts — feeding milestone status and override days into external student systems.
SELECT person_id,
ca_sequence_number,
sequence_number,
milestone_type,
milestone_status,
due_dt,
ovrd_ntfctn_imminent_days,
ovrd_ntfctn_reminder_days,
ovrd_ntfctn_re_reminder_days
FROM apps.igs_pr_milestone_v
WHERE person_id = :p_person_id
AND milestone_status = 'OUTSTANDING'
AND include_reached_milestones = 'N';
Because the view is defined only over IGS_PR_MILESTONE, it is lightweight and safe for direct querying; however, consumers should treat it as read-only and apply the appropriate APPS schema grants when accessed through custom code.
-
VIEW: APPS.IGS_PR_MILESTONE_V
12.1.1
-
View: IGS_PR_MILESTONE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_MILESTONE_V, object_name:IGS_PR_MILESTONE_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PR_MILESTONE_V ,
-
View: IGS_PR_MILESTONE_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PR_MILESTONE
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PR_MILESTONE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_MILESTONE, object_name:IGS_PR_MILESTONE, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PR_MILESTONE ,
-
VIEW: APPS.IGS_PR_MILESTONE_HST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_MILESTONE_HST, object_name:IGS_PR_MILESTONE_HST, status:VALID,
-
VIEW: APPS.IGS_PR_MILESTONE_HST
12.1.1
-
View: IGS_PR_MILESTONE_HST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_MILESTONE_HST, object_name:IGS_PR_MILESTONE_HST, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PR_MILESTONE_HST ,
-
View: IGS_PR_MILESTONE_HST
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PR_MILESTONE
12.1.1
-
VIEW: APPS.IGS_PR_MILESTONE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_MILESTONE, object_name:IGS_PR_MILESTONE, status:VALID,
-
TABLE: IGS.IGS_PR_MILESTONE_HST_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PR_MILESTONE_HST_ALL, object_name:IGS_PR_MILESTONE_HST_ALL, status:VALID,
-
TABLE: IGS.IGS_PR_MILESTONE_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PR_MILESTONE_ALL, object_name:IGS_PR_MILESTONE_ALL, status:VALID,
-
VIEW: APPS.IGS_PR_MILESTONE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_MILESTONE_V, object_name:IGS_PR_MILESTONE_V, status:VALID,
-
APPS.IGS_PR_MILESTONE_HST_PKG SQL Statements
12.1.1
-
APPS.IGS_PR_MILESTONE_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PR_MILESTONE_HST_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_PR_MILESTONE_PKG
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'. ,