Oracle Fusion HCM Analytics

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

How to change the tenure band to use enterprise seniority date?

Accepted answer
84
Views
5
Comments
Ruben97
Ruben97 Rank 3 - Community Apprentice

Hi,

Is it possible to change the tenure band in FAW to use the enterprise seniority date to calculate the bands?

Best Answers

Answers

  • Ashish-Oracle
    Ashish-Oracle Rank 7 - Analytics Coach

    @Ruben97 Currently the Tenure Bands are setup in Reporting Configuration parameters and there is no way to alter that.

    But, there is this metric named 'Years of Service(V1 Enterprise Seniority) under Facts - Workforce Length of Service in HCM - Workforce Core. Are their any challenges in leveraging this column at your end?

  • Ruben97
    Ruben97 Rank 3 - Community Apprentice

    @ashish.f.singh-Oracle Thank you for your response. Will it be possilbe to edit it in the future? Or do I need to raise an enhancement request for this?

    I tried creating a custom calculation with the metric you mentioned. It is working fine on record level, but I want to create an annual overview of the turnover in the tenure groups (2018 until 2024). But it seems it is not aggregating correctly..

    With the person numbers in the viz it works fine (see column Tenure Group (Years of Service by Enterprise Seniority)

    But if I add Time.Year to the viz and remove person number I am experiencing some strange behaviour:

    There should be starters in all the years, so in 2018 the people who started in 2018 should be in the <1 bracket.

    So the metric is (currently) not working for me

    This is the code of my custom calculation:

    CASE
    WHEN AGGREGATE("HCM - Workforce Core"."Facts - Workforce Length of Service"."Years of Service(V1 Enterprise Seniority)" BY "HCM - Workforce Core"."Identifier Attributes"."Person Identifier", "HCM - Workforce Core"."Time"."Year") < 1 THEN '< 1'
    WHEN AGGREGATE("HCM - Workforce Core"."Facts - Workforce Length of Service"."Years of Service(V1 Enterprise Seniority)" BY "HCM - Workforce Core"."Identifier Attributes"."Person Identifier", "HCM - Workforce Core"."Time"."Year") >= 1 AND AGGREGATE("HCM - Workforce Core"."Facts - Workforce Length of Service"."Years of Service(V1 Enterprise Seniority)" BY "HCM - Workforce Core"."Identifier Attributes"."Person Identifier", "HCM - Workforce Core"."Time"."Year") < 3 THEN '1-2'
    WHEN AGGREGATE("HCM - Workforce Core"."Facts - Workforce Length of Service"."Years of Service(V1 Enterprise Seniority)" BY "HCM - Workforce Core"."Identifier Attributes"."Person Identifier", "HCM - Workforce Core"."Time"."Year") >= 3 AND AGGREGATE("HCM - Workforce Core"."Facts - Workforce Length of Service"."Years of Service(V1 Enterprise Seniority)" BY "HCM - Workforce Core"."Identifier Attributes"."Person Identifier", "HCM - Workforce Core"."Time"."Year") < 5 THEN '3-4'
    WHEN AGGREGATE("HCM - Workforce Core"."Facts - Workforce Length of Service"."Years of Service(V1 Enterprise Seniority)" BY "HCM - Workforce Core"."Identifier Attributes"."Person Identifier", "HCM - Workforce Core"."Time"."Year") >= 5 AND AGGREGATE("HCM - Workforce Core"."Facts - Workforce Length of Service"."Years of Service(V1 Enterprise Seniority)" BY "HCM - Workforce Core"."Identifier Attributes"."Person Identifier", "HCM - Workforce Core"."Time"."Year") < 10 THEN '5-9'
    WHEN AGGREGATE("HCM - Workforce Core"."Facts - Workforce Length of Service"."Years of Service(V1 Enterprise Seniority)" BY "HCM - Workforce Core"."Identifier Attributes"."Person Identifier", "HCM - Workforce Core"."Time"."Year") >= 10 AND AGGREGATE("HCM - Workforce Core"."Facts - Workforce Length of Service"."Years of Service(V1 Enterprise Seniority)" BY "HCM - Workforce Core"."Identifier Attributes"."Person Identifier", "HCM - Workforce Core"."Time"."Year") < 15 THEN '10-14'
    WHEN AGGREGATE("HCM - Workforce Core"."Facts - Workforce Length of Service"."Years of Service(V1 Enterprise Seniority)" BY "HCM - Workforce Core"."Identifier Attributes"."Person Identifier", "HCM - Workforce Core"."Time"."Year") >= 15 THEN '≥ 15'
    ELSE 'ERROR' END

  • @Ruben97 Could you please mark the appropriate answer as "accepted" in this thread?

    This will allow other forum users to benefit from this thread as it will showcase and highlight the pertinent and valid answers, thereby allowing for a faster problem solution for other users experiencing the same issues as yourself.

    Thanks,

    Namrata