Search Results per_contact_relationships
Overview
The PER_CONTACT_RELATIONSHIPS table is a core data repository within the Oracle E-Business Suite Human Resources (PER) module, specifically for versions 12.1.1 and 12.2.2. It serves as the central table for storing and managing an employee's personal contacts and their associated relationships. The table's primary role is to maintain structured information about individuals connected to an employee, such as dependents, beneficiaries, emergency contacts, and parents. This data is critical for downstream business processes in benefits administration, legal compliance, and internal reporting, forming a foundational link between an employee's personal network and the organization's HR systems.
Key Information Stored
The table's primary key is CONTACT_RELATIONSHIP_ID, which uniquely identifies each contact relationship record. As indicated by its foreign key constraints, a critical column is BUSINESS_GROUP_ID, which links the contact to the specific HR business group for security and data partitioning. While the full column list is not detailed in the provided metadata, based on its description and standard HRMS design, the table typically stores the PERSON_ID of the employee, the PERSON_ID or details of the contact person, and a RELATIONSHIP_TYPE (e.g., 'SPOUSE', 'CHILD', 'EMERGENCY_CONTACT'). It also commonly holds attributes like start and end dates for the relationship, primary contact flags, and dependency statuses required for benefits eligibility.
Common Use Cases and Queries
This table is directly queried for generating emergency contact lists, validating dependent eligibility for benefits enrollment, and producing census reports for insurance carriers. A typical reporting query involves joining PER_CONTACT_RELATIONSHIPS with the PER_ALL_PEOPLE_F table to retrieve employee and contact names for a specific relationship type. For example, to list all emergency contacts, a SQL pattern would be: SELECT papf.full_name employee_name, pcr.relationship_type, cp.full_name contact_name FROM per_contact_relationships pcr, per_all_people_f papf, per_all_people_f cp WHERE pcr.person_id = papf.person_id AND pcr.contact_person_id = cp.person_id AND pcr.relationship_type = 'EMERGENCY_CONTACT' AND SYSDATE BETWEEN papf.effective_start_date AND papf.effective_end_date. Data from this table is also essential for COBRA administration and benefits coverage life events.
Related Objects
PER_CONTACT_RELATIONSHIPS has integral relationships with several other EBS objects. It is referenced by key tables in the Benefits (BEN) module, such as BEN_COVERED_DEPENDENTS_F, which links dependents to specific benefit enrollments. Within the HR module, PER_CONTACT_EXTRA_INFO_F stores additional descriptive flexfield information for each contact relationship. For compliance, it is linked to PER_COBRA_COV_ENROLLMENTS and PER_COBRA_DEPENDENTS_F. The table's primary foreign key relationship to HR_ALL_ORGANIZATION_UNITS via BUSINESS_GROUP_ID enforces multi-org security. These dependencies underscore that PER_CONTACT_RELATIONSHIPS is not a standalone entity but a pivotal hub in a wider data model supporting HR and benefits functionality.
-
Table: PER_CONTACT_RELATIONSHIPS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_CONTACT_RELATIONSHIPS, object_name:PER_CONTACT_RELATIONSHIPS, status:VALID, product: PER - Human Resources , description: Contacts and relationship details for dependents, beneficiaries, emergency contacts, parents etc. , implementation_dba_data: HR.PER_CONTACT_RELATIONSHIPS ,
-
Table: PER_CONTACT_RELATIONSHIPS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_CONTACT_RELATIONSHIPS, object_name:PER_CONTACT_RELATIONSHIPS, status:VALID, product: PER - Human Resources , description: Contacts and relationship details for dependents, beneficiaries, emergency contacts, parents etc. , implementation_dba_data: HR.PER_CONTACT_RELATIONSHIPS ,
-
Table: PER_CONTACT_EXTRA_INFO_F
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_CONTACT_EXTRA_INFO_F, object_name:PER_CONTACT_EXTRA_INFO_F, status:VALID, product: PER - Human Resources , description: Extra information for a contact relationship. , implementation_dba_data: HR.PER_CONTACT_EXTRA_INFO_F ,
-
Table: PER_CONTACT_EXTRA_INFO_F
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_CONTACT_EXTRA_INFO_F, object_name:PER_CONTACT_EXTRA_INFO_F, status:VALID, product: PER - Human Resources , description: Extra information for a contact relationship. , implementation_dba_data: HR.PER_CONTACT_EXTRA_INFO_F ,
-
Table: BEN_COVERED_DEPENDENTS_F
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.BEN_COVERED_DEPENDENTS_F, object_name:BEN_COVERED_DEPENDENTS_F, status:VALID, product: PER - Human Resources , description: Dependents covered by specific benefit plans. , implementation_dba_data: HR.BEN_COVERED_DEPENDENTS_F ,
-
Table: BEN_COVERED_DEPENDENTS_F
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.BEN_COVERED_DEPENDENTS_F, object_name:BEN_COVERED_DEPENDENTS_F, status:VALID, product: PER - Human Resources , description: Dependents covered by specific benefit plans. , implementation_dba_data: HR.BEN_COVERED_DEPENDENTS_F ,
-
Table: PER_COBRA_DEPENDENTS_F
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_COBRA_DEPENDENTS_F, object_name:PER_COBRA_DEPENDENTS_F, status:VALID, product: PER - Human Resources , description: Holds employee dependents coverage for a COBRA qualifying event. , implementation_dba_data: HR.PER_COBRA_DEPENDENTS_F ,
-
Table: PER_COBRA_DEPENDENTS_F
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_COBRA_DEPENDENTS_F, object_name:PER_COBRA_DEPENDENTS_F, status:VALID, product: PER - Human Resources , description: Holds employee dependents coverage for a COBRA qualifying event. , implementation_dba_data: HR.PER_COBRA_DEPENDENTS_F ,
-
Table: PER_COBRA_COV_ENROLLMENTS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_COBRA_COV_ENROLLMENTS, object_name:PER_COBRA_COV_ENROLLMENTS, status:VALID, product: PER - Human Resources , description: Enrollments for people who are eligible for continued benefit coverage under COBRA. , implementation_dba_data: HR.PER_COBRA_COV_ENROLLMENTS ,
-
View: HR_ADP_SPOUSE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_SPOUSE_V, object_name:HR_ADP_SPOUSE_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_SPOUSE_V ,
-
Table: PER_COBRA_COV_ENROLLMENTS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.PER_COBRA_COV_ENROLLMENTS, object_name:PER_COBRA_COV_ENROLLMENTS, status:VALID, product: PER - Human Resources , description: Enrollments for people who are eligible for continued benefit coverage under COBRA. , implementation_dba_data: HR.PER_COBRA_COV_ENROLLMENTS ,
-
View: HR_ADP_SPOUSE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_SPOUSE_V, object_name:HR_ADP_SPOUSE_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_SPOUSE_V ,
-
View: HR_CERIDIAN_500_SPOUSE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_500_SPOUSE_V, object_name:HR_CERIDIAN_500_SPOUSE_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 500 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_500_SPOUSE_V ,
-
View: HR_CERIDIAN_SPOUSE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_SPOUSE_V, object_name:HR_CERIDIAN_SPOUSE_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 100 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_SPOUSE_V ,
-
View: HR_CERIDIAN_500_SPOUSE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_500_SPOUSE_V, object_name:HR_CERIDIAN_500_SPOUSE_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 500 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_500_SPOUSE_V ,
-
View: HR_CERIDIAN_SPOUSE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_SPOUSE_V, object_name:HR_CERIDIAN_SPOUSE_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 100 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_SPOUSE_V ,
-
View: BEN_COVERED_DEPENDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.BEN_COVERED_DEPENDENTS_V, object_name:BEN_COVERED_DEPENDENTS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.BEN_COVERED_DEPENDENTS_V ,
-
View: BEN_COVERED_DEPENDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.BEN_COVERED_DEPENDENTS_V, object_name:BEN_COVERED_DEPENDENTS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.BEN_COVERED_DEPENDENTS_V ,
-
View: PER_CONTACT_EXTRA_INFO_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_CONTACT_EXTRA_INFO_D, object_name:PER_CONTACT_EXTRA_INFO_D, status:VALID, product: PER - Human Resources , description: Used by DateTrack History. , implementation_dba_data: APPS.PER_CONTACT_EXTRA_INFO_D ,
-
View: PER_CONTACT_EXTRA_INFO_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_CONTACT_EXTRA_INFO_D, object_name:PER_CONTACT_EXTRA_INFO_D, status:VALID, product: PER - Human Resources , description: Used by DateTrack History. , implementation_dba_data: APPS.PER_CONTACT_EXTRA_INFO_D ,
-
View: PER_COBRA_DEPENDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_COBRA_DEPENDENTS_V, object_name:PER_COBRA_DEPENDENTS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_COBRA_DEPENDENTS_V ,
-
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: PER_COBRA_DEPENDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_COBRA_DEPENDENTS_V, object_name:PER_COBRA_DEPENDENTS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_COBRA_DEPENDENTS_V ,
-
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: PER_JP_CONTACT_RELATIONSHIPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_JP_CONTACT_RELATIONSHIPS_V, object_name:PER_JP_CONTACT_RELATIONSHIPS_V, status:VALID, product: PER - Human Resources , description: This view is used by JP Contact List folder and JP Social Insurance and Income Tax on Dependent window. , implementation_dba_data: APPS.PER_JP_CONTACT_RELATIONSHIPS_V ,
-
View: PER_JP_CONTACT_RELATIONSHIPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_JP_CONTACT_RELATIONSHIPS_V, object_name:PER_JP_CONTACT_RELATIONSHIPS_V, status:VALID, product: PER - Human Resources , description: This view is used by JP Contact List folder and JP Social Insurance and Income Tax on Dependent window. , implementation_dba_data: APPS.PER_JP_CONTACT_RELATIONSHIPS_V ,
-
View: PER_CONTACT_RELATIONSHIPS_V2
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_CONTACT_RELATIONSHIPS_V2, object_name:PER_CONTACT_RELATIONSHIPS_V2, status:VALID, product: PER - Human Resources , description: Used to support user-interface. , implementation_dba_data: APPS.PER_CONTACT_RELATIONSHIPS_V2 ,
-
View: PER_CONTACT_RELATIONSHIPS_V2
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_CONTACT_RELATIONSHIPS_V2, object_name:PER_CONTACT_RELATIONSHIPS_V2, status:VALID, product: PER - Human Resources , description: Used to support user-interface. , implementation_dba_data: APPS.PER_CONTACT_RELATIONSHIPS_V2 ,
-
View: PER_CONTACT_RELATIONSHIPS_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_CONTACT_RELATIONSHIPS_V1, object_name:PER_CONTACT_RELATIONSHIPS_V1, status:VALID, product: PER - Human Resources , description: Used to support the user-interface. , implementation_dba_data: APPS.PER_CONTACT_RELATIONSHIPS_V1 ,
-
View: PER_CONTACT_RELATIONSHIPS_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_CONTACT_RELATIONSHIPS_V1, object_name:PER_CONTACT_RELATIONSHIPS_V1, status:VALID, product: PER - Human Resources , description: Used to support the user-interface. , implementation_dba_data: APPS.PER_CONTACT_RELATIONSHIPS_V1 ,
-
View: PER_JP_SI_DEPENDENT_TRANSFER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_JP_SI_DEPENDENT_TRANSFER_V, object_name:PER_JP_SI_DEPENDENT_TRANSFER_V, status:VALID, product: PER - Human Resources , description: This view is used by Japanese statutory report (Notification of Health Insurance Dependents / National Pension Type 3 Insured) , implementation_dba_data: APPS.PER_JP_SI_DEPENDENT_TRANSFER_V ,
-
View: PER_JP_SI_DEPENDENT_TRANSFER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_JP_SI_DEPENDENT_TRANSFER_V, object_name:PER_JP_SI_DEPENDENT_TRANSFER_V, status:VALID, product: PER - Human Resources , description: This view is used by Japanese statutory report (Notification of Health Insurance Dependents / National Pension Type 3 Insured) , implementation_dba_data: APPS.PER_JP_SI_DEPENDENT_TRANSFER_V ,
-
View: PER_COBRA_COV_ENROLLMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_COBRA_COV_ENROLLMENTS_V, object_name:PER_COBRA_COV_ENROLLMENTS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_COBRA_COV_ENROLLMENTS_V ,
-
View: PER_COBRA_COV_ENROLLMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_COBRA_COV_ENROLLMENTS_V, object_name:PER_COBRA_COV_ENROLLMENTS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_COBRA_COV_ENROLLMENTS_V ,
-
View: PER_CONTACT_RELATIONSHIPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_CONTACT_RELATIONSHIPS_V, object_name:PER_CONTACT_RELATIONSHIPS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_CONTACT_RELATIONSHIPS_V ,
-
View: PER_CONTACT_RELATIONSHIPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_CONTACT_RELATIONSHIPS_V, object_name:PER_CONTACT_RELATIONSHIPS_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_CONTACT_RELATIONSHIPS_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 ,