Search Results tenure_code
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.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: 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 ,
-
VIEW: AR.HZ_EMPLOYMENT_HISTORY#
12.2.2
-
VIEW: AR.HZ_EMPLOYMENT_HISTORY#
12.2.2
owner:AR, object_type:VIEW, object_name:HZ_EMPLOYMENT_HISTORY#, status:VALID,
-
TYPE: APPS.HZ_EMPLOY_HIST_BO
12.1.1
owner:APPS, object_type:TYPE, object_name:HZ_EMPLOY_HIST_BO, status:VALID,
-
APPS.HZ_EMPLOYMENT_HISTORY_PKG SQL Statements
12.2.2
-
APPS.HZ_EMPLOYMENT_HISTORY_PKG SQL Statements
12.1.1
-
TABLE: AR.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,
-
TYPE: APPS.HZ_EMPLOY_HIST_BO
12.2.2
owner:APPS, object_type:TYPE, object_name:HZ_EMPLOY_HIST_BO, status:VALID,
-
TABLE: AR.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,
-
View: PN_LOCATIONS_PUB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATIONS_PUB_V, object_name:PN_LOCATIONS_PUB_V, status:VALID, product: PN - Property Manager , description: Public view used to view location information. , implementation_dba_data: APPS.PN_LOCATIONS_PUB_V ,
-
View: PN_LOCATIONS_PUB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATIONS_PUB_V, object_name:PN_LOCATIONS_PUB_V, status:VALID, product: PN - Property Manager , description: Public view used to view location information. , implementation_dba_data: APPS.PN_LOCATIONS_PUB_V ,
-
TYPE BODY: APPS.HZ_EMPLOY_HIST_BO
12.2.2
-
TYPE BODY: APPS.HZ_EMPLOY_HIST_BO
12.1.1
-
VIEW: APPS.PN_LOCATIONS_PUB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATIONS_PUB_V, object_name:PN_LOCATIONS_PUB_V, status:VALID,
-
PACKAGE BODY: APPS.HZ_EMPLOYMENT_HISTORY_PKG
12.2.2
-
PACKAGE BODY: APPS.HZ_EMPLOYMENT_HISTORY_PKG
12.1.1
-
VIEW: APPS.PN_LOCATIONS_PUB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PN.PN_LOCATIONS_PUB_V, object_name:PN_LOCATIONS_PUB_V, status:VALID,
-
VIEW: APPS.PN_LOCATIONS_PUB_V
12.2.2
-
VIEW: APPS.PN_LOCATIONS_PUB_V
12.1.1
-
APPS.HZ_EXTRACT_PERSON_BO_PVT SQL Statements
12.2.2
-
APPS.HZ_EXTRACT_PERSON_BO_PVT SQL Statements
12.1.1
-
APPS.HZ_EMPLOYMENT_HISTORY_PKG dependencies on FND_API
12.1.1
-
APPS.HZ_EMPLOYMENT_HISTORY_PKG dependencies on FND_API
12.2.2
-
PACKAGE: APPS.HZ_PERSON_INFO_V2PUB
12.1.1
-
PACKAGE: APPS.HZ_PERSON_INFO_V2PUB
12.2.2
-
PACKAGE BODY: APPS.HZ_EXTRACT_PERSON_BO_PVT
12.2.2
-
PACKAGE BODY: APPS.HZ_EXTRACT_PERSON_BO_PVT
12.1.1
-
PACKAGE BODY: APPS.HZ_REGISTRY_VALIDATE_V2PUB
12.1.1
-
PACKAGE BODY: APPS.HZ_REGISTRY_VALIDATE_V2PUB
12.2.2
-
PACKAGE BODY: APPS.GHR_CPDF_EHRIS
12.1.1
-
PACKAGE BODY: APPS.GHR_CPDF_EHRIS
12.2.2
-
APPS.HZ_REGISTRY_VALIDATE_V2PUB dependencies on FND_MESSAGE
12.1.1
-
APPS.HZ_REGISTRY_VALIDATE_V2PUB SQL Statements
12.2.2
-
APPS.HZ_REGISTRY_VALIDATE_V2PUB dependencies on FND_MESSAGE
12.2.2
-
APPS.HZ_REGISTRY_VALIDATE_V2PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.GHR_EHRI_DYNRPT
12.1.1
-
PACKAGE BODY: APPS.GHR_EHRI_DYNRPT
12.2.2
-
APPS.HZ_REGISTRY_VALIDATE_V2PUB dependencies on FND_LOG
12.1.1
-
APPS.HZ_REGISTRY_VALIDATE_V2PUB dependencies on FND_LOG
12.2.2
-
APPS.HZ_REGISTRY_VALIDATE_V2PUB dependencies on FND_MSG_PUB
12.2.2
-
APPS.HZ_REGISTRY_VALIDATE_V2PUB dependencies on FND_MSG_PUB
12.1.1
-
APPS.HZ_REGISTRY_VALIDATE_V2PUB dependencies on HZ_UTILITY_V2PUB
12.2.2
-
APPS.HZ_REGISTRY_VALIDATE_V2PUB dependencies on HZ_UTILITY_V2PUB
12.1.1
-
eTRM - PN Tables and Views
12.1.1
description: Interface table to contain batch lines information. ,
-
eTRM - PN Tables and Views
12.2.2
description: Interface table to contain batch lines information. ,
-
APPS.HZ_REGISTRY_VALIDATE_V2PUB dependencies on FND_API
12.1.1
-
APPS.HZ_REGISTRY_VALIDATE_V2PUB dependencies on FND_API
12.2.2
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,