Search Results minimum_pay
Overview
HRFV_SALARY_SURVEY_MAPPINGS is an APPS-owned database view within the PER – Human Resources product family in Oracle E-Business Suite 12.1.1 and 12.2.2. Per the ETRM metadata, it is a business view template from which the flexfield view is generated, meaning it serves as the semantic foundation for the Descriptive Flexfield (DFF) enabled reporting view exposed to Oracle HRMS and Oracle Business Intelligence (BIS) reporting layers. The view consolidates salary survey mapping data — the relationships established between an enterprise's internal workforce structures (business groups, organizations, jobs, positions, grades, locations) and the external salary survey lines supplied by compensation data vendors.
Its purpose is to present salary survey line information in a denormalized, business-friendly form suitable for compensation analytics, benchmarking dashboards, and integration with the HR BIS (Business Intelligence System) package. Because the view resolves internal IDs into names and decodes lookup codes via HR_BIS.BIS_DECODE_LOOKUP, it removes the burden of secondary joins from downstream reporting consumers.
Underlying Base Objects
The view is defined over the following documented base objects:
- PER_SALARY_SURVEY_MAPPINGS (synonym) — the primary mapping entity linking internal HR entities to survey definitions.
- PER_SALARY_SURVEYS (synonym) — header-level survey definition, supplying survey name, company, identifier, type, and base region.
- PER_SALARY_SURVEY_LINES (synonym) — line-level survey data (pay statistics, quartiles, currencies, dates).
- PER_JOBS_TL, HR_ALL_POSITIONS_F_TL, PER_GRADES_TL, HR_ALL_ORGANIZATION_UNITS_TL, HR_LOCATIONS_ALL_TL — translated name sources for jobs, positions, grades, organizations, and locations.
- FND_CURRENCIES_VL (view) — supplies currency name resolution for line currency.
- HR_BIS (package) — invoked at runtime to decode lookup codes into descriptive values.
The DECODE constructs on SSM.PARENT_TABLE_NAME determine whether JOB_NAME or POSITION_NAME is populated, since a mapping may point to either parent entity. The HR_BIS.BIS_DECODE_LOOKUP calls abstract lookup decoding for attributes such as company age, survey company, pay basis, survey job name, survey region, seniority, company size, industry, and survey age.
Key Columns
- BUSINESS_GROUP_NAME, ORGANIZATION_NAME — internal organizational context of the mapping.
- JOB_NAME, POSITION_NAME, GRADE_NAME, LOCATION_NAME — the internal HR entity being benchmarked.
- SURVEY_NAME, SURVEY_COMPANY, SURVEY_IDENTIFIER, SURVEY_TYPE, BASE_REGION — survey header attributes.
- SURVEY_JOB_NAME, SURVEY_REGION, SURVEY_SENIORITY, COMPANY_SIZE, INDUSTRY, SURVEY_AGE — decoded survey line attributes.
- LINE_START_DATE, LINE_END_DATE — validity window of the survey line.
- DIFFERENTIAL, LINE_CURRENCY — pay adjustment and currency context.
- MINIMUM_PAY, MEAN_PAY, MAXIMUM_PAY, GRADUATE_PAY, STARTING_PAY — statistical pay measures.
- PERCENTAGE_CHANGE — the year-over-year percentage movement reported on the survey line; this is the column most directly relevant to the user's search term and is central to compensation trend analysis.
- JOB_FIRST_QUARTILE, JOB_MEDIAN_QUARTILE, JOB_THIRD_QUARTILE, JOB_FOURTH_QUARTILE — pay distribution quartiles.
- MINIMUM_TOTAL_COMPENSATION, MEAN_TOTAL_COMPENSATION, MAXIMUM_TOTAL_COMPENSATION — total compensation statistics.
Common Use Cases and Queries
The view is typically consumed for compensation benchmarking, salary structure validation, and trend reporting. A representative query returning the percentage change for a specific job across surveys:
SELECT business_group_name, organization_name, job_name, grade_name,
survey_name, survey_company, line_start_date,
minimum_pay, mean_pay, maximum_pay, percentage_change
FROM apps.hrfv_salary_survey_mappings
WHERE percentage_change IS NOT NULL
AND line_start_date >= :start_date
ORDER BY percentage_change DESC;
A second common pattern aggregates average percentage change by grade to support annual merit and market movement reviews:
SELECT grade_name, AVG(percentage_change) avg_change
FROM apps.hrfv_salary_survey_mappings
WHERE survey_name = :survey
GROUP BY grade_name;
Because the view resolves lookup codes and names at query time, it is well suited to ad-hoc BIS reporting, Oracle Discoverer worksheets, and OBIEE repositories requiring denormalized salary survey data.
-
View: HRFV_SALARY_SURVEY_MAPPINGS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SALARY_SURVEY_MAPPINGS, object_name:HRFV_SALARY_SURVEY_MAPPINGS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SALARY_SURVEY_MAPPINGS ,
-
View: HRFV_SALARY_SURVEY_MAPPINGS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_SALARY_SURVEY_MAPPINGS, object_name:HRFV_SALARY_SURVEY_MAPPINGS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_SALARY_SURVEY_MAPPINGS ,
-
View: PER_SALARY_SURVEY_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_SALARY_SURVEY_LINES_V, object_name:PER_SALARY_SURVEY_LINES_V, status:VALID, product: PER - Human Resources , description: Used to support user-interface. , implementation_dba_data: APPS.PER_SALARY_SURVEY_LINES_V ,
-
View: PER_SALARY_SURVEY_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_SALARY_SURVEY_LINES_V, object_name:PER_SALARY_SURVEY_LINES_V, status:VALID, product: PER - Human Resources , description: Used to support user-interface. , implementation_dba_data: APPS.PER_SALARY_SURVEY_LINES_V ,
-
View: PER_SALARY_SURVEY_MAPPINGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_SALARY_SURVEY_MAPPINGS_V, object_name:PER_SALARY_SURVEY_MAPPINGS_V, status:VALID, product: PER - Human Resources , description: Used to support user-interface. , implementation_dba_data: APPS.PER_SALARY_SURVEY_MAPPINGS_V ,
-
View: PER_SALARY_SURVEY_MAPPINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_SALARY_SURVEY_MAPPINGS_V, object_name:PER_SALARY_SURVEY_MAPPINGS_V, status:VALID, product: PER - Human Resources , description: Used to support user-interface. , implementation_dba_data: APPS.PER_SALARY_SURVEY_MAPPINGS_V ,