Search Results per_people_x
Overview
PER_PEOPLE_X is a date-effective (datetrack) view owned by the APPS schema in Oracle E-Business Suite, delivered with the PER – Human Resources product. It exposes person records across the full spectrum of person types managed by Oracle HRMS, including employees, applicants, contacts, and other party classifications. Its defining characteristic is that it presents the complete temporal history of each person row: each logical person may appear multiple times, once per valid effective date range, rather than as a single consolidated record. Consequently, PER_PEOPLE_X is not a simple flattened person directory but a time-aware projection of the underlying date-tracked person data model.
The view is a standard reporting and integration artifact. Because it carries effective start and end dates alongside business group context, it is used by concurrent programs, BI Publisher reports, OAF pages, interfaces, and third-party integrations that must respect date-effective person attributes. The presence of the global_person_id search term in this context reflects the common need to join person records to the global (cross-business-group) person identifier maintained elsewhere in the HRMS data model. Note that GLOBAL_PERSON_ID is not among the columns listed in the documented view text; where a global person identifier is required, it must be sourced from the related global person tables and joined on PERSON_ID, or obtained through the HR_GENERAL package.
Underlying Base Objects
According to ETRM metadata for 12.2.2, PER_PEOPLE_X is defined over the following referenced base objects:
- PER_PEOPLE_F (VIEW) – the primary date-effective person entity supplying the core person columns and datetrack dates.
- HR_GENERAL (PACKAGE) – provides general HRMS utility functions used for derived or secured attribute resolution.
- HR_PERSON_NAME (PACKAGE) – resolves formatted and structured name information such as FULL_NAME, KNOWN_AS, and title handling.
- HR_SECURITY (PACKAGE) – enforces security profile restrictions, ensuring only persons visible to the querying responsibility are returned.
Because HR_SECURITY participates in the definition, query performance and result sets are directly affected by the security profile assigned to the session. The view therefore acts as a secured, name-resolved, date-effective projection of PER_PEOPLE_F rather than a raw table passthrough.
Key Columns
- PERSON_ID – primary identifier for the person; the principal join key to other HRMS objects.
- EFFECTIVE_START_DATE / EFFECTIVE_END_DATE – the datetrack range defining the validity of each row.
- BUSINESS_GROUP_ID – the business group under which the person record is defined.
- PERSON_TYPE_ID – classification of the person (employee, applicant, contact, etc.).
- EMPLOYEE_NUMBER / APPLICANT_NUMBER – business-facing identifiers, populated by person type.
- CURRENT_EMPLOYEE_FLAG, CURRENT_APPLICANT_FLAG, CURRENT_EMP_OR_APL_FLAG – status flags indicating current classification.
- FULL_NAME, LAST_NAME, FIRST_NAME, KNOWN_AS, SUFFIX, TITLE, PREVIOUS_LAST_NAME – name attributes resolved via HR_PERSON_NAME.
- START_DATE, DATE_OF_BIRTH, SEX, MARITAL_STATUS, NATIONALITY, NATIONAL_IDENTIFIER – core personal attributes.
- EMAIL_ADDRESS, WORK_TELEPHONE – contact attributes.
- ATTRIBUTE1–30 and PER_INFORMATION1–30 – descriptive flexfield and developer extensibility columns.
- OBJECT_VERSION_NUMBER, LAST_UPDATE_DATE, CREATED_BY – concurrency and audit columns.
Common Use Cases and Queries
Typical scenarios include point-in-time headcount reporting, applicant and employee reconciliation, name and contact extracts, and integrations that must supply the person record valid on a given date.
Retrieve the current effective row for every person:
SELECT person_id, employee_number, full_name, effective_start_date, effective_end_date FROM apps.per_people_x WHERE TRUNC(SYSDATE) BETWEEN effective_start_date AND effective_end_date;
Retrieve a person's history:
SELECT person_id, full_name, effective_start_date, effective_end_date FROM apps.per_people_x WHERE person_id = :person_id ORDER BY effective_start_date;
Join to a global person identifier maintained outside this view:
SELECT p.person_id, p.full_name, g.global_person_id FROM apps.per_people_x p, apps.per_global_person g WHERE p.person_id = g.person_id AND TRUNC(SYSDATE) BETWEEN p.effective_start_date AND p.effective_end_date;
Because rows are date-effective, queries must always constrain the effective dates to avoid returning historical versions of the same person.
-
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_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: HRFV_JOB_APPLICATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_JOB_APPLICATIONS, object_name:HRFV_JOB_APPLICATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_JOB_APPLICATIONS ,
-
View: HRFV_JOB_APPLICATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_JOB_APPLICATIONS, object_name:HRFV_JOB_APPLICATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_JOB_APPLICATIONS ,
-
View: HRFV_QUALIFICATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_QUALIFICATIONS, object_name:HRFV_QUALIFICATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_QUALIFICATIONS ,
-
View: HRFV_PERSONAL_BACKGROUND_INFO
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSONAL_BACKGROUND_INFO, object_name:HRFV_PERSONAL_BACKGROUND_INFO, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSONAL_BACKGROUND_INFO ,
-
View: HRFV_QUALIFICATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_QUALIFICATIONS, object_name:HRFV_QUALIFICATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_QUALIFICATIONS ,
-
View: HRFV_PERSONAL_BACKGROUND_INFO
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSONAL_BACKGROUND_INFO, object_name:HRFV_PERSONAL_BACKGROUND_INFO, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSONAL_BACKGROUND_INFO ,
-
View: HRFV_PERSONAL_REHIRE_INFO
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSONAL_REHIRE_INFO, object_name:HRFV_PERSONAL_REHIRE_INFO, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSONAL_REHIRE_INFO ,
-
View: HRFV_PERSONAL_MEDICAL_INFO
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSONAL_MEDICAL_INFO, object_name:HRFV_PERSONAL_MEDICAL_INFO, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSONAL_MEDICAL_INFO ,
-
View: HRFV_PERSONAL_REHIRE_INFO
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSONAL_REHIRE_INFO, object_name:HRFV_PERSONAL_REHIRE_INFO, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSONAL_REHIRE_INFO ,
-
View: HRFV_PERSONAL_MEDICAL_INFO
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSONAL_MEDICAL_INFO, object_name:HRFV_PERSONAL_MEDICAL_INFO, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSONAL_MEDICAL_INFO ,
-
View: HRFV_SCHOOL_COLL_ATTENDANCES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SCHOOL_COLL_ATTENDANCES, object_name:HRFV_SCHOOL_COLL_ATTENDANCES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SCHOOL_COLL_ATTENDANCES ,
-
View: HRFV_SCHOOL_COLL_ATTENDANCES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SCHOOL_COLL_ATTENDANCES, object_name:HRFV_SCHOOL_COLL_ATTENDANCES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SCHOOL_COLL_ATTENDANCES ,
-
View: HRFV_ACCRUAL_VALUES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ACCRUAL_VALUES, object_name:HRFV_ACCRUAL_VALUES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ACCRUAL_VALUES ,
-
View: HRFV_ACCRUAL_VALUES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ACCRUAL_VALUES, object_name:HRFV_ACCRUAL_VALUES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ACCRUAL_VALUES ,
-
View: HRFV_PHONES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PHONES, object_name:HRFV_PHONES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PHONES ,
-
View: HRFV_ADA_DISABILITIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ADA_DISABILITIES, object_name:HRFV_ADA_DISABILITIES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ADA_DISABILITIES ,
-
View: HRFV_CONTACTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_CONTACTS, object_name:HRFV_CONTACTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_CONTACTS ,
-
View: HRFV_GRADE_STEP_PLACEMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GRADE_STEP_PLACEMENTS, object_name:HRFV_GRADE_STEP_PLACEMENTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GRADE_STEP_PLACEMENTS ,
-
View: HRFV_GB_PERSONAL_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GB_PERSONAL_DETAILS, object_name:HRFV_GB_PERSONAL_DETAILS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GB_PERSONAL_DETAILS ,
-
View: HRFV_US_PERSONAL_DETAILS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_US_PERSONAL_DETAILS, object_name:HRFV_US_PERSONAL_DETAILS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_US_PERSONAL_DETAILS ,
-
View: HRFV_SUBJECTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SUBJECTS, object_name:HRFV_SUBJECTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SUBJECTS ,
-
View: HRFV_ADA_DISABILITIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ADA_DISABILITIES, object_name:HRFV_ADA_DISABILITIES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ADA_DISABILITIES ,
-
View: HRFV_GRADE_STEP_PLACEMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GRADE_STEP_PLACEMENTS, object_name:HRFV_GRADE_STEP_PLACEMENTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GRADE_STEP_PLACEMENTS ,
-
View: HRFV_PHONES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PHONES, object_name:HRFV_PHONES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PHONES ,
-
View: HRFV_PERSON_SPECIAL_INFO
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSON_SPECIAL_INFO, object_name:HRFV_PERSON_SPECIAL_INFO, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSON_SPECIAL_INFO ,
-
View: HRFV_GB_PERSONAL_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GB_PERSONAL_DETAILS, object_name:HRFV_GB_PERSONAL_DETAILS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GB_PERSONAL_DETAILS ,
-
View: HRFV_CONTACTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_CONTACTS, object_name:HRFV_CONTACTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_CONTACTS ,
-
View: HRFV_COMPETENCE_PROFILES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_COMPETENCE_PROFILES, object_name:HRFV_COMPETENCE_PROFILES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_COMPETENCE_PROFILES ,
-
View: HRFV_SUPERVISORS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SUPERVISORS, object_name:HRFV_SUPERVISORS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SUPERVISORS ,
-
View: HRFV_US_PERSONAL_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_US_PERSONAL_DETAILS, object_name:HRFV_US_PERSONAL_DETAILS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_US_PERSONAL_DETAILS ,
-
View: HRFV_REVIEWS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_REVIEWS, object_name:HRFV_REVIEWS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_REVIEWS ,
-
View: HRFV_ASSIGNMENT_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ASSIGNMENT_COSTS, object_name:HRFV_ASSIGNMENT_COSTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ASSIGNMENT_COSTS ,
-
View: HRFV_ADA_DIS_ACCOMMODATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ADA_DIS_ACCOMMODATIONS, object_name:HRFV_ADA_DIS_ACCOMMODATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ADA_DIS_ACCOMMODATIONS ,
-
View: HRFV_PERSON_SPECIAL_INFO
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSON_SPECIAL_INFO, object_name:HRFV_PERSON_SPECIAL_INFO, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSON_SPECIAL_INFO ,
-
View: HRFV_ADA_DIS_ACCOMMODATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ADA_DIS_ACCOMMODATIONS, object_name:HRFV_ADA_DIS_ACCOMMODATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ADA_DIS_ACCOMMODATIONS ,
-
View: HRFV_SALARY_COMPONENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SALARY_COMPONENTS, object_name:HRFV_SALARY_COMPONENTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SALARY_COMPONENTS ,
-
View: HRFV_SALARY_COMPONENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SALARY_COMPONENTS, object_name:HRFV_SALARY_COMPONENTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SALARY_COMPONENTS ,
-
View: HRFV_PROBATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PROBATIONS, object_name:HRFV_PROBATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PROBATIONS ,
-
View: HRFV_SUBJECTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SUBJECTS, object_name:HRFV_SUBJECTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SUBJECTS ,
-
View: HRFV_REVIEWS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_REVIEWS, object_name:HRFV_REVIEWS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_REVIEWS ,
-
View: HRFV_REVIEWERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_REVIEWERS, object_name:HRFV_REVIEWERS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_REVIEWERS ,
-
View: HRFV_ASSIGNMENT_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ASSIGNMENT_COSTS, object_name:HRFV_ASSIGNMENT_COSTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ASSIGNMENT_COSTS ,
-
View: HRFV_GRD_PLACEMNT_PROG_PT_VALS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GRD_PLACEMNT_PROG_PT_VALS, object_name:HRFV_GRD_PLACEMNT_PROG_PT_VALS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GRD_PLACEMNT_PROG_PT_VALS ,
-
View: HRFV_REVIEWERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_REVIEWERS, object_name:HRFV_REVIEWERS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_REVIEWERS ,
-
View: HRFV_GRD_STEP_PLACEMNT_HISTORY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GRD_STEP_PLACEMNT_HISTORY, object_name:HRFV_GRD_STEP_PLACEMNT_HISTORY, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GRD_STEP_PLACEMNT_HISTORY ,
-
View: HRFV_COMPETENCE_PROFILES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_COMPETENCE_PROFILES, object_name:HRFV_COMPETENCE_PROFILES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_COMPETENCE_PROFILES ,
-
View: HRFV_GB_ADDRESSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GB_ADDRESSES, object_name:HRFV_GB_ADDRESSES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GB_ADDRESSES ,
-
View: HRFV_GB_ADDRESSES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_GB_ADDRESSES, object_name:HRFV_GB_ADDRESSES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_GB_ADDRESSES ,