Search Results inst_notify_ind




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

Overview

IGS_PS_USEC_OCCURS_ALL is a Student System (IGS) table that describes the occurrences of a unit section — the scheduled meetings of a class offering within the Oracle E-Business Suite academic structure. It belongs to the IGS product family, which is marked obsolete in the later EBS releases; the ETRM metadata records it as "Not implemented in this database" for the documented 12.1.1 schema, and therefore the table should be treated as a legacy artifact. Its logical role is to hold each dated meeting instance derived from a unit section occurrence, capturing teaching time patterns, facility assignment, instructor assignment, and scheduling status.

Based on the foreign-key topology, the table behaves as a hub in a Data Vault model: it carries a durable business key (UNIT_SECTION_OCCURRENCE_ID, plus the UOO_ID / OCCURRENCE_IDENTIFIER combination), and it is the parent of several dependent tables. The classification is a heuristic modeling suggestion derived from the FK structure, not a documented ETRM attribute.

Key Information Stored

The documented physical schema contains 62 columns. The most significant are:

Common Use Cases and Queries

Typical reporting scenarios include class timetable generation, room and building utilisation analysis, and instructor workload review. Because the table is a hub, most queries join outward to resolve descriptive attributes.

  • Timetable extract for a given unit offering option:
    SELECT o.UNIT_SECTION_OCCURRENCE_ID, o.OCCURRENCE_IDENTIFIER,
           o.START_DATE, o.END_DATE, o.START_TIME, o.END_TIME
    FROM   IGS_PS_USEC_OCCURS_ALL o
    WHERE  o.UOO_ID = :uoo_id
    AND    NVL(o.CANCEL_FLAG,'N') = 'N';
  • Room utilisation by joining room and building references:
    SELECT o.ROOM_CODE, r.DESCRIPTION, o.START_TIME, o.END_TIME
    FROM   IGS_PS_USEC_OCCURS_ALL o, IGS_AD_ROOM_ALL r
    WHERE  o.ROOM_CODE = r.ROOM_CODE(+);
  • Instructor assignment listing through INSTRUCTOR_ID against HZ_PARTIES.
  • Scheduling exception review using SCHEDULE_STATUS, CANCEL_FLAG and ABORT_FLAG.

Related Objects

The most significant referencing and referenced objects are: