Search Results s_org_status




Overview

The view IGS_AS_EXM_SUPRVISOR_V belongs to the IGS – Student System product family, a module that is documented as obsolete in Oracle E-Business Suite 12.1.1 and 12.2.2. The view consolidates examination supervisor records with related person, lookup, and organizational unit information, allowing consumers to query supervisor details in a single denormalized result set rather than joining multiple base entities manually. In the EBS reporting and integration layer, such views typically serve as the primary access point for concurrent programs, Oracle Reports, OBIEE extract routines, and inbound/outbound interfaces that require supervisor data. The ETRM metadata records the implementation/DBA data as "Not implemented in this database," which indicates that in the documented environment the object is absent from the data dictionary. This is consistent with the view belonging to a decommissioned module, and it should therefore be treated as reference-only for the 12.1.1 and 12.2.2 releases.

Underlying Base Objects

Although the documented ETRM metadata lists no referenced base objects, the view definition itself identifies the following sources:

The joins are keyed primarily on PERSON_ID and EXAM_SUPERVISOR_TYPE, with the organizational unit and status relationships implemented as outer joins so that supervisors without an assigned responsible unit still appear in the result set.

Key Columns

The view exposes a mixture of identifiers, descriptive attributes, and audit columns. Notable columns include:

Common Use Cases and Queries

Typical usage centers on retrieving supervisors filtered by organizational status or person attributes. The user's search term s_org_status maps directly to the S_ORG_STATUS column, which resolves the organization status code to its lookup meaning. Example queries include:

  • Listing active supervisors by organization status: SELECT person_number, preferred_name, s_org_status FROM igs_as_exm_suprvisor_v WHERE s_org_status = 'ACTIVE';
  • Identifying supervisors in charge: SELECT person_number, es_description, in_charge_ind FROM igs_as_exm_suprvisor_v WHERE in_charge_ind = 'Y';
  • Reporting supervisors without an assigned organizational unit, exploiting the outer joins: SELECT person_number FROM igs_as_exm_suprvisor_v WHERE responsible_org_unit_cd IS NULL;

Because the object is documented as not implemented in the reference database and belongs to an obsolete product, these queries are illustrative of the intended contract rather than guaranteed runnable. Integrations referencing this view should be migrated to supported alternatives within the current EBS data model.