Search Results reviewer_notes
Overview
APPS.IGSFV_PERSON_CREDENTIALS is a read-only Oracle E-Business Suite view that consolidates person credential records maintained within the Oracle Student System (formerly Oracle iLearning/IGS) module. It presents credentials — such as degrees, diplomas, certifications, licenses, and other academic or professional qualifications — associated with a party (person) record in the TCA (Trading Community Architecture) model. The view joins credential transaction data to the HZ_PARTIES table for both the credential holder and the reviewer, and to the credential type definition table, producing a denormalized, reporting-friendly result set.
The view is defined with the WITH READ ONLY clause, which means it cannot be used as a target for DML operations. It is intended strictly for querying, extraction, and integration purposes. The user search reference "coreadi/adc" corresponds to the alias ADC used in the view text for the IGS_AD_CRED_TYPES table, which supplies credential type and description attributes.
Underlying Base Objects
The documented view text references four base objects:
- IGS_PE_CREDENTIALS (PEC) — The primary driving table holding one row per credential assignment, including date received, reviewer notes, recommender details, and audit columns.
- HZ_PARTIES (HZP1) — Joined on
PEC.PERSON_ID = HZP1.PARTY_IDto retrieve the credential holder's party number. - HZ_PARTIES (HZP2) — Outer-joined on
PEC.REVIEWER_ID = HZP2.PARTY_ID(+)to retrieve the reviewer's party number when a reviewer exists. - IGS_AD_CRED_TYPES (ADC) — Joined on
PEC.CREDENTIAL_TYPE_ID = ADC.CREDENTIAL_TYPE_IDto supply the credential type code and description.
No additional base objects are documented in the ETRM metadata for this view.
Key Columns
The view exposes the following significant columns:
- CREDENTIAL_ID — Primary key of the credential record.
- PERSON_ID — Party ID of the credential holder (TCA foreign key).
- CREDENTIAL_TYPE_ID / CREDENTIAL_TYPE / DESCRIPTION — Credential classification, code, and descriptive text sourced from IGS_AD_CRED_TYPES.
- DATE_RECEIVED — Date the credential was awarded or received.
- REVIEWER_ID and the HZP2 PARTY_NUMBER — Identifies the approving/reviewing party where present.
- RECOMMENDER_NAME, RECOMMENDER_TITLE, RECOMMENDER_ORGANIZATION — Descriptive attributes about the external recommender.
- REVIEWER_NOTES — Free-text reviewer commentary.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE.
- A literal lookup column prefixed
_LA:PEC.RATING_CODE...referencing IGS_LOOKUP_VALUES with lookup type PE_CRE_RATING — used by Oracle Forms/Lookups for display of the rating code meaning.
Common Use Cases and Queries
This view is typically used in student credential reporting, integration extracts, and self-service displays. A representative query returns all credentials for a given party:
SELECT CREDENTIAL_TYPE, DESCRIPTION, DATE_RECEIVED, REVIEWER_NOTES FROM APPS.IGSFV_PERSON_CREDENTIALS WHERE PERSON_ID = :p_person_id;- Reviewer activity:
SELECT PERSON_ID, CREDENTIAL_ID, REVIEWER_ID FROM APPS.IGSFV_PERSON_CREDENTIALS WHERE REVIEWER_ID IS NOT NULL; - Type-based analysis:
SELECT CREDENTIAL_TYPE, COUNT(*) FROM APPS.IGSFV_PERSON_CREDENTIALS GROUP BY CREDENTIAL_TYPE;
Because the view is read-only and denormalized, it suits ETL loads, OBIEE/BIP reporting, and inbound interface validation. Care should be taken that outer-join semantics on the reviewer mean REVIEWER_ID may be null without excluding the credential row.
-
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,
-
TABLE: IGS.IGS_AD_CREDENTIALS_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_AD_CREDENTIALS_OLD, status:VALID,
-
TABLE: IGS.IGS_PE_CREDENTIALS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_CREDENTIALS, object_name:IGS_PE_CREDENTIALS, status:VALID,
-
VIEW: APPS.IGSBV_PERSON_CREDENTIALS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PERSON_CREDENTIALS, object_name:IGSBV_PERSON_CREDENTIALS, status:VALID,
-
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: APPS.IGS_PE_CREDENTIALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_CREDENTIALS_V, object_name:IGS_PE_CREDENTIALS_V, status:VALID,
-
View: IGS_PE_CREDENTIALS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Holds credential details for a person , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_PERSON_CREDENTIALS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PERSON_CREDENTIALS, object_name:IGSBV_PERSON_CREDENTIALS, status:VALID, product: IGS - Student System , description: This entity contains information about the person's credentials , implementation_dba_data: APPS.IGSBV_PERSON_CREDENTIALS ,
-
View: IGSBV_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 ,
-
View: IGS_PE_CREDENTIALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_CREDENTIALS_V, object_name:IGS_PE_CREDENTIALS_V, status:VALID, product: IGS - Student System , description: Holds credential details for a person , implementation_dba_data: APPS.IGS_PE_CREDENTIALS_V ,
-
TABLE: IGS.IGS_PE_CRED_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PE_CRED_INT, object_name:IGS_PE_CRED_INT, status:VALID,
-
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 ,
-
APPS.IGS_PE_CREDENTIALS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PE_CREDENTIALS_PKG
12.1.1
-
APPS.IGS_AD_IMP_013 SQL Statements
12.1.1
-
APPS.IGS_AD_IMP_013 dependencies on IGS_GE_DATE
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_IMP_013
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'. ,