Search Results external_reference_desc
Overview
IGS_PE_PERS_ENCUMB_V is a seeded Oracle E-Business Suite view owned by the APPS schema and defined in the IGS (Student System / Student Records) product family. It presents person-level encumbrance records held against students and related parties, enriched with human-readable person numbers, responsibility names, and lookup descriptions. Encumbrances in this context represent administrative holds — such as financial, academic, or disciplinary restrictions — that prevent a person from performing certain transactions, for example registration or graduation.
The view is the primary reporting interface for the underlying IGS_PE_PERS_ENCUMB table. Rather than exposing raw foreign keys and codes, it resolves them to meaningful values, which makes it suitable for concurrent programs, BI Publisher reports, OAF-based pages, and inbound/outbound integrations that need to interpret encumbrance data without duplicating join logic. The view is read-only by convention; DML against it is not supported because it is a multi-table join involving outer joins and a lookup table.
Underlying Base Objects
The view is defined over five objects:
- IGS_PE_PERS_ENCUMB E — the driving base table holding the encumbrance records themselves.
- IGS_PE_PERSON_BASE_V P1 — joined on E.PERSON_ID = P1.PERSON_ID (inner join) to supply the encumbered person's PERSON_NUMBER.
- IGS_PE_PERSON_BASE_V P2 — joined on E.AUTHORISING_PERSON_ID = P2.PERSON_ID with an outer join, supplying the authorising person's number where one is recorded.
- FND_RESPONSIBILITY_VL R — joined on E.AUTH_RESP_ID = R.RESPONSIBILITY_ID with an outer join, exposing RESPONSIBILITY_NAME as AUTH_RESP_NAME.
- IGS_LOOKUP_VALUES L1 — joined on E.EXTERNAL_REFERENCE = L1.LOOKUP_CODE with an outer join, restricted to LOOKUP_TYPE = 'PE_EXT_REF', exposing MEANING as EXTERNAL_REFERENCE_DESC.
The metadata record lists no separately documented referenced base objects, so the join semantics above are taken directly from the published view text.
Key Columns
- ROWID — the row identifier of the underlying IGS_PE_PERS_ENCUMB row, useful for drill-through.
- PERSON_ID — internal identifier of the encumbered person.
- PERSON_NUMBER (from P1) — the user-facing person number.
- ENCUMBRANCE_TYPE, CAL_TYPE, SEQUENCE_NUMBER — classification and ordering attributes of the encumbrance.
- START_DT, EXPIRY_DT — effective period of the hold.
- AUTHORISING_PERSON_ID and the corresponding PERSON_NUMBER (from P2) — who raised the encumbrance.
- AUTH_RESP_ID / AUTH_RESP_NAME — the responsibility under which it was raised.
- COMMENTS — free-text explanation.
- SPO_COURSE_CD, SPO_SEQUENCE_NUMBER — reference to the associated student program offering record.
- EXTERNAL_REFERENCE / EXTERNAL_REFERENCE_DESC — the code and its decoded meaning from the PE_EXT_REF lookup.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard WHO audit columns.
Common Use Cases and Queries
Typical scenarios include listing active holds for a student, auditing who raised encumbrances, and filtering by external reference type where encumbrances originate from an external system.
Active encumbrances for a person:
SELECT person_number, encumbrance_type, start_dt, expiry_dt, external_reference_descFROM apps.igs_pe_pers_encumb_vWHERE person_id = :p_person_idAND (expiry_dt IS NULL OR expiry_dt >= TRUNC(SYSDATE));
Encumbrances by external reference of interest (the term the user searched, pe_ext_ref):
SELECT person_number, encumbrance_type, external_reference, external_reference_desc, commentsFROM apps.igs_pe_pers_encumb_vWHERE external_reference IS NOT NULLORDER BY person_number, start_dt DESC;
Audit of authorising responsibility:
SELECT person_number, auth_resp_name, comments, creation_dateFROM apps.igs_pe_pers_encumb_vWHERE auth_resp_id = :p_resp_id;
Because the lookups and responsibilities are outer-joined, rows with missing references remain visible and should be handled with NVL where appropriate.
-
VIEW: APPS.IGS_PE_PERS_ENCUMB_V
12.1.1
-
View: IGS_PE_PERS_ENCUMB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERS_ENCUMB_V, object_name:IGS_PE_PERS_ENCUMB_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_PERS_ENCUMB_V ,
-
View: IGS_PE_HOLD_REL_OVR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_HOLD_REL_OVR_V, object_name:IGS_PE_HOLD_REL_OVR_V, status:VALID, product: IGS - Student System , description: Describes the Hold override or release details , implementation_dba_data: APPS.IGS_PE_HOLD_REL_OVR_V ,
-
View: IGS_PE_PERS_PEN_ENCUMB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERS_PEN_ENCUMB_V, object_name:IGS_PE_PERS_PEN_ENCUMB_V, status:VALID, product: IGS - Student System , description: This entity describes the encumbrances placed on an applicant/student e.g. overdue parking fines, unpaid fees, failure to return library books. , implementation_dba_data: APPS.IGS_PE_PERS_PEN_ENCUMB_V ,
-
View: IGS_PE_PERS_PEN_ENCUMB_V
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the encumbrances placed on an applicant/student e.g. overdue parking fines, unpaid fees, failure to return library books. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_PERS_ENCUMB_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_HOLD_REL_OVR_V
12.2.2
product: IGS - Student System (Obsolete) , description: Describes the Hold override or release details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_HOLD_REL_OVR_V
12.1.1
-
VIEW: APPS.IGS_PE_PERS_ENCUMB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERS_ENCUMB_V, object_name:IGS_PE_PERS_ENCUMB_V, status:VALID,
-
VIEW: APPS.IGS_PE_PERS_PEN_ENCUMB_V
12.1.1
-
VIEW: APPS.IGS_PE_HOLD_REL_OVR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_HOLD_REL_OVR_V, object_name:IGS_PE_HOLD_REL_OVR_V, status:VALID,
-
VIEW: APPS.IGS_PE_PERS_PEN_ENCUMB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERS_PEN_ENCUMB_V, object_name:IGS_PE_PERS_PEN_ENCUMB_V, status:VALID,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,