Search Results city_match
AI-generated from documented ETRM metadata — verify critical details on the linked pages.
Overview
The view IGF_AP_PERSON_MATCH_V belongs to the IGF — Financial Aid product family within Oracle E-Business Suite, a module documented as obsolete in release 12.2.2. Despite its obsolete status, the view is still catalogued in the ETRM repository, which confirms the historical role it played in the Financial Aid person-matching subsystem. Its purpose was to present a consolidated, review-oriented result set combining prospective applicant person matches with the detail-level match attributes generated by Oracle's person-matching logic.
The view is not a base table but a denormalized join construct, intended primarily for reporting and downstream integration. It exposes identity match outcomes (SSN, name, date of birth, address, city, and ZIP) alongside record status, allowing functional users and technical developers to identify person records requiring manual review. The object documentation explicitly states that the view was not implemented in the reference database, and no base objects are formally documented in the ETRM metadata, meaning its definition must be read directly from the embedded view text.
Underlying Base Objects
The view is defined over three referenced base objects, as shown in its view text:
- IGF_AP_PERSON_MATCH (APM) — the parent match run header, keyed by APM_ID. It supplies run-level attributes such as CSS_ID, SI_ID, RECORD_TYPE, DATE_RUN, and CI_CAL_TYPE / CI_SEQUENCE_NUMBER.
- IGF_AP_MATCH_DETAILS (AMD) — the detail table containing per-person match results, joined to the parent on APM_ID. It supplies PERSON_ID and the individual match flags and MATCH_SCORE.
- HZ_PARTIES (PE) — the Trading Community Architecture party master, joined on PARTY_ID = PERSON_ID, providing the person's name and PARTY_NUMBER.
The join condition is strictly on APM.APM_ID = AMD.APM_ID and PE.PARTY_ID = AMD.PERSON_ID, with an added filter restricting output to records where APM.RECORD_STATUS = 'REVIEW'. This means only match runs awaiting human adjudication are returned by the view.
Key Columns
- DATE_RUN — the date on which the person-match process was executed; central to the searched term and to time-based filtering.
- APM_ID / AMD_ID — surrogate keys for the match header and detail rows.
- PERSON_ID / PERSON_NUMBER / NAME — the matched person's identifiers and a concatenated last-name-first display name derived from HZ_PARTIES.
- SSN_MATCH, GIVEN_NAME_MATCH, SURNAME_MATCH, DOB_MATCH, ADDRESS_MATCH, CITY_MATCH, ZIP_MATCH — binary match indicators for each identity attribute.
- MATCH_SCORE — an aggregate confidence value used to rank or triage potential duplicates.
- CI_CAL_TYPE / CI_SEQUENCE_NUMBER / RECORD_TYPE / CSS_ID / SI_ID — academic and source-system context columns.
- RECORD_STATUS and audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN).
Common Use Cases and Queries
Typical uses include reviewing person-match runs by date, prioritising high-confidence duplicates, and exporting review queues to downstream systems. A representative query filtering on the searched attribute DATE_RUN would be:
SELECT person_id, person_number, name, match_score, date_run
FROM igf_ap_person_match_v
WHERE TRUNC(date_run) = TRUNC(SYSDATE);
Additional scenarios include sorting by MATCH_SCORE descending to surface the strongest candidates, or filtering on individual match flags (for example, WHERE ssn_match = 'Y') to isolate specific duplicate patterns. Because the view is filtered to RECORD_STATUS = 'REVIEW', it is unsuitable for historical or closed match reporting.
-
View: IGF_AP_PERSON_MATCH_V
12.1.1
25 columns
↳ HZ_PARTIES
↳ IGF_AP_MATCH_DETAILS
↳ IGF_AP_PERSON_MATCH
Explore IGF module →
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_PERSON_MATCH_V, object_name:IGF_AP_PERSON_MATCH_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AP_PERSON_MATCH_V ,
-
Table: IGF_AP_MATCH_DETAILS
12.1.1
28 columns
satellite-leaning
Explore IGF module →
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_MATCH_DETAILS, object_name:IGF_AP_MATCH_DETAILS, status:VALID, product: IGF - Financial Aid , description: Holds the match details in case the student has a partial match with the incoming ISIR or Profile record , implementation_dba_data: IGF.IGF_AP_MATCH_DETAILS ,
-
VIEW: APPS.IGF_AP_PERSON_MATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_PERSON_MATCH_V, object_name:IGF_AP_PERSON_MATCH_V, status:VALID,
-
View: IGF_AP_PERSON_MATCH_V
12.2.2
Explore IGF module →
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGF.IGF_AP_MATCH_DETAILS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_MATCH_DETAILS, object_name:IGF_AP_MATCH_DETAILS, status:VALID,
-
APPS.IGF_AP_MATCH_DETAILS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_MATCH_DETAILS_PKG
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,