Search Results date_employee_data_verified
Overview
APPS.POS_PER_PEOPLE_X_V is a public Oracle E-Business Suite view that exposes the columns of the PER_PEOPLE_X entity in a form suitable for reporting, integration, and concurrent processing. In the EBS 12.1.1 and 12.2.2 data models, PER_PEOPLE_X is the dated (effective-dated) extension table for person records stored in PER_ALL_PEOPLE_F. The _X suffix designates the "extra information" table that holds non-key, implementation-specific person attributes — notably the descriptive flexfield (DFF) segments ATTRIBUTE1 through ATTRIBUTE30 and the PER_INFORMATIONn columns — together with the surrogate and audit keys required to relate each row back to the parent person and to a specific effective date. POS_PER_PEOPLE_X_V presents this data through the APPS schema so that callers gain synonym-based access consistent with Oracle's public API naming conventions.
Because the view does not itself enforce multitenancy or security predicates, it functions as a thin projection rather than a secured reporting entity. Users searching for date_employee_data_verified will find that column surfaced directly by this view, which makes POS_PER_PEOPLE_X_V a common retrieval point for the date on which an employee's personal data was last verified.
Underlying Base Objects
The ETRM metadata documents the following referenced base objects:
- PER_PEOPLE_X (VIEW) — the immediate source object. The view text is a straight projection of all columns from PER_PEOPLE_X with no joins, filters, or expressions, so row cardinality and column semantics are identical to the base view.
- HR_GENERAL (PACKAGE) — the HR utility package that resolves effective dates, business group context, and date-tracked lookups used when the dated person model is queried. It supplies the date-tracking logic that governs which effective row is applicable.
- HR_PERSON_NAME (PACKAGE) — the package responsible for formatting and deriving person name components (full name, known-as, previous last name). Name columns exposed here are maintained through this package's logic.
- HR_SECURITY (PACKAGE) — the security package that applies business group and organization-level access control. Although the view text does not embed a security predicate, callers that require row-level security must route through HR_SECURITY rather than querying POS_PER_PEOPLE_X_V directly.
In practice the view inherits the effective-dating characteristics of PER_PEOPLE_X, so any query must filter on EFFECTIVE_START_DATE and EFFECTIVE_END_DATE to isolate the intended version.
Key Columns
- PERSON_ID — surrogate key identifying the person; the primary join to PER_ALL_PEOPLE_F and other person-related tables.
- EFFECTIVE_START_DATE / EFFECTIVE_END_DATE — the date-track bounds for the row. CURRENT_* flags (CURRENT_EMPLOYEE_FLAG, CURRENT_APPLICANT_FLAG, CURRENT_EMP_OR_APL_FLAG) indicate the active version.
- DATE_EMPLOYEE_DATA_VERIFIED — the date on which the employee's personal information was confirmed as accurate; frequently used in HR data-quality and audit reporting.
- BUSINESS_GROUP_ID, PERSON_TYPE_ID — organization and person-type classification.
- LAST_NAME, FIRST_NAME, MIDDLE_NAMES, FULL_NAME, KNOWN_AS, PREVIOUS_LAST_NAME, TITLE — name attributes, maintained through HR_PERSON_NAME.
- EMPLOYEE_NUMBER, APPLICANT_NUMBER — alternate human-readable identifiers.
- DATE_OF_BIRTH, SEX, MARITAL_STATUS, NATIONALITY, NATIONAL_IDENTIFIER, REGISTERED_DISABLED_FLAG — personal and statutory attributes.
- WORK_TELEPHONE, EMAIL_ADDRESS, EXPENSE_CHECK_SEND_TO_ADDRESS, VENDOR_ID — contact and financial references.
- ATTRIBUTE1–ATTRIBUTE30, PER_INFORMATION_CATEGORY, PER_INFORMATION1–PER_INFORMATION20 — descriptive flexfield and extra information segments.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — concurrent program audit context.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, OBJECT_VERSION_NUMBER — standard WHO columns and optimistic locking.
Common Use Cases and Queries
Typical scenarios include verifying when employee data was last confirmed, extracting DFF segments for downstream interfaces, and reconciling person records across business groups. Because the view is unsecured, employ a date-track filter and consider joining to PER_ALL_PEOPLE_F for secured access.
- Verified-date reporting:
SELECT person_id, employee_number, full_name, date_employee_data_verified FROM apps.pos_per_people_x_v WHERE TRUNC(SYSDATE) BETWEEN effective_start_date AND effective_end_date AND current_employee_flag = 'Y'; - Employees with no verification on record:
SELECT p.person_id, p.full_name, p.employee_number FROM apps.pos_per_people_x_v p WHERE p.date_employee_data_verified IS NULL AND p.current_employee_flag = 'Y';
- Flexfield extraction for interfaces:
SELECT person_id, attribute_category, attribute1, attribute2, per_information1 FROM apps.pos_per_people_x_v WHERE TRUNC(SYSDATE) BETWEEN effective_start_date AND effective_end_date;
Each query should constrain the effective dates; omitting them returns every historical version and inflates results. Where sensitive data is involved, layer HR_SECURITY logic or query the secured person views instead.
-
VIEW: APPS.POS_PER_PEOPLE_X_V
12.1.1
-
View: POS_PER_PEOPLE_X_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PER_PEOPLE_X_V POS.POS_PER_PEOPLE_X_V, object_name:POS_PER_PEOPLE_X_V, status:VALID, product: POS - iSupplier Portal , description: This is a view which retrieves the data related to an employee. , implementation_dba_data: APPS.POS_PER_PEOPLE_X_V ,
-
VIEW: APPS.ICX_PER_PEOPLE_X_V
12.2.2
-
View: POS_PER_PEOPLE_X_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PER_PEOPLE_X_V, object_name:POS_PER_PEOPLE_X_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_PER_PEOPLE_X_V ,
-
View: ICX_PER_PEOPLE_X_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PER_PEOPLE_X_V, object_name:ICX_PER_PEOPLE_X_V, status:VALID, product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: APPS.ICX_PER_PEOPLE_X_V ,
-
VIEW: APPS.POS_PER_PEOPLE_X_V
12.2.2
-
VIEW: APPS.ICX_PER_PEOPLE_X_V
12.1.1
-
View: POS_PER_PEOPLE_X_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POS_PER_PEOPLE_X_V POS.POS_PER_PEOPLE_X_V, object_name:POS_PER_PEOPLE_X_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.POS_PER_PEOPLE_X_V ,
-
View: ICX_PER_PEOPLE_X_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PER_PEOPLE_X_V, object_name:ICX_PER_PEOPLE_X_V, status:VALID, product: ICX - Oracle iProcurement , description: Obsolete , implementation_dba_data: APPS.ICX_PER_PEOPLE_X_V ,
-
VIEW: HR.PER_ALL_PEOPLE_F#
12.2.2
-
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: APPS.HR_HIER_ASG_PEOPLE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_HIER_ASG_PEOPLE_V, object_name:HR_HIER_ASG_PEOPLE_V, status:VALID,
-
VIEW: APPS.PER_PEOPLE_X
12.2.2
-
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: APPS.HR_HIER_ASG_PEOPLE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_HIER_ASG_PEOPLE_V, object_name:HR_HIER_ASG_PEOPLE_V, status:VALID,
-
VIEW: APPS.PER_PEOPLE_X
12.1.1
-
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: APPS.PER_ALL_PEOPLE
12.1.1
-
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: APPS.PER_PEOPLE
12.2.2
-
VIEW: APPS.PER_ALL_PEOPLE
12.2.2
-
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_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: APPS.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,
-
VIEW: APPS.PER_PEOPLE
12.1.1
-
VIEW: APPS.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,
-
VIEW: APPS.PER_PEOPLE_F
12.1.1
-
VIEW: APPS.PER_PEOPLE_F
12.2.2
-
View: GHR_MT_PEOPLE_F_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_PEOPLE_F_V, object_name:GHR_MT_PEOPLE_F_V, status:VALID, product: GHR - US Federal Human Resources , description: This views is used by mass transfer in and out processes for datatransfer. , implementation_dba_data: APPS.GHR_MT_PEOPLE_F_V ,
-
View: HR_HIER_ASG_PEOPLE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_HIER_ASG_PEOPLE_V, object_name:HR_HIER_ASG_PEOPLE_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_HIER_ASG_PEOPLE_V ,
-
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: APPS.FA_EMP_ASSET_WEB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_EMP_ASSET_WEB_V, object_name:FA_EMP_ASSET_WEB_V, status:VALID,
-
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: APPS.FA_EMP_ASSET_WEB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OFA.FA_EMP_ASSET_WEB_V, object_name:FA_EMP_ASSET_WEB_V, status:VALID,
-
View: GHR_MT_PEOPLE_F_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GHR.GHR_MT_PEOPLE_F_V, object_name:GHR_MT_PEOPLE_F_V, status:VALID, product: GHR - US Federal Human Resources , description: This views is used by mass transfer in and out processes for datatransfer. , implementation_dba_data: APPS.GHR_MT_PEOPLE_F_V ,
-
VIEW: APPS.ICX_PER_PEOPLE_X_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PER_PEOPLE_X_V, object_name:ICX_PER_PEOPLE_X_V, status:VALID,
-
VIEW: APPS.ICX_PER_PEOPLE_X_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PER_PEOPLE_X_V, object_name:ICX_PER_PEOPLE_X_V, status:VALID,
-
View: HR_HIER_ASG_PEOPLE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_HIER_ASG_PEOPLE_V, object_name:HR_HIER_ASG_PEOPLE_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_HIER_ASG_PEOPLE_V ,
-
VIEW: APPS.HRFV_PERSONAL_DETAILS
12.1.1
-
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.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 ,
-
VIEW: APPS.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,
-
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: APPS.GHR_MT_PEOPLE_F_V
12.2.2
-
VIEW: APPS.GHR_MT_PEOPLE_F_V
12.1.1
-
VIEW: APPS.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,
-
VIEW: APPS.HRIFV_US_EMPASGDTL_EMPXASG
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HRI.HRIFV_US_EMPASGDTL_EMPXASG, object_name:HRIFV_US_EMPASGDTL_EMPXASG, status:VALID,