Search Results national_identifier
Overview
PAYBV_EMPLOYEE_ARCHIVE is an APPS-owned read-only database view in the Oracle E-Business Suite Payroll (PAY) module. It exposes archived employee assignment details captured during the processing of payroll actions, specifically those recorded against the action context type AAP and the action information category EMPLOYEE DETAILS. The view presents a denormalised, human-readable projection of the PAY_ACTION_INFORMATION table, converting the generic ACTION_INFORMATION1 through ACTION_INFORMATION30 slots into named business columns such as FULL_NAME, NATIONAL_IDENTIFIER, JOB, and PAY_RATE.
Because the view carries a WITH READ ONLY clause, it is strictly a reporting and integration artefact. It plays a significant role wherever historical payroll/HR snapshots must be reproduced — for example, statutory reporting, audit trails, or interfaces that must reconstruct the state of an employee record at the time a payroll action was executed. In the context of the user search term national_identifier, this view is notable because it surfaces the NATIONAL_IDENTIFIER column directly, mapped from ACTION_INFORMATION4, allowing consumers to retrieve the employee national identifier without decoding the underlying generic information slots. This is directly relevant to 12.1.1 and 12.2.2 environments where legislative or payroll reports require a traceable national ID per assignment.
Underlying Base Objects
According to the ETRM 12.2.2 metadata, the view is defined over two documented referenced objects:
- PAY_ACTION_INFORMATION (referenced via synonym) — the primary source table. The view filters rows where
ACTION_CONTEXT_TYPE = 'AAP'andACTION_INFORMATION_CATEGORY = 'EMPLOYEE DETAILS'. - PAY_AC_UTIL (package) — used for the
FORMAT_TO_DATEconversion applied to date-bearing information slots (ACTION_INFORMATION11, 12, and 13).
The view therefore inherits the structure of the action information model, where each logical attribute is stored positionally in ACTION_INFORMATIONn columns. The view's SELECT list performs the semantic mapping of these positions to meaningful aliases, and the date conversion of selected slots into true date values.
Key Columns
- ACTION_CONTEXT_ID, TAX_UNIT_ID, ASSIGNMENT_ID — identifiers linking the archived record to its payroll action context, tax unit, and employee assignment.
- NATIONAL_IDENTIFIER — the employee national identifier, sourced from ACTION_INFORMATION4. Central to the user's search and to statutory reporting.
- FULL_NAME, EMPLOYEE_NUMBER, ASSIGNMENT_NUMBER — core employee and assignment identification fields.
- ORGANIZATION_ID, ORGANIZATION_NAME, LOCATION_NAME, JOB, POSITION, GRE_NAME — organisational and job attributes at the time of the action.
- PAY_BASIS, FREQUENCY, PAY_RATE, ANNUAL_SALARY, HOURLY_SALARIED_CODE — compensation attributes. PAY_RATE and ANNUAL_SALARY are numerically derived, with ANNUAL_SALARY computed as PAY_RATE multiplied by the value in ACTION_INFORMATION29.
- EMPLOYEE_DATE_START, ORIGINAL_HIRE_DATE, ADJUSTED_SERVICE_DATE — date fields produced through PAY_AC_UTIL.FORMAT_TO_DATE.
- EFFECTIVE_DATE / PAYMENT_DATE — the effective date of the action, also exposed as the payment date.
Common Use Cases and Queries
Typical scenarios include reconstructing an employee's assignment state for a given action, producing national identifier reports, and feeding downstream interfaces with named employee attributes.
Retrieve the national identifier and key assignment details for a specific assignment:
SELECT assignment_id, employee_number, full_name, national_identifier, job, pay_rateFROM apps.paybv_employee_archiveWHERE assignment_id = :p_assignment_idORDER BY effective_date DESC;
Search by national identifier across archived records:
SELECT employee_number, full_name, national_identifier, effective_dateFROM apps.paybv_employee_archiveWHERE national_identifier = :p_national_id;
Report all employee detail snapshots for a tax unit within a date range:
SELECT tax_unit_id, employee_number, organization_name, original_hire_date, payment_dateFROM apps.paybv_employee_archiveWHERE tax_unit_id = :p_tax_unit_idAND payment_date BETWEEN :p_from AND :p_to;
Because the view is read-only and derived from PAY_ACTION_INFORMATION, query performance benefits from filtering on the indexed action context columns and from restricting by tax unit, date, or assignment. No DML should ever be attempted against this object.
-
View: PAYBV_EMPLOYEE_ARCHIVE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_EMPLOYEE_ARCHIVE, object_name:PAYBV_EMPLOYEE_ARCHIVE, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_EMPLOYEE_ARCHIVE ,
-
View: PAY_KR_SEP_MASTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_MASTER_V, object_name:PAY_KR_SEP_MASTER_V, status:VALID, product: PAY - Payroll , description: This view returns employee assignment which are target for Separation Pay Process. , implementation_dba_data: APPS.PAY_KR_SEP_MASTER_V ,
-
View: PAYBV_EMPLOYEE_ARCHIVE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_EMPLOYEE_ARCHIVE, object_name:PAYBV_EMPLOYEE_ARCHIVE, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_EMPLOYEE_ARCHIVE ,
-
View: PAY_KR_EMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_EMP_V, object_name:PAY_KR_EMP_V, status:VALID, product: PAY - Payroll , description: This view returns employee information based on session_date. , implementation_dba_data: APPS.PAY_KR_EMP_V ,
-
View: PAY_KR_SEP_MASTER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_MASTER_V, object_name:PAY_KR_SEP_MASTER_V, status:VALID, product: PAY - Payroll , description: This view returns employee assignment which are target for Separation Pay Process. , implementation_dba_data: APPS.PAY_KR_SEP_MASTER_V ,
-
View: PAY_KR_EMP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_EMP_V, object_name:PAY_KR_EMP_V, status:VALID, product: PAY - Payroll , description: This view returns employee information based on session_date. , implementation_dba_data: APPS.PAY_KR_EMP_V ,
-
View: PAY_KR_SEP_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_HISTORY_V, object_name:PAY_KR_SEP_HISTORY_V, status:VALID, product: PAY - Payroll , description: This view returns Separation Pay Process history based on assignment_id. , implementation_dba_data: APPS.PAY_KR_SEP_HISTORY_V ,
-
View: PAY_KR_SEP_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_HISTORY_V, object_name:PAY_KR_SEP_HISTORY_V, status:VALID, product: PAY - Payroll , description: This view returns Separation Pay Process history based on assignment_id. , implementation_dba_data: APPS.PAY_KR_SEP_HISTORY_V ,
-
View: PAY_KR_SEP_SLIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_SLIP_V, object_name:PAY_KR_SEP_SLIP_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_KR_SEP_SLIP_V ,
-
View: PAY_KR_SEP_SLIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_SLIP_V, object_name:PAY_KR_SEP_SLIP_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_KR_SEP_SLIP_V ,
-
View: PAYBV_ASG_RUN_BALANCE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_ASG_RUN_BALANCE_V, object_name:PAYBV_ASG_RUN_BALANCE_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_ASG_RUN_BALANCE_V ,
-
View: PAYBV_ASG_RUN_BALANCE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_ASG_RUN_BALANCE_V, object_name:PAYBV_ASG_RUN_BALANCE_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_ASG_RUN_BALANCE_V ,
-
View: PAY_EMPLOYEE_ACTION_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_EMPLOYEE_ACTION_INFO_V, object_name:PAY_EMPLOYEE_ACTION_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_EMPLOYEE_ACTION_INFO_V ,
-
View: PAY_EMPLOYEE_ACTION_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_EMPLOYEE_ACTION_INFO_V, object_name:PAY_EMPLOYEE_ACTION_INFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_EMPLOYEE_ACTION_INFO_V ,
-
View: PAY_APAC_EMPLOYEE_ACTION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_APAC_EMPLOYEE_ACTION_V, object_name:PAY_APAC_EMPLOYEE_ACTION_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_APAC_EMPLOYEE_ACTION_V ,
-
View: PAY_APAC_EMPLOYEE_ACTION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_APAC_EMPLOYEE_ACTION_V, object_name:PAY_APAC_EMPLOYEE_ACTION_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_APAC_EMPLOYEE_ACTION_V ,
-
View: PAYBV_RETRO_ELEMENT_ENTRIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_RETRO_ELEMENT_ENTRIES, object_name:PAYBV_RETRO_ELEMENT_ENTRIES, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_RETRO_ELEMENT_ENTRIES ,
-
View: PAYBV_RETRO_ELEMENT_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_RETRO_ELEMENT_ENTRIES, object_name:PAYBV_RETRO_ELEMENT_ENTRIES, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_RETRO_ELEMENT_ENTRIES ,
-
View: PAYBV_RETRO_ELEM_ENTRY_SLADM
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_RETRO_ELEM_ENTRY_SLADM, object_name:PAYBV_RETRO_ELEM_ENTRY_SLADM, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_RETRO_ELEM_ENTRY_SLADM ,
-
View: PAY_KR_SEP_TAX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_TAX_V, object_name:PAY_KR_SEP_TAX_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_KR_SEP_TAX_V ,
-
View: PAY_KR_SEP_TAX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_TAX_V, object_name:PAY_KR_SEP_TAX_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_KR_SEP_TAX_V ,
-
View: PAYBV_RETRO_ELEM_ENTRY_SLADM
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_RETRO_ELEM_ENTRY_SLADM, object_name:PAYBV_RETRO_ELEM_ENTRY_SLADM, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_RETRO_ELEM_ENTRY_SLADM ,
-
View: PAY_KR_CONTACT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_CONTACT_V, object_name:PAY_KR_CONTACT_V, status:VALID, product: PAY - Payroll , description: This view returns contact data based on assignment_id and session_date. , implementation_dba_data: APPS.PAY_KR_CONTACT_V ,
-
View: PAY_KR_CONTACT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_CONTACT_V, object_name:PAY_KR_CONTACT_V, status:VALID, product: PAY - Payroll , description: This view returns contact data based on assignment_id and session_date. , implementation_dba_data: APPS.PAY_KR_CONTACT_V ,
-
View: PAYBV_ELEMENT_ENTRY_DET
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_ELEMENT_ENTRY_DET, object_name:PAYBV_ELEMENT_ENTRY_DET, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_ELEMENT_ENTRY_DET ,
-
View: PAYBV_ELEMENT_ENTRY_DET
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_ELEMENT_ENTRY_DET, object_name:PAYBV_ELEMENT_ENTRY_DET, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_ELEMENT_ENTRY_DET ,
-
View: PAY_KR_CONT_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_CONT_DETAILS_V, object_name:PAY_KR_CONT_DETAILS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_KR_CONT_DETAILS_V ,
-
View: PAY_KR_CONT_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_CONT_DETAILS_V, object_name:PAY_KR_CONT_DETAILS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_KR_CONT_DETAILS_V ,
-
View: PAY_P45_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_P45_V1, object_name:PAY_P45_V1, status:VALID, product: PAY - Payroll , description: PAY_P45_V1 is a UK specific view based on PER_PEOPLE_F that selects employees for the P45 report. , implementation_dba_data: APPS.PAY_P45_V1 ,
-
View: PAY_P45_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_P45_V1, object_name:PAY_P45_V1, status:VALID, product: PAY - Payroll , description: PAY_P45_V1 is a UK specific view based on PER_PEOPLE_F that selects employees for the P45 report. , implementation_dba_data: APPS.PAY_P45_V1 ,
-
View: PAY_US_EMPLOYEE_ACTION_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_EMPLOYEE_ACTION_INFO_V, object_name:PAY_US_EMPLOYEE_ACTION_INFO_V, status:VALID, product: PAY - Payroll , description: This view returns the Employee Details from the live tables for employees which have been archived by External Process Archiver , implementation_dba_data: APPS.PAY_US_EMPLOYEE_ACTION_INFO_V ,
-
View: PAY_US_EMPLOYEE_ACTION_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_US_EMPLOYEE_ACTION_INFO_V, object_name:PAY_US_EMPLOYEE_ACTION_INFO_V, status:VALID, product: PAY - Payroll , description: This view returns the Employee Details from the live tables for employees which have been archived by External Process Archiver , implementation_dba_data: APPS.PAY_US_EMPLOYEE_ACTION_INFO_V ,
-
View: PAYBV_PAYROLL_ACT_RR_EMP_DET
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_PAYROLL_ACT_RR_EMP_DET, object_name:PAYBV_PAYROLL_ACT_RR_EMP_DET, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_PAYROLL_ACT_RR_EMP_DET ,
-
View: PAYBV_PAYROLL_ACT_RR_EMP_DET
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYBV_PAYROLL_ACT_RR_EMP_DET, object_name:PAYBV_PAYROLL_ACT_RR_EMP_DET, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYBV_PAYROLL_ACT_RR_EMP_DET ,
-
View: PAY_KR_SEP_TAX_WO_ADDR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_TAX_WO_ADDR_V, object_name:PAY_KR_SEP_TAX_WO_ADDR_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_KR_SEP_TAX_WO_ADDR_V ,
-
View: PAY_KR_SEP_TAX_WO_ADDR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_KR_SEP_TAX_WO_ADDR_V, object_name:PAY_KR_SEP_TAX_WO_ADDR_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_KR_SEP_TAX_WO_ADDR_V ,
-
View: PAY_COSTING_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_COSTING_DETAILS_V, object_name:PAY_COSTING_DETAILS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_COSTING_DETAILS_V ,
-
View: PAY_COSTING_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_COSTING_DETAILS_V, object_name:PAY_COSTING_DETAILS_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_COSTING_DETAILS_V ,
-
View: PAY_PAYE_ELEMENT_ENTRIES_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_PAYE_ELEMENT_ENTRIES_V2, object_name:PAY_PAYE_ELEMENT_ENTRIES_V2, status:VALID, product: PAY - Payroll , description: Used to support user interface , implementation_dba_data: APPS.PAY_PAYE_ELEMENT_ENTRIES_V2 ,
-
View: PAY_CA_SOE_EMPINFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_CA_SOE_EMPINFO_V, object_name:PAY_CA_SOE_EMPINFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_CA_SOE_EMPINFO_V ,
-
View: PAY_PAYE_ELEMENT_ENTRIES_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_PAYE_ELEMENT_ENTRIES_V2, object_name:PAY_PAYE_ELEMENT_ENTRIES_V2, status:VALID, product: PAY - Payroll , description: Used to support user interface , implementation_dba_data: APPS.PAY_PAYE_ELEMENT_ENTRIES_V2 ,
-
View: PAY_CA_SOE_EMPINFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_CA_SOE_EMPINFO_V, object_name:PAY_CA_SOE_EMPINFO_V, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_CA_SOE_EMPINFO_V ,