Search Results igs_da_purge_v




Overview

IGS_DA_PURGE_V is an Oracle E-Business Suite view owned by the APPS schema within the IGS (Student System) product family. It is documented under the ETRM metadata for Oracle EBS 12.1.1 and 12.2.2 as a reporting and audit view that exposes information about degree audit requests that have been purged from the system. As the description states, the view "is to give the user information into all the degree audit requests that were made and purged from the system," and the information "will be saved as each request has been purged."

In practical terms, the view functions as a historical audit trail. When degree audit requests are removed from the active request tables during a purge process, a record is written to the underlying storage so that institutions retain visibility into what was purged, when, and by whom. IGS_DA_PURGE_V presents that archived information in a query-ready form, making it suitable for operational reporting, troubleshooting, and compliance review within the student system.

Underlying Base Objects

The documented view text defines IGS_DA_PURGE_V as a simple projection over a single base table:

  • IGS_DA_PURGE — the sole referenced base object documented in the ETRM metadata.

Notably, the documented base objects list states "none documented" for 12.2.2, yet the embedded view text explicitly selects from IGS_DA_PURGE. Per the ETRM excerpt, the view exposes ROWID as ROW_ID along with a set of descriptive and WHO columns. No joins to other tables are present in the documented view definition, so the view inherits the row-level granularity of IGS_DA_PURGE — one row per purged degree audit request batch record. Because the view text is provided directly, it can be treated as authoritative for this object.

Key Columns

Common Use Cases and Queries

Typical uses include auditing purged degree audit requests, reconciling purge batches, and reporting on the REPORT_STATUS of removed requests. A basic listing of purged requests by report status might read:

  • SELECT batch_id, requestor_surname, requestor_givenname, report_status, request_made_date FROM igs_da_purge_v WHERE report_status = 'COMPLETE' ORDER BY request_made_date DESC;
  • SELECT batch_id, purge_status, COUNT(*) FROM igs_da_purge_v GROUP BY batch_id, purge_status;
  • SELECT requestor_type, report_status, COUNT(*) FROM igs_da_purge_v WHERE request_made_date >= TRUNC(SYSDATE) - 90 GROUP BY requestor_type, report_status;

These queries support purge auditing, workload analysis, and historical trend reporting over the degree audit purge archive.