Search Results previous_last_name
Overview
The APPS.IRC_REGISTERED_USERS view is a reporting and integration object owned by the APPS schema and delivered as part of the PER (Human Resources) product family in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes person-level profile attributes for those individuals who have registered to receive iRecruitment communications — specifically, those whose notification preferences permit access. The view is defined as a join between HZ_PERSON_PROFILES and IRC_NOTIFICATION_PREFERENCES, filtered by the condition ALLOW_ACCESS = 'Y'.
In practice, this view serves as a convenience layer for iRecruitment and HR reporting. Rather than requiring developers and integrators to reconstruct the underlying relationship and permission filter, the view presents a ready-to-query set of registered-user records with derived column aliases. Because it is a view and not a table, it carries no independent storage, inherits the read privileges of its base objects, and reflects the current state of its source rows at query time. The view is documented as VALID in the ETRM metadata, indicating that its compilation status is consistent with its referenced synonyms in the supported 12.2.2 environment.
Underlying Base Objects
The view is defined over two documented referenced base objects, both exposed as synonyms:
- HZ_PERSON_PROFILES (SYNONYM) — aliased as
HPPin the view text, this is the source of all person attributes: name components, phonetic name variants, the previous last name, known-as value, and demographic fields such as date of birth, place of birth, date of death, marital status, and pre-name adjunct. - IRC_NOTIFICATION_PREFERENCES (SYNONYM) — aliased as
INP, this supplies the registration/access flag. The join conditionHPP.PARTY_ID = INP.PARTY_IDlinks the two objects on the party identifier, and the filterINP.ALLOW_ACCESS = 'Y'restricts the result set to parties who have opted to allow access.
The relationship is therefore a one-to-one (or effectively party-keyed) association: person profile data is returned only when a matching notification-preference row exists and explicitly grants access. Because the view text relies on PARTY_ID, the underlying person identifier is converted to a numeric PERSON_ID via TO_NUMBER(HPP.PERSON_IDENTIFIER), which is significant when joining to other HR or party-based tables.
Key Columns
The view exposes fifteen columns. The most functionally relevant include:
- FIRST_NAME, LAST_NAME, MIDDLE_NAME, NAME_SUFFIX — the standard components of the person's full name.
- PREVIOUS_LAST_NAME — the person's prior last name, sourced from
HPP.PERSON_PREVIOUS_LAST_NAME. This is the column most commonly sought when users search for terms such as "previous_last_name", and it supports reporting on name changes for registered users. - KNOWN_AS — the preferred informal name of the person, useful for display and correspondence.
- NAME_PHONETIC, LAST_NAME_PHONETIC, FIRST_NAME_PHONETIC — phonetic representations used for name matching and fuzzy search scenarios.
- PERSON_ID — the numeric person identifier derived from
PERSON_IDENTIFIER, the primary key for joining to other HR entities. - DATE_OF_BIRTH, PLACE_OF_BIRTH, DATE_OF_DEATH, MARITAL_STATUS, PRE_NAME_ADJUNCT — additional demographic and personal attributes carried through from the person profile.
Common Use Cases and Queries
Typical scenarios include identifying registered iRecruitment users for communication campaigns, auditing who has granted access, and reporting on known-as or previous-last-name attributes for name-change tracking.
SELECT person_id, first_name, last_name, previous_last_name, known_as
FROM apps.irc_registered_users
WHERE previous_last_name IS NOT NULL;
SELECT person_id, first_name, last_name, name_phonetic
FROM apps.irc_registered_users
ORDER BY last_name, first_name;
Because the view already enforces the ALLOW_ACCESS = 'Y' filter, queries against it do not need to restate the notification-preference condition; however, consumers should be aware that records without a qualifying preference row are intentionally absent from the result set.
-
View: IRC_REGISTERED_USERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.IRC_REGISTERED_USERS, object_name:IRC_REGISTERED_USERS, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.IRC_REGISTERED_USERS ,
-
View: IRC_REGISTERED_USERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.IRC_REGISTERED_USERS, object_name:IRC_REGISTERED_USERS, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.IRC_REGISTERED_USERS ,
-
View: PER_PEOPLE_F
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_F, object_name:PER_PEOPLE_F, status:VALID, product: PER - Human Resources , description: Secure view based on the corresponding _ALL_ table. , implementation_dba_data: APPS.PER_PEOPLE_F ,
-
View: PER_PEOPLE_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_X, object_name:PER_PEOPLE_X, status:VALID, product: PER - Human Resources , description: Date-effective view. , implementation_dba_data: APPS.PER_PEOPLE_X ,
-
View: PER_ALL_PEOPLE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_PEOPLE, object_name:PER_ALL_PEOPLE, status:VALID, product: PER - Human Resources , description: Date-effective view. , implementation_dba_data: APPS.PER_ALL_PEOPLE ,
-
View: PER_PEOPLE_X
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_X, object_name:PER_PEOPLE_X, status:VALID, product: PER - Human Resources , description: Date-effective view. , implementation_dba_data: APPS.PER_PEOPLE_X ,
-
View: PER_ALL_PEOPLE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_PEOPLE, object_name:PER_ALL_PEOPLE, status:VALID, product: PER - Human Resources , description: Date-effective view. , implementation_dba_data: APPS.PER_ALL_PEOPLE ,
-
View: PER_PEOPLE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE, object_name:PER_PEOPLE, status:VALID, product: PER - Human Resources , description: Date-effective view. , implementation_dba_data: APPS.PER_PEOPLE ,
-
View: PER_PEOPLE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE, object_name:PER_PEOPLE, status:VALID, product: PER - Human Resources , description: Date-effective view. , implementation_dba_data: APPS.PER_PEOPLE ,
-
View: PER_PEOPLE_F
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_F, object_name:PER_PEOPLE_F, status:VALID, product: PER - Human Resources , description: Secure view based on the corresponding _ALL_ table. , implementation_dba_data: APPS.PER_PEOPLE_F ,
-
View: HRFV_PERSONAL_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSONAL_DETAILS, object_name:HRFV_PERSONAL_DETAILS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSONAL_DETAILS ,
-
View: HRFV_PERSONAL_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSONAL_DETAILS, object_name:HRFV_PERSONAL_DETAILS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSONAL_DETAILS ,
-
View: HRU_JP_CREATE_EDUC_ADD
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRU_JP_CREATE_EDUC_ADD, object_name:HRU_JP_CREATE_EDUC_ADD, status:VALID, product: PER - Human Resources , description: This view is Japanaes specific. , implementation_dba_data: APPS.HRU_JP_CREATE_EDUC_ADD ,
-
Lookup Type: PER_ADV_FIND_ITEMS
12.1.1
product: PER - Human Resources , meaning: Advanced Find Items , description: A list of items that a user can use in an advanced find window. ,
-
Lookup Type: PER_ADV_FIND_ITEMS
12.2.2
product: PER - Human Resources , meaning: Advanced Find Items , description: A list of items that a user can use in an advanced find window. ,
-
View: HRU_JP_CREATE_EDUC_ADD
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRU_JP_CREATE_EDUC_ADD, object_name:HRU_JP_CREATE_EDUC_ADD, status:VALID, product: PER - Human Resources , description: This view is Japanaes specific. , implementation_dba_data: APPS.HRU_JP_CREATE_EDUC_ADD ,
-
View: PER_ALL_PEOPLE_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_PEOPLE_D, object_name:PER_ALL_PEOPLE_D, status:VALID, product: PER - Human Resources , description: Used by Datetrack History , implementation_dba_data: APPS.PER_ALL_PEOPLE_D ,
-
View: PER_ALL_PEOPLE_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_PEOPLE_D, object_name:PER_ALL_PEOPLE_D, status:VALID, product: PER - Human Resources , description: Used by Datetrack History , implementation_dba_data: APPS.PER_ALL_PEOPLE_D ,
-
View: HRFV_PERSON_ASSIGNMENT_HISTORY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSON_ASSIGNMENT_HISTORY, object_name:HRFV_PERSON_ASSIGNMENT_HISTORY, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSON_ASSIGNMENT_HISTORY ,
-
View: HRFV_PERSON_ASSIGNMENT_HISTORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSON_ASSIGNMENT_HISTORY, object_name:HRFV_PERSON_ASSIGNMENT_HISTORY, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSON_ASSIGNMENT_HISTORY ,
-
View: PER_PEOPLE_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V2, object_name:PER_PEOPLE_V2, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V2 ,
-
View: PER_PEOPLE_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V2, object_name:PER_PEOPLE_V2, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V2 ,
-
View: PER_PEOPLE_V7
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V7, object_name:PER_PEOPLE_V7, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V7 ,
-
View: PER_PEOPLE_V7
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V7, object_name:PER_PEOPLE_V7, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V7 ,
-
View: PER_ASSIGNMENTS_V3
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_V3, object_name:PER_ASSIGNMENTS_V3, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_ASSIGNMENTS_V3 ,
-
View: PER_ASSIGNMENTS_V3
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_V3, object_name:PER_ASSIGNMENTS_V3, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_ASSIGNMENTS_V3 ,
-
View: PER_PEOPLE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V, object_name:PER_PEOPLE_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V ,
-
View: PER_PEOPLE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V, object_name:PER_PEOPLE_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V ,
-
View: HR_EMPLOYEE_API_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_EMPLOYEE_API_V, object_name:HR_EMPLOYEE_API_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_EMPLOYEE_API_V ,
-
View: HR_EMPLOYEE_API_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_EMPLOYEE_API_V, object_name:HR_EMPLOYEE_API_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_EMPLOYEE_API_V ,
-
View: PER_PEOPLE_V3
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V3, object_name:PER_PEOPLE_V3, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V3 ,
-
View: PER_PEOPLE_V3
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_V3, object_name:PER_PEOPLE_V3, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_PEOPLE_V3 ,