Results for “preced_ca_sequence_number”

5 results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

IGS_PR_MILESTONE_V is a validation view owned by the APPS schema within the IGS (Student System) product family in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes progression milestone data drawn from the IGS_PR_MILESTONE base table, providing a read-only, presentation-layer projection of milestone records for reporting, notification processing, and integration with downstream student progression logic. The view materialises one row per milestone event tied to a person and to a customer account sequence number, joining milestone definitions to their due dates, achieved dates, and override notification parameters.

Underlying Base Objects

Per the ETRM metadata, IGS_PR_MILESTONE_V has no separately documented referenced base objects; however, its view text is a direct projection over the single table IGS_PR_MILESTONE, aliased as MIL. The SELECT list does not join to any additional table, and no WHERE clause filters rows, so the view returns every row from the base table, supplemented by two literal expressions:

  • INCLUDE_REACHED_MILESTONES is hard-coded to the literal 'N', indicating the view is intended to exclude already-reached milestones from notification consideration by default.
  • PRECED_PERSON_ID and PRECED_CA_SEQUENCE_NUMBER are emitted using NVL(…, NULL) expressions, preserving the underlying values while normalising null handling.

Because the view is a straight projection, it inherits all column-level semantics, data types, and constraints from IGS_PR_MILESTONE, and any DML against the base table is immediately reflected in query results.

Key Columns

Common Use Cases and Queries

Typical usage includes identifying milestones approaching their due date so that notification jobs can be triggered, auditing override settings, and feeding progression analytics.

  • List imminent milestones for a person:
    SELECT person_id, milestone_type, due_dt, ovrd_ntfctn_imminent_days
    FROM   apps.igs_pr_milestone_v
    WHERE  person_id = :p_person_id
    AND    milestone_status = 'INCOMPLETE';
  • Find milestones with an overtightened imminent window:
    SELECT * FROM apps.igs_pr_milestone_v
    WHERE  ovrd_ntfctn_imminent_days < 7;
  • Report due milestones over the next 30 days.

Because the view is a single-table projection, it is safe for read-only integration and BI Publisher reporting, but not for direct DML.