Search Results pe_res_class




Overview

APPS.IGS_PE_RES_DTLS_V is a seeded Oracle E-Business Suite database view belonging to the Student System (IGS) product family, specifically the People/Person entity (PE) module. It exposes residency classification and residency status detail records held for persons (typically students or applicants) in the institution's records. The view joins the primary residency details table to Oracle lookup values that translate internal codes into user-readable descriptions, and it enriches each record with person number information and academic calendar instance dates. Because it presents decoded, denormalized data in a single queryable object, it functions as a reporting and integration surface rather than as a transactional store; consumers never insert into it. Institutions commonly expose it through BI Publisher reports, OBIEE/OTBI analyses, custom concurrent programs, and inbound/outbound interfaces that require residency data keyed to a person and calendar.

Underlying Base Objects

The documented view definition references four objects:

Table aliases in the view text follow the standard naming: RD for details, CC1/CC2 for the two lookup joins, PE for person, and CI for calendar instance.

Key Columns

Common Use Cases and Queries

Typical scenarios include listing all residency determinations for a student, reporting by residency class for tuition/fee purposes, and extracting decoded values for integration. A simple lookup by class code:

  • SELECT person_number, residency_class_desc, residency_status_desc, evaluation_date FROM apps.igs_pe_res_dtls_v WHERE residency_class = 'IN_STATE';
  • SELECT * FROM apps.igs_pe_res_dtls_v WHERE person_id = :p_person_id ORDER BY evaluation_date DESC;
  • SELECT residency_class_desc, COUNT(*) FROM apps.igs_pe_res_dtls_v GROUP BY residency_class_desc;

Because the view resolves PE_RES_CLASS and PE_RES_STATUS into descriptions, it is preferred over querying IGS_PE_RES_DTLS directly whenever user-facing output is required.