Search Results supervisor_name
Overview
HZ_EMPLOYMENT_HISTORY is a Receivables (AR) schema table within the Oracle E-Business Suite Trading Community Architecture (TCA) model. It stores employment information for persons registered as parties in the TCA registry, capturing where a person works, in what capacity, and for what period. The table is owned by the AR schema and is documented as VALID in both EBS 12.1.1 and 12.2.2, with 36 columns in the 12.2.2 physical schema.
The object occupies the person-employment slice of the party model: a party of type PERSON may have one or more employment history records, each describing a job, an employer (itself a party), and associated attributes such as title, branch, tenure, and military rank. In Data Vault terms, this table is a satellite-leaning structure. Its grain is defined by the surrogate primary key EMPLOYMENT_HISTORY_ID, while its descriptive attributes describe the person-to-employer relationship over time. The presence of BEGIN_DATE, END_DATE, and status columns supports the temporal, type-2 style history that satellites typically carry. The EMPLOYED_BY_PARTY_ID column effectively acts as a link to the employing party, making the table a hybrid of satellite attributes and a person-to-organization association.
Key Information Stored
The table is anchored by the surrogate primary key EMPLOYMENT_HISTORY_ID, implemented through HZ_EMPLOYMENT_HISTORY_PK and reinforced by the unique index HZ_EMPLOYMENT_HISTORY_U1. This identifier is the business-key candidate referenced by dependent tables. Among the 36 documented columns, the most significant are:
- PARTY_ID — the person whose employment is recorded; foreign key to HZ_PARTIES.
- EMPLOYED_BY_PARTY_ID — the employing organization, also a foreign key to HZ_PARTIES.
- EMPLOYED_BY_NAME_COMPANY — the employer name as captured on the record.
- EMPLOYED_BY_DIVISION_NAME — division or business unit of the employer.
- EMPLOYED_AS_TITLE / EMPLOYED_AS_TITLE_CODE — the job title held, in free-text and coded form.
- BEGIN_DATE / END_DATE — the effective span of the employment record.
- STATUS — current state of the employment entry.
- SUPERVISOR_NAME, BRANCH, STATION — organizational reporting and location detail.
- MILITARY_RANK, SERVED — military service attributes.
- FACULTY_POSITION_FLAG, TENURE_CODE, FRACTION_OF_TENURE — academic and tenure-related attributes.
- EMPLOYMENT_TYPE_CODE, WEEKLY_WORK_HOURS — employment classification and effort.
- REASON_FOR_LEAVING, COMMENTS — narrative and termination context.
- Standard audit columns including CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and OBJECT_VERSION_NUMBER.
Common Use Cases and Queries
The primary use case is retrieving and reporting a person's employment profile within TCA-based applications such as Receivables, iRecruitment, and HR-adjacent flows that reference party employment. A typical query joins the table to HZ_PARTIES twice — once for the person and once for the employer:
SELECT eh.employment_history_id, eh.employed_as_title, eh.begin_date, eh.end_date, ep.party_name employer FROM hz_employment_history eh, hz_parties ep WHERE eh.employed_by_party_id = ep.party_id AND eh.party_id = :person_party_id;- Reporting current employment: filter on STATUS and END_DATE IS NULL to obtain active records.
- Cross-referencing work classification through the HZ_WORK_CLASS child table using EMPLOYMENT_HISTORY_ID.
- Extracting the employer party for downstream deduplication or organization hierarchy analysis.
Because the table is a detail satellite on the party hub, bulk scans should always be filtered by PARTY_ID or EMPLOYED_BY_PARTY_ID to avoid full-table reads.
Related Objects
- HZ_PARTIES — parent hub for both PARTY_ID and EMPLOYED_BY_PARTY_ID; the central join target.
- HZ_WORK_CLASS — child table referencing HZ_EMPLOYMENT_HISTORY.EMPLOYMENT_HISTORY_ID; holds work-classification detail.
- IGS_AD_HZ_EMP_DTL — child table referencing EMPLOYMENT_HISTORY_ID, used in the student/advanced-degree context.
These relationships confirm the table's role as a satellite feeding more specialized downstream records while depending on the party hub for identity.
-
Table: HZ_EMPLOYMENT_HISTORY
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_EMPLOYMENT_HISTORY, object_name:HZ_EMPLOYMENT_HISTORY, status:VALID, product: AR - Receivables , description: Person's employment information , implementation_dba_data: AR.HZ_EMPLOYMENT_HISTORY ,
-
Table: HXC_TEMP_TCD
12.2.2
owner:APPS, object_type:TABLE, fnd_design_data:HXT.HXC_TEMP_TCD, object_name:HXC_TEMP_TCD, status:VALID, product: HXT - Time and Labor , implementation_dba_data: APPS.HXC_TEMP_TCD ,
-
Table: HZ_EMPLOYMENT_HISTORY
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_EMPLOYMENT_HISTORY, object_name:HZ_EMPLOYMENT_HISTORY, status:VALID, product: AR - Receivables , description: Person's employment information , implementation_dba_data: AR.HZ_EMPLOYMENT_HISTORY ,
-
Table: GHR_POSITION_DESCRIPTIONS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_POSITION_DESCRIPTIONS, object_name:GHR_POSITION_DESCRIPTIONS, status:VALID, product: GHR - US Federal Human Resources , description: Federal Position Description details , implementation_dba_data: HR.GHR_POSITION_DESCRIPTIONS ,
-
Table: GHR_POSITION_DESCRIPTIONS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:GHR.GHR_POSITION_DESCRIPTIONS, object_name:GHR_POSITION_DESCRIPTIONS, status:VALID, product: GHR - US Federal Human Resources , description: Federal Position Description details , implementation_dba_data: HR.GHR_POSITION_DESCRIPTIONS ,
-
Table: FV_FACTS_SUBMISSION
12.1.1
owner:FV, object_type:TABLE, fnd_design_data:FV.FV_FACTS_SUBMISSION, object_name:FV_FACTS_SUBMISSION, status:VALID, product: FV - Federal Financials , description: Stores FACTS submission information , implementation_dba_data: FV.FV_FACTS_SUBMISSION ,
-
Table: FV_FACTS_SUBMISSION
12.2.2
owner:FV, object_type:TABLE, fnd_design_data:FV.FV_FACTS_SUBMISSION, object_name:FV_FACTS_SUBMISSION, status:VALID, product: FV - Federal Financials , description: Stores FACTS submission information , implementation_dba_data: FV.FV_FACTS_SUBMISSION ,
-
VIEW: HXC.HXC_TCD_STATUS_COUNT#
12.2.2
-
VIEW: HR.PER_WPM_PLAN_HIERARCHY#
12.2.2
-
APPS.PER_WPM_SUMMARY_PKG SQL Statements
12.1.1
-
VIEW: FV.FV_FACTS_SUBMISSION#
12.2.2
-
VIEW: AR.HZ_EMPLOYMENT_HISTORY#
12.2.2
-
View: AMS_LT_HZ_EMPLOYMENT_HISTORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LT_HZ_EMPLOYMENT_HISTORY, object_name:AMS_LT_HZ_EMPLOYMENT_HISTORY, status:VALID, product: AMS - Marketing , description: Data Source view based on hz_employement_history , implementation_dba_data: APPS.AMS_LT_HZ_EMPLOYMENT_HISTORY ,
-
View: AMS_LT_HZ_EMPLOYMENT_HISTORY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LT_HZ_EMPLOYMENT_HISTORY, object_name:AMS_LT_HZ_EMPLOYMENT_HISTORY, status:VALID, product: AMS - Marketing , description: Data Source view based on hz_employement_history , implementation_dba_data: APPS.AMS_LT_HZ_EMPLOYMENT_HISTORY ,
-
View: CSC_HZ_EMPLOYMENT_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_EMPLOYMENT_HISTORY_V, object_name:CSC_HZ_EMPLOYMENT_HISTORY_V, status:VALID, product: CSC - Customer Care , description: View of HZ_EMPLOYEE_HISTORY. This view is used to get employee history details. , implementation_dba_data: APPS.CSC_HZ_EMPLOYMENT_HISTORY_V ,
-
View: AST_EMPLOYMENT_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_EMPLOYMENT_HISTORY_V, object_name:AST_EMPLOYMENT_HISTORY_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_EMPLOYMENT_HISTORY_V ,
-
VIEW: HR.GHR_POSITION_DESCRIPTIONS#
12.2.2
-
VIEW: APPS.AMS_LT_HZ_EMPLOYMENT_HISTORY
12.1.1
-
VIEW: APPS.AMS_LT_HZ_EMPLOYMENT_HISTORY
12.2.2
-
VIEW: APPS.AST_EMPLOYMENT_HISTORY_V
12.1.1
-
View: AST_EMPLOYMENT_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_EMPLOYMENT_HISTORY_V, object_name:AST_EMPLOYMENT_HISTORY_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_EMPLOYMENT_HISTORY_V ,
-
VIEW: APPS.AST_EMPLOYMENT_HISTORY_V
12.2.2
-
APPS.PER_WPM_SUMMARY_PKG SQL Statements
12.2.2
-
VIEW: APPS.CSC_HZ_EMPLOYMENT_HISTORY_V
12.1.1
-
VIEW: APPS.CSC_HZ_EMPLOYMENT_HISTORY_V
12.2.2
-
VIEW: HR.PER_WPM_APPRAISAL_SUMMARY#
12.2.2
-
VIEW: HR.PER_WPM_PLAN_HIERARCHY#
12.2.2
owner:HR, object_type:VIEW, object_name:PER_WPM_PLAN_HIERARCHY#, status:VALID,
-
VIEW: HXC.HXC_TCD_STATUS_COUNT#
12.2.2
owner:HXC, object_type:VIEW, object_name:HXC_TCD_STATUS_COUNT#, status:VALID,
-
View: CSC_HZ_EMPLOYMENT_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSC.CSC_HZ_EMPLOYMENT_HISTORY_V, object_name:CSC_HZ_EMPLOYMENT_HISTORY_V, status:VALID, product: CSC - Customer Care , description: View of HZ_EMPLOYEE_HISTORY. This view is used to get employee history details. , implementation_dba_data: APPS.CSC_HZ_EMPLOYMENT_HISTORY_V ,
-
APPS.GHR_PDI_SHD SQL Statements
12.2.2
-
View: HR_EMPLOYEE_ASSIGNMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_EMPLOYEE_ASSIGNMENTS_V, object_name:HR_EMPLOYEE_ASSIGNMENTS_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_EMPLOYEE_ASSIGNMENTS_V ,
-
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: APPS.AMS_LT_HZ_EMPLOYMENT_HISTORY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LT_HZ_EMPLOYMENT_HISTORY, object_name:AMS_LT_HZ_EMPLOYMENT_HISTORY, status:VALID,
-
View: HRFV_SUPERVISORS
12.2.2
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 ,
-
TABLE: HXC.HXC_TCD_STATUS_COUNT
12.2.2
owner:HXC, object_type:TABLE, object_name:HXC_TCD_STATUS_COUNT, status:VALID,
-
VIEW: APPS.HRIBV_SUPV_HRCHY_V
12.2.2
-
View: HRFV_PROBATIONS
12.2.2
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: APPS.HRIBV_SUPV_HRCHY_V
12.1.1
-
VIEW: APPS.HXC_TCD_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:HXC_TCD_DETAILS_V, status:VALID,
-
PACKAGE BODY: APPS.PER_WPM_SUMMARY_PKG
12.1.1
-
View: HR_EMPLOYEE_ASSIGNMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_EMPLOYEE_ASSIGNMENTS_V, object_name:HR_EMPLOYEE_ASSIGNMENTS_V, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_EMPLOYEE_ASSIGNMENTS_V ,
-
VIEW: APPS.HXC_TCD_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:HXC_TCD_DETAILS_V, status:VALID,
-
APPS.GHR_PDI_SHD SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PER_WPM_SUMMARY_PKG
12.2.2
-
VIEW: APPS.HRFV_PROBATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PROBATIONS, object_name:HRFV_PROBATIONS, status:VALID,
-
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: HR.HR_360_PERSON_VIEW#
12.2.2
-
VIEW: APPS.AMS_LT_HZ_EMPLOYMENT_HISTORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_LT_HZ_EMPLOYMENT_HISTORY, object_name:AMS_LT_HZ_EMPLOYMENT_HISTORY, status:VALID,
-
TABLE: HR.PER_WPM_PLAN_HIERARCHY
12.1.1
owner:HR, object_type:TABLE, object_name:PER_WPM_PLAN_HIERARCHY, status:VALID,
-
VIEW: APPS.HRFV_PROBATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PROBATIONS, object_name:HRFV_PROBATIONS, status:VALID,