Search Results per_addresses
Overview
The PER_ADDRESSES table is a core data object within the Oracle E-Business Suite (EBS) Human Resources (HR) module. It serves as the central repository for storing address information associated with people, which includes employees, applicants, contacts, and other person types managed within the HR system. Its primary role is to maintain a comprehensive and normalized record of all personal and business addresses, enabling critical HR functions such as payroll processing, benefits administration, compliance reporting, and internal communication. The table's design supports multiple addresses per person, allowing for distinctions between primary, mailing, and work locations.
Key Information Stored
The table's structure is designed to capture detailed address components and contextual metadata. The primary key is the ADDRESS_ID, a unique system-generated identifier for each address record. A critical foreign key is BUSINESS_GROUP_ID, which links the address to a specific HR business group, enforcing data security and partitioning. Other significant columns typically include PERSON_ID (linking to PER_ALL_PEOPLE_F), ADDRESS_TYPE (e.g., Home, Work), DATE_FROM and DATE_TO for effective dating, and the core address fields such as ADDRESS_LINE_1, ADDRESS_LINE_2, ADDRESS_LINE_3, TOWN_OR_CITY, REGION_1 (county/state), POSTAL_CODE, and COUNTRY. The table also commonly contains validation and telephony columns like VALIDATED_FLAG and TELEPHONE_NUMBER_1.
Common Use Cases and Queries
A primary use case is generating reports for tax authorities, benefits providers, or internal directories that require current employee addresses. Another is auditing address history for compliance. Common SQL queries involve joining to person tables. For example, to find the primary mailing address for active employees:
- SELECT papf.employee_number, papf.full_name, pa.address_line1, pa.town_or_city, pa.region_1, pa.postal_code
- FROM per_addresses pa, per_all_people_f papf
- WHERE pa.person_id = papf.person_id
- AND SYSDATE BETWEEN papf.effective_start_date AND papf.effective_end_date
- AND pa.address_type = 'MAIL'
- AND pa.date_to IS NULL;
Integration with other modules, such as iRecruitment (IRC), is also fundamental, as indicated by the foreign keys from IRC_OFFERS and IRC_NOTIFICATION_PREFERENCES.
Related Objects
PER_ADDRESSES has integral relationships with several key HR and related module objects. As per the provided metadata, it references HR_ALL_ORGANIZATION_UNITS via BUSINESS_GROUP_ID. It is referenced by the iRecruitment tables IRC_NOTIFICATION_PREFERENCES and IRC_OFFERS via ADDRESS_ID. Crucially, it is linked to the master person table, PER_ALL_PEOPLE_F (though not listed in the excerpt, this is a foundational relationship). The primary key constraint is PER_ADDRESSES_PK on ADDRESS_ID. For programmatic access and data integrity, key HR APIs such as PER_ADDRESS_API are used to maintain this table instead of direct DML operations.
-
Table: PER_ADDRESSES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ADDRESSES, object_name:PER_ADDRESSES, status:VALID, product: PER - Human Resources , description: Address information for people. , implementation_dba_data: HR.PER_ADDRESSES ,
-
Table: PER_ADDRESSES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_ADDRESSES, object_name:PER_ADDRESSES, status:VALID, product: PER - Human Resources , description: Address information for people. , implementation_dba_data: HR.PER_ADDRESSES ,
-
View: PER_JP_ADDRESS_CHANGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_JP_ADDRESS_CHANGES_V, object_name:PER_JP_ADDRESS_CHANGES_V, status:VALID, product: PER - Human Resources , description: This view is used by Japanese statutory report (Notification for Address Change of National Pension Type 3 Insured). , implementation_dba_data: APPS.PER_JP_ADDRESS_CHANGES_V ,
-
View: PER_JP_ADDRESS_CHANGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_JP_ADDRESS_CHANGES_V, object_name:PER_JP_ADDRESS_CHANGES_V, status:VALID, product: PER - Human Resources , description: This view is used by Japanese statutory report (Notification for Address Change of National Pension Type 3 Insured). , implementation_dba_data: APPS.PER_JP_ADDRESS_CHANGES_V ,
-
Table: IRC_NOTIFICATION_PREFERENCES
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.IRC_NOTIFICATION_PREFERENCES, object_name:IRC_NOTIFICATION_PREFERENCES, status:VALID, product: PER - Human Resources , description: Stores an applicants preferences to do with being contacted by the customer. , implementation_dba_data: HR.IRC_NOTIFICATION_PREFERENCES ,
-
Table: IRC_OFFERS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.IRC_OFFERS, object_name:IRC_OFFERS, status:VALID, product: PER - Human Resources , description: Table to maintain details of iRecruitment Offers , implementation_dba_data: HR.IRC_OFFERS ,
-
Table: IRC_NOTIFICATION_PREFERENCES
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.IRC_NOTIFICATION_PREFERENCES, object_name:IRC_NOTIFICATION_PREFERENCES, status:VALID, product: PER - Human Resources , description: Stores an applicants preferences to do with being contacted by the customer. , implementation_dba_data: HR.IRC_NOTIFICATION_PREFERENCES ,
-
Table: IRC_OFFERS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.IRC_OFFERS, object_name:IRC_OFFERS, status:VALID, product: PER - Human Resources , description: Table to maintain details of iRecruitment Offers , implementation_dba_data: HR.IRC_OFFERS ,
-
View: HR_ATH_EMPLOYEE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ATH_EMPLOYEE_V, object_name:HR_ATH_EMPLOYEE_V, status:VALID, product: PER - Human Resources , description: View to support Authoria Integration , implementation_dba_data: APPS.HR_ATH_EMPLOYEE_V ,
-
View: HR_H2PI_ADDRESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_H2PI_ADDRESSES_V, object_name:HR_H2PI_ADDRESSES_V, status:VALID, product: PER - Human Resources , description: Contains data related to Oracle HR to Oracle Payroll Interface (H2PI) addresses , implementation_dba_data: APPS.HR_H2PI_ADDRESSES_V ,
-
View: HR_H2PI_ADDRESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_H2PI_ADDRESSES_V, object_name:HR_H2PI_ADDRESSES_V, status:VALID, product: PER - Human Resources , description: Contains data related to Oracle HR to Oracle Payroll Interface (H2PI) addresses , implementation_dba_data: APPS.HR_H2PI_ADDRESSES_V ,
-
View: HR_ATH_EMPLOYEE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ATH_EMPLOYEE_V, object_name:HR_ATH_EMPLOYEE_V, status:VALID, product: PER - Human Resources , description: View to support Authoria Integration , implementation_dba_data: APPS.HR_ATH_EMPLOYEE_V ,
-
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 ,
-
View: HRFV_ADDRESSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ADDRESSES, object_name:HRFV_ADDRESSES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ADDRESSES ,
-
View: HRFV_US_ADDRESSES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_US_ADDRESSES, object_name:HRFV_US_ADDRESSES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_US_ADDRESSES ,
-
View: HRFV_ADDRESSES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ADDRESSES, object_name:HRFV_ADDRESSES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ADDRESSES ,
-
View: HRFV_US_ADDRESSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_US_ADDRESSES, object_name:HRFV_US_ADDRESSES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_US_ADDRESSES ,
-
View: PER_ADDRESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ADDRESSES_V, object_name:PER_ADDRESSES_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_ADDRESSES_V ,
-
View: PER_ADDRESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ADDRESSES_V, object_name:PER_ADDRESSES_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_ADDRESSES_V ,
-
View: HR_ADP_ADDRESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_ADDRESS_V, object_name:HR_ADP_ADDRESS_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_ADDRESS_V ,
-
View: HR_ADP_ADDRESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_ADDRESS_V, object_name:HR_ADP_ADDRESS_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_ADDRESS_V ,
-
View: HR_ADP_FED_TAX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_FED_TAX_V, object_name:HR_ADP_FED_TAX_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_FED_TAX_V ,
-
View: HR_ADP_FED_TAX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_FED_TAX_V, object_name:HR_ADP_FED_TAX_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_FED_TAX_V ,
-
View: HR_CERIDIAN_500_EMPLOYEE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_500_EMPLOYEE_V, object_name:HR_CERIDIAN_500_EMPLOYEE_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 500 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_500_EMPLOYEE_V ,
-
View: HR_CERIDIAN_500_EMPLOYEE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_500_EMPLOYEE_V, object_name:HR_CERIDIAN_500_EMPLOYEE_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 500 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_500_EMPLOYEE_V ,
-
View: HR_CERIDIAN_ASSIGNMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_ASSIGNMENT_V, object_name:HR_CERIDIAN_ASSIGNMENT_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 100 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_ASSIGNMENT_V ,
-
View: HR_CERIDIAN_ASSIGNMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_ASSIGNMENT_V, object_name:HR_CERIDIAN_ASSIGNMENT_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 100 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_ASSIGNMENT_V ,
-
View: HR_CERIDIAN_RESIDENT_TAX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_RESIDENT_TAX_V, object_name:HR_CERIDIAN_RESIDENT_TAX_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 100 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_RESIDENT_TAX_V ,
-
View: HR_CERIDIAN_RESIDENT_TAX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_RESIDENT_TAX_V, object_name:HR_CERIDIAN_RESIDENT_TAX_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 100 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_RESIDENT_TAX_V ,
-
View: HR_CERIDIAN_EMPLOYEE_ONLY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_EMPLOYEE_ONLY_V, object_name:HR_CERIDIAN_EMPLOYEE_ONLY_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 100 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_EMPLOYEE_ONLY_V ,
-
View: HR_CERIDIAN_500_RESIDENT_TAX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_500_RESIDENT_TAX_V, object_name:HR_CERIDIAN_500_RESIDENT_TAX_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 500 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_500_RESIDENT_TAX_V ,
-
View: HR_ADP_EMPLOYEE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_EMPLOYEE_V, object_name:HR_ADP_EMPLOYEE_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_EMPLOYEE_V ,
-
View: HR_CERIDIAN_500_RESIDENT_TAX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_500_RESIDENT_TAX_V, object_name:HR_CERIDIAN_500_RESIDENT_TAX_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 500 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_500_RESIDENT_TAX_V ,
-
View: HR_ADP_EMPLOYEE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_EMPLOYEE_V, object_name:HR_ADP_EMPLOYEE_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_EMPLOYEE_V ,
-
View: HR_CERIDIAN_EMPLOYEE_ONLY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_EMPLOYEE_ONLY_V, object_name:HR_CERIDIAN_EMPLOYEE_ONLY_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 100 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_EMPLOYEE_ONLY_V ,
-
View: HR_ADP_STATE_TAX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_STATE_TAX_V, object_name:HR_ADP_STATE_TAX_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_STATE_TAX_V ,
-
View: HR_ADP_STATE_TAX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_STATE_TAX_V, object_name:HR_ADP_STATE_TAX_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_STATE_TAX_V ,
-
View: HR_ADP_CITY_TAX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_CITY_TAX_V, object_name:HR_ADP_CITY_TAX_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_CITY_TAX_V ,
-
View: HR_ADP_CITY_TAX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_CITY_TAX_V, object_name:HR_ADP_CITY_TAX_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_CITY_TAX_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 ,
-
View: HR_ADP_WORK_STATE_TAX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_WORK_STATE_TAX_V, object_name:HR_ADP_WORK_STATE_TAX_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_WORK_STATE_TAX_V ,
-
View: HR_ADP_WORK_STATE_TAX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_WORK_STATE_TAX_V, object_name:HR_ADP_WORK_STATE_TAX_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_WORK_STATE_TAX_V ,
-
View: HR_ADP_RESIDENT_STATE_TAX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_RESIDENT_STATE_TAX_V, object_name:HR_ADP_RESIDENT_STATE_TAX_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_RESIDENT_STATE_TAX_V ,
-
View: HR_ADP_RESIDENT_STATE_TAX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_RESIDENT_STATE_TAX_V, object_name:HR_ADP_RESIDENT_STATE_TAX_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_RESIDENT_STATE_TAX_V ,
-
Table: HR_ALL_ORGANIZATION_UNITS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:AS.HR_ALL_ORGANIZATION_UNITS PER.HR_ALL_ORGANIZATION_UNITS, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID, product: PER - Human Resources , description: Organization unit definitions. , implementation_dba_data: HR.HR_ALL_ORGANIZATION_UNITS ,
-
Table: HR_ALL_ORGANIZATION_UNITS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:AS.HR_ALL_ORGANIZATION_UNITS PER.HR_ALL_ORGANIZATION_UNITS, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID, product: PER - Human Resources , description: Organization unit definitions. , implementation_dba_data: HR.HR_ALL_ORGANIZATION_UNITS ,