Search Results igsfv_person_credentials
Overview
The view IGSFV_PERSON_CREDENTIALS is an Oracle E-Business Suite (EBS) reporting and integration object owned by the APPS schema and associated with the IGS — Student System product family. In EBS 12.1.1 and 12.2.2 it is documented in the ETRM as a VALID view whose stated purpose is to present "information about the person's credentials." The F in the naming convention typically denotes a foreign-key–joined, denormalized "flat" view intended for external consumption — that is, for OBIEE/BI Publisher reports, extracts, and interface programs — rather than for transactional DML. The view is defined WITH READ ONLY, reinforcing its role as a query-only presentation layer. Note that the single-character prefix IGSFV and surrounding objects (IGS_PE_CREDENTIALS, HZ_PARTIES) make this a Student System construct; it should not be confused with similarly named Oracle iLearning/OLM credential objects found in other schema prefixes.
Underlying Base Objects
The view is defined over four base objects, joined as follows:
- IGS_PE_CREDENTIALS (PEC) — the driving table, holding the person's credential records such as dates, reviewer notes, and recommender details.
- HZ_PARTIES (HZP1) — the person (student/applicant) identified by
PEC.PERSON_ID = HZP1.PARTY_ID. Although referred to as a Person, in the Trading Community Architecture (TCA) model the underlying record is a party. - HZ_PARTIES (HZP2) — the reviewer, joined with an outer join (
HZP2.PARTY_ID(+)) onPEC.REVIEWER_ID, so credentials without an assigned reviewer still appear. - IGS_AD_CRED_TYPES (ADC) — the credential type, joined on
PEC.CREDENTIAL_TYPE_ID = ADC.CREDENTIAL_TYPE_ID, supplying the type code and description.
Because two aliases of HZ_PARTIES are used, the view effectively resolves two distinct party roles (subject and reviewer) within a single row. The ETRM metadata lists no separately documented base objects for 12.2.2, but the embedded view text above provides the authoritative join definition.
Key Columns
- PERSON_NUMBER / PERSON_ID — the party number and internal identifier of the credential holder (HZP1).
- REVIEWER_NUMBER / REVIEWER_ID — the party number and identifier of the reviewer (HZP2); null when unassigned due to the outer join.
- CREDENTIAL_ID / CREDENTIAL_TYPE_ID — primary key of the credential row and its type reference.
- CREDENTIAL_TYPE / CREDENTIAL_TYPE_DESC — the credential type code and human-readable description from
IGS_AD_CRED_TYPES. - DATE_RECEIVED — the date the credential was received.
- RECOMMENDER_NAME / RECOMMENDER_TITLE / RECOMMENDER_ORGANIZATION — recommending party's details.
- REVIEWER_NOTES — free-text comments recorded during review.
- "_LA:RATING" — an Oracle Application Framework (OAF) "_LA:" (Lookup Attribute) pseudo-column that maps
PEC.RATING_CODEtoIGS_LOOKUP_VALUESwith lookup typePE_CRE_RATING, translating the code into itsMEANING. - CREATED_BY / CREATION_DATE / LAST_UPDATED_BY / LAST_UPDATE_DATE — standard WHO audit columns.
Common Use Cases and Queries
The view supports credential tracking and reporting — for example, listing all credentials held by a person, identifying credentials still awaiting reviewer assignment, or extracting recommender information for accreditation and admissions reporting. A representative query retrieves a person's credential history:
SELECT person_number,
credential_type_desc,
date_received,
reviewer_number,
recommender_name
FROM apps.igsfv_person_credentials
WHERE person_number = :p_person_number
ORDER BY date_received DESC;
To surface credentials lacking a reviewer, filter on the outer-joined column:
SELECT credential_id, person_number, credential_type_desc
FROM apps.igsfv_person_credentials
WHERE reviewer_id IS NULL;
Because the view is read-only and denormalized across TCA and Student System tables, it is well suited to concurrent program extracts and BI Publisher data templates. Report developers should apply the appropriate secure predicate on the person party where row-level security is required, and treat it as a query-only interface.
-
View: IGSFV_PERSON_CREDENTIALS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PERSON_CREDENTIALS, object_name:IGSFV_PERSON_CREDENTIALS, status:VALID, product: IGS - Student System , description: This entity contains information about the person's credentials , implementation_dba_data: APPS.IGSFV_PERSON_CREDENTIALS ,
-
View: IGSFV_PERSON_CREDENTIALS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity contains information about the person's credentials , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.IGS_PE_CREDENTIALS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PE_CREDENTIALS, status:VALID,
-
SYNONYM: APPS.IGS_AD_CRED_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_AD_CRED_TYPES, status:VALID,
-
VIEW: APPS.IGSFV_PERSON_CREDENTIALS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PERSON_CREDENTIALS, object_name:IGSFV_PERSON_CREDENTIALS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.HZ_PARTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
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'. ,
-
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'. ,