Search Results normal_start_time
Overview
HRFV_POSITIONS is an APPS-owned business view template in the PER (Human Resources) product family, defined for Oracle E-Business Suite 12.1.1 and 12.2.2. Its documented purpose is to serve as the business view template from which the flexfield view is generated. In practice, this means the view exposes the descriptive and key flexfield context of a position record in a denormalized, report-friendly shape, decoding the underlying POSITION_DEFINITION_ID through the token '_KF:PER:POS:PDEF' and the base table reference '_DF:PER:PER_POSITIONS:POS'. These tokens are placeholders interpreted by the Oracle flexfield view generator, which materializes the position flexfield structure into a queryable column or set of columns at the consumer layer.
For reporting and integration, HRFV_POSITIONS provides a single read-only surface (the definition includes WITH READ ONLY) that joins positions to business groups, organizations, jobs, locations, and replacement positions, and resolves a set of descriptive attributes into human-readable values. Because it is a template rather than a fully materialized view, it is typically used as the basis for a generated business view exposed through the HR Business Intelligence System (HR_BIS) or a customer-built flexfield view.
Underlying Base Objects
The documented base objects referenced by the view are:
- PER_ALL_POSITIONS (SYNONYM) — the primary position entity, aliased POS, supplying dates, working hours, frequency, probation attributes, normal start/finish times, comments, and the foreign keys to job, location, organization, definition, and relief position.
- PER_POSITION_DEFINITIONS (SYNONYM) — the position definition header, aliased PDEF, restricted to
ENABLED_FLAG = 'Y'and joined on POSITION_DEFINITION_ID. - HR_ALL_POSITIONS_F_TL (SYNONYM) — the translated position flexfield definition table, supplying the flexfield context for the generated view.
- HR_ALL_ORGANIZATION_UNITS_TL (SYNONYM) — used twice (ORGT for the operating organization and BGRT for the business group), both filtered by
LANGUAGE = USERENV('LANG'). - PER_JOBS_TL (SYNONYM) — the translated job name table joined on JOB_ID.
- HR_LOCATIONS_ALL_TL (SYNONYM) — the translated location table joined on LOCATION_ID using an outer join.
- HR_BIS (PACKAGE) — the HR Business Intelligence System package, invoked for lookup decoding and business group security.
The replacement position is resolved through a self-outer-join on PER_ALL_POSITIONS (POS1). Security is enforced by the predicate POS.BUSINESS_GROUP_ID = NVL(HR_BIS.GET_SEC_PROFILE_BG_ID, POS.BUSINESS_GROUP_ID).
Key Columns
- BUSINESS_GROUP_NAME — the translated business group name.
- _KF:POSITION_NAME — the generated key flexfield column that expands the POSITION_DEFINITION_ID through
PER:POS:PDEF. - DATE_FROM / DATE_TO — DATE_EFFECTIVE and DATE_END from PER_ALL_POSITIONS.
- WORKING_HOURS_AMOUNT / WORKING_HOURS_FREQUENCY — the numeric working hours plus the decoded FREQUENCY lookup, produced by
HR_BIS.BIS_DECODE_LOOKUP('FREQUENCY', POS.FREQUENCY). This decoded column is the typical target of the search term working_hours_frequency. - PROBATION_PERIOD / PROBATION_UNITS — the probation length and its decoded frequency unit.
- NORMAL_START_TIME / NORMAL_END_TIME — the position's standard working window.
- REPLACEMENT_POSITION_NAME, ORGANIZATION_NAME, JOB_NAME, LOCATION_NAME — descriptive joins for the related entities.
- KEY ID COLUMNS — BUSINESS_GROUP_ID, JOB_ID, LOCATION_ID, ORGANIZATION_ID, POSITION_ID, POSITION_DEFINITION_ID, RELIEF_POSITION_ID.
Common Use Cases and Queries
Typical uses include position reporting with flexfield description, working-hours analysis, probation tracking, and business-group-secured extracts. A representative query for working hours frequency is:
SELECT hp.position_id,
hp.organization_name,
hp.job_name,
hp.working_hours_amount,
hp.working_hours_frequency,
hp.normal_start_time,
hp.normal_end_time
FROM apps.hrfv_positions hp
WHERE NVL(hp.date_to, SYSDATE + 1) > SYSDATE
AND hp.working_hours_amount IS NOT NULL
ORDER BY hp.business_group_name, hp.job_name;
Because the view already applies the security profile predicate and language filter, no additional business group restriction is generally required, and the read-only clause guarantees safe, non-mutating reporting access.
-
View: HRFV_POSITIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_POSITIONS, object_name:HRFV_POSITIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_POSITIONS ,
-
VIEW: APPS.HRFV_POSITIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_POSITIONS, object_name:HRFV_POSITIONS, status:VALID,
-
VIEW: APPS.HRFV_POSITIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_POSITIONS, object_name:HRFV_POSITIONS, status:VALID,
-
View: HRFV_POSITIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_POSITIONS, object_name:HRFV_POSITIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_POSITIONS ,
-
VIEW: APPS.HRBV_POSITION
12.2.2
-
VIEW: APPS.HRBV_POSITION
12.1.1
-
VIEW: APPS.PER_ALL_ASSIGNMENTS_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_ASSIGNMENTS_D, object_name:PER_ALL_ASSIGNMENTS_D, status:VALID,
-
VIEW: APPS.HRFV_POSITIONS
12.1.1
-
VIEW: APPS.HRFV_POSITIONS
12.2.2
-
VIEW: APPS.HR_HIER_POS_PEOPLE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_HIER_POS_PEOPLE_V, object_name:HR_HIER_POS_PEOPLE_V, status:VALID,
-
VIEW: APPS.HRBV_POSITION
12.2.2
owner:APPS, object_type:VIEW, object_name:HRBV_POSITION, status:VALID,
-
VIEW: APPS.HR_HIER_POS_PEOPLE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_HIER_POS_PEOPLE_V, object_name:HR_HIER_POS_PEOPLE_V, status:VALID,
-
VIEW: APPS.PER_ALL_ASSIGNMENTS_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_ASSIGNMENTS_D, object_name:PER_ALL_ASSIGNMENTS_D, status:VALID,
-
VIEW: APPS.HRBV_POSITION
12.1.1
owner:APPS, object_type:VIEW, object_name:HRBV_POSITION, status:VALID,
-
VIEW: APPS.HRFV_EMPLOYEE_ASSIGNMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_EMPLOYEE_ASSIGNMENTS, object_name:HRFV_EMPLOYEE_ASSIGNMENTS, status:VALID,
-
VIEW: APPS.HRFV_EMPLOYEE_ASSIGNMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_EMPLOYEE_ASSIGNMENTS, object_name:HRFV_EMPLOYEE_ASSIGNMENTS, status:VALID,
-
View: HRFV_EMPLOYEE_ASSIGNMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_EMPLOYEE_ASSIGNMENTS, object_name:HRFV_EMPLOYEE_ASSIGNMENTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_EMPLOYEE_ASSIGNMENTS ,
-
View: HRFV_EMPLOYEE_ASSIGNMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_EMPLOYEE_ASSIGNMENTS, object_name:HRFV_EMPLOYEE_ASSIGNMENTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_EMPLOYEE_ASSIGNMENTS ,
-
VIEW: APPS.HRIFV_US_EMPASGDTL_EMPXASG
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HRI.HRIFV_US_EMPASGDTL_EMPXASG, object_name:HRIFV_US_EMPASGDTL_EMPXASG, status:VALID,
-
VIEW: APPS.HRIFV_US_EMPASGDTL_EMPXASG
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HRI.HRIFV_US_EMPASGDTL_EMPXASG, object_name:HRIFV_US_EMPASGDTL_EMPXASG, status:VALID,
-
View: PER_ALL_ASSIGNMENTS_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_ASSIGNMENTS_D, object_name:PER_ALL_ASSIGNMENTS_D, status:VALID, product: PER - Human Resources , description: Used by Datetrack History , implementation_dba_data: APPS.PER_ALL_ASSIGNMENTS_D ,
-
VIEW: APPS.HRFV_PERSON_ASSIGNMENT_HISTORY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSON_ASSIGNMENT_HISTORY, object_name:HRFV_PERSON_ASSIGNMENT_HISTORY, status:VALID,
-
View: HRFV_PERSON_ASSIGNMENT_HISTORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSON_ASSIGNMENT_HISTORY, object_name:HRFV_PERSON_ASSIGNMENT_HISTORY, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSON_ASSIGNMENT_HISTORY ,
-
View: HRIFV_US_EMPASGDTL_EMPXASG
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HRI.HRIFV_US_EMPASGDTL_EMPXASG, object_name:HRIFV_US_EMPASGDTL_EMPXASG, status:VALID, product: HRI - Human Resources Intelligence (Obsolete) , implementation_dba_data: APPS.HRIFV_US_EMPASGDTL_EMPXASG ,
-
View: HRIFV_US_EMPASGDTL_EMPXASG
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HRI.HRIFV_US_EMPASGDTL_EMPXASG, object_name:HRIFV_US_EMPASGDTL_EMPXASG, status:VALID, product: HRI - Human Resources Intelligence , implementation_dba_data: APPS.HRIFV_US_EMPASGDTL_EMPXASG ,
-
VIEW: APPS.HRFV_PERSON_ASSIGNMENT_HISTORY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSON_ASSIGNMENT_HISTORY, object_name:HRFV_PERSON_ASSIGNMENT_HISTORY, status:VALID,
-
View: HRFV_PERSON_ASSIGNMENT_HISTORY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PERSON_ASSIGNMENT_HISTORY, object_name:HRFV_PERSON_ASSIGNMENT_HISTORY, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_PERSON_ASSIGNMENT_HISTORY ,
-
View: PER_ALL_ASSIGNMENTS_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ALL_ASSIGNMENTS_D, object_name:PER_ALL_ASSIGNMENTS_D, status:VALID, product: PER - Human Resources , description: Used by Datetrack History , implementation_dba_data: APPS.PER_ALL_ASSIGNMENTS_D ,
-
VIEW: APPS.HRFV_EMPLOYEE_ASSIGNMENTS
12.1.1
-
VIEW: APPS.HRFV_EMPLOYEE_ASSIGNMENTS
12.2.2
-
View: HXC_RESOURCE_INFORMATION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HXC.HXC_RESOURCE_INFORMATION_V, object_name:HXC_RESOURCE_INFORMATION_V, status:VALID, product: HXC - Time and Labor Engine , implementation_dba_data: APPS.HXC_RESOURCE_INFORMATION_V ,
-
View: HXC_RESOURCE_INFORMATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HXC.HXC_RESOURCE_INFORMATION_V, object_name:HXC_RESOURCE_INFORMATION_V, status:VALID, product: HXC - Time and Labor Engine , implementation_dba_data: APPS.HXC_RESOURCE_INFORMATION_V ,
-
View: HR_HIER_POS_PEOPLE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_HIER_POS_PEOPLE_V, object_name:HR_HIER_POS_PEOPLE_V, status:VALID, product: PER - Human Resources , description: People with position details and place in position hierarchy , implementation_dba_data: APPS.HR_HIER_POS_PEOPLE_V ,
-
View: HR_HIER_POS_PEOPLE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_HIER_POS_PEOPLE_V, object_name:HR_HIER_POS_PEOPLE_V, status:VALID, product: PER - Human Resources , description: People with position details and place in position hierarchy , implementation_dba_data: APPS.HR_HIER_POS_PEOPLE_V ,
-
VIEW: APPS.HRIFV_US_EMPASGDTL_EMPXASG
12.2.2
-
VIEW: APPS.HRIFV_US_EMPASGDTL_EMPXASG
12.1.1
-
VIEW: APPS.HXC_RESOURCE_INFORMATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HXC.HXC_RESOURCE_INFORMATION_V, object_name:HXC_RESOURCE_INFORMATION_V, status:VALID,
-
VIEW: APPS.HXC_RESOURCE_INFORMATION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HXC.HXC_RESOURCE_INFORMATION_V, object_name:HXC_RESOURCE_INFORMATION_V, status:VALID,
-
VIEW: APPS.HXC_RESOURCE_INFORMATION_V
12.1.1
-
VIEW: APPS.HRFV_PERSON_ASSIGNMENT_HISTORY
12.1.1
-
VIEW: APPS.HRFV_PERSON_ASSIGNMENT_HISTORY
12.2.2
-
VIEW: APPS.HXC_RESOURCE_INFORMATION_V
12.2.2
-
eTRM - HRI Tables and Views
12.2.2
description: Supervisor Hierarchy Summary Table ,
-
eTRM - HXC Tables and Views
12.1.1
description: Transaction Details Archive ,
-
eTRM - HXC Tables and Views
12.2.2
description: Used in Generic Upgrade ,
-
eTRM - HRI Tables and Views
12.1.1
-
eTRM - PER Tables and Views
12.2.2
description: Table to store NQF Training info for a person ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,