Search Results budget_measurement_type
Overview
APPS.HRFV_MOVEMENTS_SUMMARY is a reporting view in Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 that consolidates employee movement events—specifically hires and terminations—into a single, uniformly structured result set. It is part of the Oracle HRMS (Human Resources Management System) family of "HRFV" views, which are designed to present pre-joined, business-friendly data suitable for reporting, ad-hoc queries, and integration extracts. Rather than requiring report authors to reconcile assignment, period-of-service, organization, and lookup data across multiple tables, the view collapses this logic into a unified projection.
The view produces one row per qualifying movement, labelled either as a "Hire" or a "Termination". Each row is enriched with decoded descriptive attributes, including business group name and organization name (resolved through the translated organization table using the current session language), and a descriptive budget measurement type decoded from the BUDGET_MEASUREMENT_TYPE lookup. Because the view applies the security profile of the current business group, its output is implicitly filtered to the data the operating user is authorised to see.
Underlying Base Objects
The view is defined as a UNION ALL of two SELECT statements. The first branch captures hires, joining PER_PERIODS_OF_SERVICE, PER_ASSIGNMENTS_F (or its PER_ASSIGNMENTS_F synonym), HR_ALL_ORGANIZATION_UNITS_TL, HR_LOOKUPS, and org-unit translation tables. The second branch captures terminations using an analogous join set. Documented referenced base objects include HR_ALL_ORGANIZATION_UNITS_TL, PER_ALL_ASSIGNMENTS_F, PER_ASSIGNMENTS_F, PER_PERIODS_OF_SERVICE, PER_ASSIGNMENT_STATUS_TYPES, and HR_LOOKUPS, together with the HR_API, HR_BIS, HR_DISCOVERER, HR_GENERAL, and HR_SECURITY packages.
Two packages are central to its behaviour. HR_BIS provides the bis_decode_lookup function used to translate the lookup code into the descriptive budget measurement type and the get_sec_profile_bg_id call that enforces business-group security. The JOIN to HR_LOOKUPS with lookup_type = 'BUDGET_MEASUREMENT_TYPE' restricts rows to assignments whose lookup values align with the budget measurement classification.
Key Columns
- business_group_name — the translated name of the business group owning the assignment.
- budget_measurement_type — the decoded, user-readable description from the BUDGET_MEASUREMENT_TYPE lookup (the column most directly associated with the search term "budget_measurement_type").
- budget_measurement_code — the raw lookup code underlying the measurement type.
- organization_name — the translated name of the organization to which the assignment belongs.
- movement_date — the hire date (from period-of-service start) or the actual termination date, depending on the branch.
- movement_type — a literal, either "Hire" or "Termination".
- assignment_id, business_group_id, organization_id — key identifiers linking the row back to the HRMS entity model.
Common Use Cases and Queries
The view is typically used for headcount movement reporting, trend analysis of hires versus terminations, and reconciliation feeds into downstream HR or budgeting systems where the budget measurement classification must be applied. A representative query selecting movement activity for a business group would be:
SELECT movement_type, budget_measurement_type, organization_name, movement_date FROM apps.hrfv_movements_summary WHERE business_group_name = :p_bg ORDER BY movement_date;SELECT budget_measurement_type, COUNT(*) FROM apps.hrfv_movements_summary WHERE movement_type = 'Hire' GROUP BY budget_measurement_type;SELECT organization_name, movement_type, COUNT(*) FROM apps.hrfv_movements_summary GROUP BY organization_name, movement_type;
Because output is subject to the HR security profile, results returned by these queries reflect only the business groups and organizations the run-time user is permitted to access. Report designers should note that the view filters on primary, employee-type assignments only, so contingent worker or non-primary assignment movements are excluded by design.
-
Lookup Type: BUDGET_MEASUREMENT_TYPE
12.2.2
product: PER - Human Resources , meaning: BUDGET MEASUREMENT TYPE , description: Budget Measurement Type ,
-
Lookup Type: BUDGET_MEASUREMENT_TYPE
12.1.1
product: PER - Human Resources , meaning: BUDGET MEASUREMENT TYPE , description: Budget Measurement Type ,
-
VIEW: APPS.HRFV_MOVEMENTS_SUMMARY
12.2.2
-
View: HRFV_MOVEMENTS_SUMMARY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_MOVEMENTS_SUMMARY, object_name:HRFV_MOVEMENTS_SUMMARY, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_MOVEMENTS_SUMMARY ,
-
VIEW: APPS.HRFV_MOVEMENTS_SUMMARY
12.1.1
-
View: HRFV_MOVEMENTS_SUMMARY
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_MOVEMENTS_SUMMARY, object_name:HRFV_MOVEMENTS_SUMMARY, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_MOVEMENTS_SUMMARY ,
-
VIEW: HR.IRC_VAC_SUMMARY#
12.2.2
-
View: PQH_PC_ORG_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_PC_ORG_SUMMARY_V, object_name:PQH_PC_ORG_SUMMARY_V, status:VALID, product: PQH - Public Sector HR , description: Position Control Organization summary view for reports , implementation_dba_data: APPS.PQH_PC_ORG_SUMMARY_V ,
-
VIEW: HRI.HRI_MB_BDGTS_CT#
12.2.2
-
VIEW: APPS.PQH_PC_ORG_SUMMARY_V
12.2.2
-
VIEW: APPS.HRFV_HIRES
12.1.1
-
VIEW: APPS.HRFV_HIRES
12.2.2
-
View: PQH_PC_ORG_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_PC_ORG_SUMMARY_V, object_name:PQH_PC_ORG_SUMMARY_V, status:VALID, product: PQH - Public Sector HR , description: Position Control Organization summary view for reports , implementation_dba_data: APPS.PQH_PC_ORG_SUMMARY_V ,
-
VIEW: APPS.HRFV_TRANSFERS_IN
12.2.2
-
VIEW: APPS.PQH_ENTITY_ELEMENT_TYPES_V
12.2.2
-
View: HRFV_HIRES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_HIRES, object_name:HRFV_HIRES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_HIRES ,
-
VIEW: APPS.PQH_PC_ORG_SUMMARY_V
12.1.1
-
VIEW: APPS.HRFV_TRANSFERS_IN
12.1.1
-
VIEW: APPS.HRFV_TERMINATIONS
12.2.2
-
VIEW: APPS.PQH_POSITION_ELEMENT_TYPES_V
12.2.2
-
APPS.PQH_PQHWSPCH_XMLP_PKG SQL Statements
12.2.2
-
View: PQH_ENTITY_ELEMENT_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_ENTITY_ELEMENT_TYPES_V, object_name:PQH_ENTITY_ELEMENT_TYPES_V, status:VALID, product: PQH - Public Sector HR , description: Entity Element Types View , implementation_dba_data: APPS.PQH_ENTITY_ELEMENT_TYPES_V ,
-
VIEW: APPS.PQH_ORGANIZATION_BUDGETS_V
12.1.1
-
VIEW: APPS.PQH_ORGANIZATION_BUDGETS_V
12.2.2
-
VIEW: APPS.HRFV_MANPOWER_BUDGETS
12.2.2
-
VIEW: APPS.HRFV_MANPOWER_BUDGETS
12.1.1
-
VIEW: APPS.HRFV_TRANSFERS_OUT
12.1.1
-
View: HRFV_TRANSFERS_IN
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_TRANSFERS_IN, object_name:HRFV_TRANSFERS_IN, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_TRANSFERS_IN ,
-
View: HRFV_TRANSFERS_OUT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_TRANSFERS_OUT, object_name:HRFV_TRANSFERS_OUT, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_TRANSFERS_OUT ,
-
VIEW: HR.PER_ALL_VACANCIES#
12.2.2
-
View: HRFV_HIRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_HIRES, object_name:HRFV_HIRES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_HIRES ,
-
VIEW: APPS.PQH_POSITION_ELEMENT_TYPES_V
12.1.1
-
APPS.EDW_HR_RQN_VCNCY_M_SIZING SQL Statements
12.1.1
-
View: PQH_ORGANIZATION_BUDGETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_ORGANIZATION_BUDGETS_V, object_name:PQH_ORGANIZATION_BUDGETS_V, status:VALID, product: PQH - Public Sector HR , description: Organization Budget View , implementation_dba_data: APPS.PQH_ORGANIZATION_BUDGETS_V ,
-
View: PQH_ORGANIZATION_BUDGETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_ORGANIZATION_BUDGETS_V, object_name:PQH_ORGANIZATION_BUDGETS_V, status:VALID, product: PQH - Public Sector HR , description: Organization Budget View , implementation_dba_data: APPS.PQH_ORGANIZATION_BUDGETS_V ,
-
VIEW: APPS.PQH_ENTITY_ELEMENT_TYPES_V
12.1.1
-
APPS.PQH_PQHWSPCH_XMLP_PKG SQL Statements
12.1.1
-
VIEW: APPS.PQH_POSITION_BUDGETS_V
12.1.1
-
VIEW: APPS.HRFV_TERMINATIONS
12.1.1
-
View: PQH_POSITION_ELEMENT_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_POSITION_ELEMENT_TYPES_V, object_name:PQH_POSITION_ELEMENT_TYPES_V, status:VALID, product: PQH - Public Sector HR , description: Position, Elements, Element Types , implementation_dba_data: APPS.PQH_POSITION_ELEMENT_TYPES_V ,
-
View: PQH_ENTITY_ELEMENT_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_ENTITY_ELEMENT_TYPES_V, object_name:PQH_ENTITY_ELEMENT_TYPES_V, status:VALID, product: PQH - Public Sector HR , description: Entity Element Types View , implementation_dba_data: APPS.PQH_ENTITY_ELEMENT_TYPES_V ,
-
View: PQH_POSITION_BUDGETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PQH.PQH_POSITION_BUDGETS_V, object_name:PQH_POSITION_BUDGETS_V, status:VALID, product: PQH - Public Sector HR , description: Position, Budget, element , implementation_dba_data: APPS.PQH_POSITION_BUDGETS_V ,
-
View: HRFV_TERMINATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_TERMINATIONS, object_name:HRFV_TERMINATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_TERMINATIONS ,
-
View: HRFV_TERMINATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_TERMINATIONS, object_name:HRFV_TERMINATIONS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_TERMINATIONS ,
-
VIEW: APPS.HRFV_TRANSFERS_OUT
12.2.2
-
View: HRFV_TRANSFERS_OUT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_TRANSFERS_OUT, object_name:HRFV_TRANSFERS_OUT, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_TRANSFERS_OUT ,
-
TABLE: HRI.HRI_MB_BDGTS_CT
12.2.2
owner:HRI, object_type:TABLE, object_name:HRI_MB_BDGTS_CT, status:VALID,
-
View: HRFV_MANPOWER_BUDGETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_MANPOWER_BUDGETS, object_name:HRFV_MANPOWER_BUDGETS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_MANPOWER_BUDGETS ,
-
View: HRFV_MANPOWER_BUDGETS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_MANPOWER_BUDGETS, object_name:HRFV_MANPOWER_BUDGETS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_MANPOWER_BUDGETS ,
-
View: HRFV_TRANSFERS_IN
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_TRANSFERS_IN, object_name:HRFV_TRANSFERS_IN, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_TRANSFERS_IN ,