Search Results probation_end_date
Overview
The APPS.HRFV_PROBATIONS view is a business view template delivered within the PER — Human Resources product of Oracle E-Business Suite, valid in both 12.1.1 and 12.2.2. Its documented description states that it is a "business view template from which the flexfield view is generated." This places the object within the Oracle HRMS descriptive flexfield reporting framework, where seeded templates such as HRFV_PROBATIONS supply the underlying SQL that drives flexfield-enabled business views exposed to end users and integrators. The view presents probation-related assignment data for employees, combining probation start and end dates, the probation period unit and length, organizational context, and — critically for the query that surfaced this object — supervisor identification, including the SUPERVISOR_NUMBER column sourced from the supervisor's employee number.
Practically, the view functions as a reporting and integration surface for human resources administrators tracking employee probation cycles across business groups and organizations. Because it is defined WITH READ ONLY, it supports query-only access, making it safe for ad hoc reporting, BI Publisher datasets, and interface extracts.
Underlying Base Objects
The documented metadata lists the following referenced base objects: HR_ALL_ORGANIZATION_UNITS_TL (synonym), HR_BIS (package), HR_DISCOVERER (package), HR_GENERAL (package), HR_PERSON_NAME (package), HR_SECURITY (package), PER_ALL_ASSIGNMENTS_F (synonym), PER_ALL_PEOPLE_F (synonym), PER_PEOPLE_X (view), and PER_PERIODS_OF_SERVICE (synonym). The view text confirms that the primary driving table is PER_ALL_ASSIGNMENTS_F, aliased ASG, filtered on ASSIGNMENT_TYPE = 'E' (employee assignments) and on rows where either PROBATION_UNIT or DATE_PROBATION_END is populated. PER_ALL_PEOPLE_F supplies supervisor name and employee number through the outer-joined alias SUP, while PER_PEOPLE_X supplies the employee's own person record. PER_PERIODS_OF_SERVICE links the assignment to its period of service. HR_ALL_ORGANIZATION_UNITS_TL is joined twice — once for the assignment organization and once for the business group. Several PL/SQL packages are invoked during row evaluation: HR_DISCOVERER.CHECK_END_DATE for the derived probation end date, HR_BIS.BIS_DECODE_LOOKUP for frequency and Yes/No decoding, and HR_BIS.GET_SEC_PROFILE_BG_ID for business group security filtering. HR_SECURITY, HR_GENERAL, and HR_PERSON_NAME are also referenced in the broader object definition.
Key Columns
- BUSINESS_GROUP_NAME — Name of the business group for the person record.
- PERSON_NAME — Full name of the employee on probation.
- PROBATION_START_DATE — Start date from PER_PERIODS_OF_SERVICE.DATE_START.
- PROBATION_END_DATE — Derived via HR_DISCOVERER.CHECK_END_DATE on the assignment's DATE_PROBATION_END.
- PROBATION_UNITS — Decoded frequency lookup value for PROBATION_UNIT.
- PROBATION_LENGTH — Numeric probation period from the assignment.
- SUPERVISOR_NAME — Full name of the supervisor (SUP.FULL_NAME).
- SUPERVISOR_NUMBER — Employee number of the supervisor (SUP.EMPLOYEE_NUMBER); this is the column users searching on "supervisor_number" typically need.
- ORGANIZATION_NAME — Organization of the assignment.
- ASSIGNMENT_NUMBER — Assignment identifier.
- PRIMARY_FLAG — Decoded Yes/No indicator of the primary assignment.
- ASSIGNMENT_ID, BUSINESS_GROUP_ID, PERSON_ID — Surrogate keys for joins and drill-down.
Common Use Cases and Queries
Typical uses include probation tracking reports, supervisor-based dashboards, and interface extracts requiring the supervisor's employee number. A basic query retrieving employees on probation with their supervisor number is:
SELECT person_name, supervisor_name, supervisor_number, organization_name, probation_start_date, probation_end_date FROM apps.hrfv_probations WHERE supervisor_number = :p_supervisor_number;
To list all current probationers ordered by end date:
SELECT business_group_name, person_name, probation_end_date, probation_units FROM apps.hrfv_probations ORDER BY probation_end_date;
Because the view enforces business group security through GET_SEC_PROFILE_BG_ID and is read-only, it is suited to secured, ad hoc reporting without risk of data modification.
-
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: APPS.HRFV_PROBATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_PROBATIONS, object_name:HRFV_PROBATIONS, 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,
-
VIEW: APPS.HRFV_PROBATIONS
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.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.PER_CONTRACTS_F_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:PER_CONTRACTS_F_DFV, status:VALID,
-
VIEW: APPS.HRFV_PROBATIONS
12.1.1
-
VIEW: APPS.PER_CONTRACTS_F_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:PER_CONTRACTS_F_DFV, status:VALID,
-
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: 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: 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 ,
-
PACKAGE BODY: APPS.HR_PROCESS_ASSIGNMENT_SS
12.1.1
-
PACKAGE BODY: APPS.HR_PROCESS_ASSIGNMENT_SS
12.2.2
-
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 ,