Search Results igs_da_setup_v




Overview

The IGS_DA_SETUP_V view belongs to the Oracle E-Business Suite IGS — Student System product family, which is documented as obsolete in the ETRM 12.1.1 / 12.2.2 reference set. Its purpose, as stated in the ETRM metadata, is to retrieve the Degree Audit Interface configuration. In practice, this view exposes the single setup row (or rows) held in the IGS_DA_SETUP table that controls how the institution's Degree Audit process integrates with the Oracle Student System academic structure, container display, and third-party degree audit vendors.

Because it is a view rather than a table, IGS_DA_SETUP_V is intended for read-only consumption — reporting, lookups, and integration hand-off — rather than for direct DML. The user search term wif_minor_unit_set_cat corresponds directly to one of its columns, WIF_MINOR_UNIT_SET_CAT, indicating the searcher is investigating how minor unit-set categories are mapped for the Weakly-Integrated Format (WIF) degree audit interface.

Underlying Base Objects

Per the ETRM documentation, no referenced base objects are separately recorded for this view and the owner is not listed, though the view SQL clearly selects from a single base table:

  • IGS_DA_SETUP — the Degree Audit setup table, aliased as DS in the view definition.

The view is a straight projection: it selects DS.ROWID AS ROW_ID plus every configured column from IGS_DA_SETUP, with no joins, unions, or aggregation. This means the row cardinality of the view matches the underlying table exactly. The ETRM record also notes "Not implemented in this database," which indicates the object exists in the ETRM documentation set for 12.2.2 but was not deployed in the reference environment where the metadata was captured — a common situation for obsolete Student System objects.

Key Columns

Common Use Cases and Queries

The primary use case is validating or extracting the Degree Audit interface configuration, particularly the WIF category mappings. A typical query to locate the minor unit-set category is:

  • SELECT s_control_num, wif_major_unit_set_cat, wif_minor_unit_set_cat, wif_track_unit_set_cat, wif_unit_set_title FROM igs_da_setup_v WHERE wif_minor_unit_set_cat IS NOT NULL;
  • Reviewing container display settings: SELECT s_control_num, display_container_ind, container_title, link_text, link_url FROM igs_da_setup_v;
  • Auditing third-party integration: SELECT s_control_num, third_party_options, default_student_id_type, default_inst_id_type FROM igs_da_setup_v;
  • Change tracking: SELECT s_control_num, last_updated_by, last_update_date FROM igs_da_setup_v ORDER BY last_update_date DESC;

Because the view is not implemented in the documented database and belongs to an obsolete product, any query should first confirm the object exists in the target instance (for example, via ALL_VIEWS or USER_VIEWS). Where the student system has been replaced or de-supported, equivalent configuration is typically maintained in the successor Student Information System.

  • View: IGS_DA_SETUP_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:IGS.IGS_DA_SETUP_V,  object_name:IGS_DA_SETUP_V,  status:VALID,  product: IGS - Student Systemdescription: This view is used to retrieve the Degree Audit Interface configuration. ,  implementation_dba_data: APPS.IGS_DA_SETUP_V