Search Results given_names
Overview
IGS_PE_DUP_MATCHES_PP_V is a view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the IGS (Student System) product family. Its documented purpose is to expose duplicate person information held against the person and party model, allowing student administration users and integration components to identify and review potential duplicate records for the same individual. In the Oracle EBS 12.1.1 and 12.2.2 releases, the view is registered in ETRM with a status of VALID, confirming that the underlying definition resolves successfully against the standard schema objects shipped with those releases.
The view serves both reporting and data-cleansing functions. Reporting consumers use it to enumerate person records alongside the alternate identifiers and demographic attributes that are typically used in duplicate-detection logic, while integration components use it as a pre-built projection of the person model so that callers do not have to reproduce the joins against the base tables themselves. Because the view normalises the TCA person attributes into Student System naming conventions, it is particularly useful where downstream logic expects IGS-style column names rather than the raw HZ_PARTIES column names.
Underlying Base Objects
The view is defined over four documented base objects: HZ_PARTIES, HZ_PERSON_PROFILES, IGS_PE_ALT_PERS_ID, and IGS_PE_PERSON_ID_TYPE_V. HZ_PARTIES is the primary driver, supplying party identity, party number, and the person name attributes. HZ_PERSON_PROFILES is joined on PARTY_ID and is date-filtered so that only the currently effective profile row is returned, using SYSDATE between EFFECTIVE_START_DATE and NVL(EFFECTIVE_END_DATE, SYSDATE).
IGS_PE_ALT_PERS_ID and IGS_PE_PERSON_ID_TYPE_V are both outer-joined, as indicated by the (+) operators in the view text. The most recent alternate person identifier is surfaced through IGS_PE_PERSON_ID_TYPE_V, which supplies PREF_ALTERNATE_ID; this outer join ensures that persons without a preferred alternate identifier are still returned. IGS_PE_ALT_PERS_ID is outer-joined on PE_PERSON_ID and supplies the alternate person identifier rows, their identifier types, and their effective date ranges.
Key Columns
- PERSON_ID / PERSON_NUMBER — mapped from HZ_PARTIES.PARTY_ID and PARTY_NUMBER, providing the primary party identity and human-readable party number.
- SURNAME / GIVEN_NAMES — derived from PERSON_LAST_NAME and PERSON_FIRST_NAME. GIVEN_NAMES is the column most directly associated with the "given_names" search term, and it is accompanied by GIVEN_NAME_1_CHAR, which exposes the first character of the given name for phonetic or initial-based matching.
- SURNAME_5_CHAR — defined as NULL in the view text, indicating the column is retained for interface compatibility but not populated.
- SEX / BIRTH_DT — sourced from HZ_PERSON_PROFILES.GENDER and DATE_OF_BIRTH, both commonly used as matching criteria in duplicate detection.
- PREF_ALTERNATE_ID — from IGS_PE_PERSON_ID_TYPE_V.API_PERSON_ID, the preferred alternate identifier for the person.
- API_PERSON_ID / PERSON_ID_TYPE / API_START_DATE / API_END_DATE — the alternate person identifier value, its classification, and the period during which it is effective.
- ETHNIC_ORIGIN_ID — from DECLARED_ETHNICITY; the documented column list labels this position ETHNIC_ORIGIN, while the view text labels it ETHNIC_ORIGIN_ID.
- STATUS — the party status value from HZ_PARTIES.
Common Use Cases and Queries
The view is typically queried to produce candidate duplicate sets for review, to reconcile alternate identifiers against party records, or to feed name-matching routines that rely on surname and given name combinations.
A basic lookup on given name and surname:
SELECT person_id, person_number, surname, given_names, birth_dt FROM apps.igs_pe_dup_matches_pp_v WHERE UPPER(given_names) = UPPER(:given_name) AND UPPER(surname) = UPPER(:surname);
An initial-based candidate scan using the one-character column:
SELECT person_id, person_number, surname, given_names, given_name_1_char, birth_dt FROM apps.igs_pe_dup_matches_pp_v WHERE given_name_1_char = :initial AND birth_dt = :dob;
Retrieving preferred alternate identifiers for a known party:
SELECT person_id, person_number, pref_alternate_id, api_person_id, person_id_type FROM apps.igs_pe_dup_matches_pp_v WHERE person_id = :party_id;
-
View: IGS_PE_DUP_MATCHES_PP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_DUP_MATCHES_PP_V, object_name:IGS_PE_DUP_MATCHES_PP_V, status:VALID, product: IGS - Student System , description: IGS_PE_DUP_MATCHES_PP_V is used for the duplicate information about persons. , implementation_dba_data: APPS.IGS_PE_DUP_MATCHES_PP_V ,
-
View: IGS_PE_DUP_MATCHES_P_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_DUP_MATCHES_P_V, object_name:IGS_PE_DUP_MATCHES_P_V, status:VALID, product: IGS - Student System , description: IGS_PE_DUP_MATCHES_P_V is used for the duplicate information about persons. , implementation_dba_data: APPS.IGS_PE_DUP_MATCHES_P_V ,
-
View: IGS_PE_DUP_PAIRS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_DUP_PAIRS_V, object_name:IGS_PE_DUP_PAIRS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_DUP_PAIRS_V ,
-
View: IGS_AD_ALIAS_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ALIAS_INT, object_name:IGS_AD_ALIAS_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_ALIAS_INT ,
-
View: IGS_PE_DUP_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_DUP_PERSON_V, object_name:IGS_PE_DUP_PERSON_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_DUP_PERSON_V ,
-
View: IGSBV_UC_ENQUIRY_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_UC_ENQUIRY_DETAILS, object_name:IGSBV_UC_ENQUIRY_DETAILS, status:VALID, product: IGS - Student System , description: Base View for basic person details of a UCAS applicant making an Extra or Clearing application. , implementation_dba_data: APPS.IGSBV_UC_ENQUIRY_DETAILS ,
-
View: IGS_PE_DUP_MATCHES_PRIM_PA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_DUP_MATCHES_PRIM_PA_V, object_name:IGS_PE_DUP_MATCHES_PRIM_PA_V, status:VALID, product: IGS - Student System , description: Contains data of a person and his primary address.This view is used in duplicate matching of person. , implementation_dba_data: APPS.IGS_PE_DUP_MATCHES_PRIM_PA_V ,
-
View: IGS_AD_RELATIONS_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_RELATIONS_INT, object_name:IGS_AD_RELATIONS_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_RELATIONS_INT ,
-
View: IGS_PE_DUP_MATCHES_PA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_DUP_MATCHES_PA_V, object_name:IGS_PE_DUP_MATCHES_PA_V, status:VALID, product: IGS - Student System , description: IGS_PE_DUP_MATCHES_PA_V is used for the duplicate information about persons. , implementation_dba_data: APPS.IGS_PE_DUP_MATCHES_PA_V ,
-
View: IGS_PE_DUP_MATCHES_PPA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_DUP_MATCHES_PPA_V, object_name:IGS_PE_DUP_MATCHES_PPA_V, status:VALID, product: IGS - Student System , description: IGS_PE_MATCHES_PPA_V is used for the duplicate information about persons. , implementation_dba_data: APPS.IGS_PE_DUP_MATCHES_PPA_V ,
-
View: IGS_PE_DUP_MATCHES_PRIM_PPA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_DUP_MATCHES_PRIM_PPA_V, object_name:IGS_PE_DUP_MATCHES_PRIM_PPA_V, status:VALID, product: IGS - Student System , description: Contains data of a person and his primary address.This view is used in duplicate matching of person. , implementation_dba_data: APPS.IGS_PE_DUP_MATCHES_PRIM_PPA_V ,
-
View: IGSFV_UC_ENQUIRY_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UC_ENQUIRY_DETAILS, object_name:IGSFV_UC_ENQUIRY_DETAILS, status:VALID, product: IGS - Student System , description: Full View for basic person details of a UCAS applicant making an Extra or Clearing application. , implementation_dba_data: APPS.IGSFV_UC_ENQUIRY_DETAILS ,
-
View: IGS_PE_PERSON_LKUPV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSON_LKUPV_V, object_name:IGS_PE_PERSON_LKUPV_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_PERSON_LKUPV_V ,
-
View: IGS_PE_PERSON_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSON_DTLS_V, object_name:IGS_PE_PERSON_DTLS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_PERSON_DTLS_V ,
-
View: IGS_AD_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_INTERFACE_V, object_name:IGS_AD_INTERFACE_V, status:VALID, product: IGS - Student System , description: Created using a join condition between igs_ad_interface and igs_lookups_view , implementation_dba_data: APPS.IGS_AD_INTERFACE_V ,
-
View: IGS_AD_INTERFACE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_INTERFACE, object_name:IGS_AD_INTERFACE, status:VALID, product: IGS - Student System , description: Holds import interface run details when admissions data is imported into system , implementation_dba_data: APPS.IGS_AD_INTERFACE ,
-
View: IGS_PE_PERSON_ALIAS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSON_ALIAS_V, object_name:IGS_PE_PERSON_ALIAS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_PERSON_ALIAS_V ,
-
View: IGS_AD_INTERFACE_DTL_DSCP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_INTERFACE_DTL_DSCP_V, object_name:IGS_AD_INTERFACE_DTL_DSCP_V, status:VALID, product: IGS - Student System , description: This view is created for implementing Detail Discrepancy Rule, basing on IGS_AD_INTERFACE_ALL table , implementation_dba_data: APPS.IGS_AD_INTERFACE_DTL_DSCP_V ,
-
View: IGS_PE_FAMILY_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_FAMILY_DTLS_V, object_name:IGS_PE_FAMILY_DTLS_V, status:VALID, product: IGS - Student System , description: Obsolete - View to see the family details for the Student . , implementation_dba_data: APPS.IGS_PE_FAMILY_DTLS_V ,
-
Lookup Type: IGS_PE_DTL_ATTR_DISCRP_RULE
12.1.1
product: IGS - Student System , meaning: Person Detail Attribute Discrepancy Rule , description: Person Detail Attribute Discrepancy Rule ,
-
View: IGS_EN_SCA_STATUS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SCA_STATUS_V, object_name:IGS_EN_SCA_STATUS_V, status:VALID, product: IGS - Student System , description: This view describes student course attempt status along with displaying the course information and student information. , implementation_dba_data: APPS.IGS_EN_SCA_STATUS_V ,
-
View: IGS_AD_IMP_MATCHES_P_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_IMP_MATCHES_P_V, object_name:IGS_AD_IMP_MATCHES_P_V, status:VALID, product: IGS - Student System , description: Gets the person details for the import process from the interface and person statistic tables , implementation_dba_data: APPS.IGS_AD_IMP_MATCHES_P_V ,
-
View: IGS_PS_SCH_INSTR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_INSTR, object_name:IGS_PS_SCH_INSTR, status:VALID, product: IGS - Student System , description: Retrofitted , implementation_dba_data: APPS.IGS_PS_SCH_INSTR ,
-
View: IGS_RE_SPRVSR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_RE_SPRVSR_V, object_name:IGS_RE_SPRVSR_V, status:VALID, product: IGS - Student System , description: View of RESEARCH_SUPERVISOR table , implementation_dba_data: APPS.IGS_RE_SPRVSR_V ,
-
View: IGS_AD_PS_APPL_APLCNTX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_APLCNTX_V, object_name:IGS_AD_PS_APPL_APLCNTX_V, status:VALID, product: IGS - Student System , description: View of IGS_AD_PS_APPL, for forms requiring this table as a context block. - Obsolete , implementation_dba_data: APPS.IGS_AD_PS_APPL_APLCNTX_V ,
-
View: IGS_PE_PAIR_DUP_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PAIR_DUP_PERSON_V, object_name:IGS_PE_PAIR_DUP_PERSON_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_PAIR_DUP_PERSON_V ,
-
View: IGS_SS_USEC_OCCURENCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_USEC_OCCURENCES_V, object_name:IGS_SS_USEC_OCCURENCES_V, status:VALID, product: IGS - Student System , description: This view stores Unit Section Occurrences. , implementation_dba_data: APPS.IGS_SS_USEC_OCCURENCES_V ,
-
View: IGS_PR_DISPLAY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_DISPLAY_V, object_name:IGS_PR_DISPLAY_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PR_DISPLAY_V ,
-
View: IGS_SS_PERSON_SEARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_PERSON_SEARCH_V, object_name:IGS_SS_PERSON_SEARCH_V, status:VALID, product: IGS - Student System , description: The entity is used in Self Service to query for a Person , implementation_dba_data: APPS.IGS_SS_PERSON_SEARCH_V ,
-
View: IGS_AD_IMP_MATCHES_PP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_IMP_MATCHES_PP_V, object_name:IGS_AD_IMP_MATCHES_PP_V, status:VALID, product: IGS - Student System , description: Gets the person details for the import process from the interface tables , implementation_dba_data: APPS.IGS_AD_IMP_MATCHES_PP_V ,
-
View: IGS_PE_PAIR_ACT_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PAIR_ACT_PERSON_V, object_name:IGS_PE_PAIR_ACT_PERSON_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_PAIR_ACT_PERSON_V ,
-
View: IGS_AD_SS_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_SS_PERSON_V, object_name:IGS_AD_SS_PERSON_V, status:VALID, product: IGS - Student System , description: This view retrieves the Person Information , implementation_dba_data: APPS.IGS_AD_SS_PERSON_V ,
-
View: IGS_PE_PERSON_SV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSON_SV, object_name:IGS_PE_PERSON_SV, status:VALID, product: IGS - Student System , description: IGS_PE_PERSON_SV is used to manipulate the secured information about persons stored in the database. , implementation_dba_data: APPS.IGS_PE_PERSON_SV ,
-
View: IGS_AD_IMP_MATCHES_PA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_IMP_MATCHES_PA_V, object_name:IGS_AD_IMP_MATCHES_PA_V, status:VALID, product: IGS - Student System , description: Gets the person details for the import process from the interface tables , implementation_dba_data: APPS.IGS_AD_IMP_MATCHES_PA_V ,
-
View: IGS_AD_IMP_PAR_MATCHES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_IMP_PAR_MATCHES_V, object_name:IGS_AD_IMP_PAR_MATCHES_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_IMP_PAR_MATCHES_V ,
-
View: IGS_FI_PARTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_PARTIES_V, object_name:IGS_FI_PARTIES_V, status:VALID, product: IGS - Student System , description: Displays parties of type 'PERSON' and 'ORGANIZATION' and related context information. , implementation_dba_data: APPS.IGS_FI_PARTIES_V ,
-
View: IGS_RC_I_PERSON_V
12.1.1
product: IGS - Student System , description: Person View , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSON_V, object_name:IGS_PE_PERSON_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_PERSON_V ,
-
View: IGS_AD_SS_INTPER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_SS_INTPER_V, object_name:IGS_AD_SS_INTPER_V, status:VALID, product: IGS - Student System , description: INS Dependent details , implementation_dba_data: APPS.IGS_AD_SS_INTPER_V ,
-
View: IGS_AD_IMP_MATCHES_PPA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_IMP_MATCHES_PPA_V, object_name:IGS_AD_IMP_MATCHES_PPA_V, status:VALID, product: IGS - Student System , description: Gets the person details for the import process from the interface and person address tables , implementation_dba_data: APPS.IGS_AD_IMP_MATCHES_PPA_V ,
-
View: IGS_PE_PERSON
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_PERSON, object_name:IGS_PE_PERSON, status:VALID, product: IGS - Student System , description: IGS_PE_PERSON is used to manipulate the information about persons stored in the database. , implementation_dba_data: APPS.IGS_PE_PERSON ,
-
View: IGR_I_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGR_I_PERSON_V, object_name:IGR_I_PERSON_V, status:VALID, product: IGS - Student System , description: Person View , implementation_dba_data: APPS.IGR_I_PERSON_V ,
-
View: IGS_AD_ENQ_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ENQ_PERSON_V, object_name:IGS_AD_ENQ_PERSON_V, status:VALID, product: IGS - Student System , description: Obsolete , implementation_dba_data: APPS.IGS_AD_ENQ_PERSON_V ,
-
View: IGS_AD_POSTADM_MISS_ITM_LTR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_POSTADM_MISS_ITM_LTR_V, object_name:IGS_AD_POSTADM_MISS_ITM_LTR_V, status:VALID, product: IGS - Student System , description: It returns the Missing items for Post Admission Requirements , implementation_dba_data: APPS.IGS_AD_POSTADM_MISS_ITM_LTR_V ,
-
View: IGS_PS_SCH_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_INT, object_name:IGS_PS_SCH_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_SCH_INT ,
-
View: IGS_AS_UAI_ETISTD_EXAM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UAI_ETISTD_EXAM_V, object_name:IGS_AS_UAI_ETISTD_EXAM_V, status:VALID, product: IGS - Student System , description: Created to supply the ETI, student exam timetabling interface, system with information it requires to determine that student unit attempt assessment items to timetable. , implementation_dba_data: APPS.IGS_AS_UAI_ETISTD_EXAM_V ,
-
View: IGS_PE_API_ALT_PERS_ID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_API_ALT_PERS_ID_V, object_name:IGS_PE_API_ALT_PERS_ID_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PE_API_ALT_PERS_ID_V ,
-
View: IGS_AD_RESI_LETTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_RESI_LETTER_V, object_name:IGS_AD_RESI_LETTER_V, status:VALID, product: IGS - Student System , description: It would return the Residency Details of a student , implementation_dba_data: APPS.IGS_AD_RESI_LETTER_V ,
-
View: IGS_AD_ACK_LETTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ACK_LETTER_V, object_name:IGS_AD_ACK_LETTER_V, status:VALID, product: IGS - Student System , description: It would return the Acknowledgement Details of a student , implementation_dba_data: APPS.IGS_AD_ACK_LETTER_V ,
-
View: IGS_AD_INTERVIEW_LETTERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_INTERVIEW_LETTERS_V, object_name:IGS_AD_INTERVIEW_LETTERS_V, status:VALID, product: IGS - Student System , description: Admission Interview Letters , implementation_dba_data: APPS.IGS_AD_INTERVIEW_LETTERS_V ,