Search Results given_name_1_char
Overview
IGS_PE_DUP_MATCHES_P_V is a database view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the IGS — Student System product family. The view is documented as VALID in ETRM for releases 12.1.1 and 12.2.2, and its stated purpose is to expose the duplicate information held about persons. In practice, it presents a flattened, denormalized projection of person-level attributes drawn from the Oracle Human Resources/HZ party model, reshaped into the column naming conventions used by the Student System for duplicate person detection and reconciliation.
Because it is a view rather than a table, it stores no data of its own. Its role in EBS reporting and integration is to provide a stable, read-only interface through which duplicate-person matching processes, data-cleansing routines, and downstream reports can compare candidate person records without needing to understand the joins across HZ_PARTIES, HZ_PERSON_PROFILES, and the person identifier view. This makes it particularly useful when auditing the quality of person records or feeding third-party de-duplication tools.
Underlying Base Objects
The documented view text defines IGS_PE_DUP_MATCHES_P_V over three referenced objects:
- HZ_PARTIES (aliased P) — the master party record, supplying PARTY_ID, PERSON_LAST_NAME, PERSON_FIRST_NAME, and STATUS.
- HZ_PERSON_PROFILES (aliased PP) — the person profile, supplying GENDER, DATE_OF_BIRTH, and DECLARED_ETHNICITY, restricted to the currently effective profile row.
- IGS_PE_PERSON_ID_TYPE_V (aliased PIT) — a Student System view of person identifier types, supplying API_PERSON_ID as PREF_ALTERNATE_ID. It is joined with an outer join (+), so a person without a preferred alternate identifier is still returned.
The join conditions are P.PARTY_ID = PP.PARTY_ID, an effective-dating predicate of SYSDATE BETWEEN PP.EFFECTIVE_START_DATE AND NVL(PP.EFFECTIVE_END_DATE, SYSDATE), and P.PARTY_ID = PIT.PE_PERSON_ID(+). No additional base objects are documented in the ETRM metadata.
Key Columns
The view exposes ten columns, several of which are aliased to match the legacy Student System naming that duplicate-matching logic expects:
- PERSON_ID — the HZ_PARTIES.PARTY_ID, the unique person key.
- SURNAME — the person's last name (PERSON_LAST_NAME).
- SURNAME_5_CHAR — a placeholder column, always NULL, reserved for a five-character surname comparison key.
- GIVEN_NAMES — the person's first/given name (PERSON_FIRST_NAME). This is the column most relevant to searches for "given_names".
- GIVEN_NAME_1_CHAR — a placeholder column, always NULL, reserved for a single-character given-name comparison key.
- SEX — gender from the person profile.
- BIRTH_DT — date of birth from the person profile.
- ETHNIC_ORIGIN — declared ethnicity from the person profile.
- PREF_ALTERNATE_ID — the preferred person identifier from IGS_PE_PERSON_ID_TYPE_V.
- STATUS — the party status code.
Note that the ETRM column listing shows "ETHNIC_ORIGIN" while the view text aliases DECLARED_ETHNICITY to "ETHNIC_ORIGIN_ID"; consumers should verify the actual column name against their database instance.
Common Use Cases and Queries
Typical uses include identifying potential duplicate persons by matching surname, given names, birth date, or gender, and reconciling records against a preferred alternate identifier.
List candidate duplicates on surname and given name:
SELECT person_id, surname, given_names, birth_dt FROM igs_pe_dup_matches_p_v WHERE UPPER(given_names) = UPPER(:p_given_names) AND UPPER(surname) = UPPER(:p_surname);
Find persons sharing a birth date and sex:
SELECT surname, given_names, COUNT(*) FROM igs_pe_dup_matches_p_v GROUP BY surname, given_names HAVING COUNT(*) > 1;
Restrict to active parties with a preferred alternate id:
SELECT person_id, given_names, surname, pref_alternate_id FROM igs_pe_dup_matches_p_v WHERE status = 'A' AND pref_alternate_id IS NOT NULL;
Because the view performs the effective-dating and outer-join logic internally, these queries remain simple and are safe for reporting and integration extracts.
-
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_MATCHES_P_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_PE_DUP_MATCHES_P_V is used for the duplicate information about persons. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_DUP_MATCHES_PP_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_PE_DUP_MATCHES_PP_V is used for the duplicate information about persons. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_PAIR_ACT_PERSON_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_IMP_MATCHES_PP_V
12.1.1
-
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_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_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: APPS.IGS_PE_PAIR_DUP_PERSON_V
12.1.1
-
VIEW: APPS.IGS_PE_PAIR_ACT_PERSON_V
12.1.1
-
View: IGS_AD_IMP_MATCHES_PP_V
12.2.2
product: IGS - Student System (Obsolete) , description: Gets the person details for the import process from the interface tables , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_DUP_MATCHES_PP_V
12.1.1
-
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: APPS.IGS_AD_IMP_MATCHES_PA_V
12.1.1
-
VIEW: APPS.IGS_PE_DUP_MATCHES_P_V
12.1.1
-
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_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_DUP_MATCHES_PA_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_PE_DUP_MATCHES_PA_V is used for the duplicate information about persons. , implementation_dba_data: Not implemented in this database ,
-
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: APPS.IGS_AD_IMP_MATCHES_P_V
12.1.1
-
View: IGS_AD_IMP_MATCHES_P_V
12.2.2
product: IGS - Student System (Obsolete) , description: Gets the person details for the import process from the interface and person statistic tables , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_PAIR_DUP_PERSON_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_DUP_MATCHES_PRIM_PA_V
12.1.1
-
View: IGS_PE_DUP_MATCHES_PRIM_PPA_V
12.2.2
product: IGS - Student System (Obsolete) , description: Contains data of a person and his primary address.This view is used in duplicate matching of person. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_DUP_MATCHES_PRIM_PPA_V
12.1.1
-
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_IMP_MATCHES_PA_V
12.2.2
product: IGS - Student System (Obsolete) , description: Gets the person details for the import process from the interface tables , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_IMP_MATCHES_PPA_V
12.1.1
-
View: IGS_PE_DUP_MATCHES_PPA_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_PE_MATCHES_PPA_V is used for the duplicate information about persons. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_DUP_MATCHES_PRIM_PA_V
12.2.2
product: IGS - Student System (Obsolete) , description: Contains data of a person and his primary address.This view is used in duplicate matching of person. , implementation_dba_data: Not implemented in this database ,
-
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_AD_IMP_MATCHES_PPA_V
12.2.2
product: IGS - Student System (Obsolete) , description: Gets the person details for the import process from the interface and person address tables , implementation_dba_data: Not implemented in this database ,
-
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_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: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.IGS_PE_DUP_MATCHES_PA_V
12.1.1
-
VIEW: APPS.IGS_PE_DUP_MATCHES_PPA_V
12.1.1
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
Lookup Type: DUPLICATE_DATA_ELEMENTS
12.2.2
product: IGS - Student System (Obsolete) , meaning: Duplicate Data Elements , description: Duplicate Data Elements ,
-
Lookup Type: DUPLICATE_DATA_ELEMENTS
12.1.1
product: IGS - Student System , meaning: Duplicate Data Elements , description: Duplicate Data Elements ,