Oracle Fusion Data Intelligence Idea Lab

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

New flag field which uses the Federal Ethnicity Code to classify race and ethnicity categories

178
Views
7
Comments

The new Federal Ethnicity Code flag would collapse racial and demographic information into one line rather than multiple lines per individual. Following the IPEDS reporting requirements, which is what higher education institutions must use, it categorizes individuals into the five categories for race and follows special rules for Hispanic and multiracial. If an individual selects 'I am Hispanic or Latino' they will be categorized as 'Hispanic' over all else. If an individual selects 'African American' and 'Asian', they will be categorized as two or more races. The new field would better account for individuals that are multiracial, rather than creating multiple lines for each race they check.

The new field's simplification of the categories more accurately and concisely reports on an institution's racial and ethnic background. It greatly speeds up the time it takes to build a report as well. All of this can be currently done through custom datasets or calculations, however, it is a lengthy process that can often result in errors, especially when reporting on the historical data in this category. The time it takes to load visuals with the custom datasets are much longer than visuals created with data straight from the subject area.

12
12 votes

Submitted · Last Updated

Comments

  • Caroline - We will review this and revert

  • Hi @CarolineAnderson, is the new Federal Ethnicity Code flag a custom DFF created on top of Person ethnicities?

    With respect to the scenario mentioned above, below is an example of what this flags behaviour seems like. Please confirm if our understanding is correct.

    Person Number

    Ethnicity

    Ethnicity Display for the Worker

    1001

    I am Hispanic or Latino

    Hispanic

    1001

    Asian

    Hispanic

    1002

    American

    Two or More Races

    1002

    Asian

    Two or More Races

    1003

    Chinese

    Chinese

  • Caroline Blanchard
    Caroline Blanchard Rank 6 - Analytics Lead

    Hi @AnishaPatra-Oracle your example looks like what we are looking for! It would be fine to be a custom DFF or just a new attribute in the HCM Subject areas such as workforce core.

  • Hi @CarolineAnderson , thanks for confirming! I have an additional request in this context, could you share a snapshot of how currently this field "new Federal Ethnicity Code flag" looks like in your HCM system? Is a custom DFF field created to support this?

  • Caroline Blanchard
    Caroline Blanchard Rank 6 - Analytics Lead

    We created a custom dataset to do this. Here is the query we used:
    SELECT "HCM - Workforce Core"."Basic Information"."Person Number",
    CASE
    WHEN COUNT(DISTINCT "HCM - Workforce Core"."Ethnicity"."Ethnicity - All") > 1 AND "HCM - Workforce Core"."Basic Information"."Person Number" IN (SELECT "HCM - Workforce Core"."Basic Information"."Person Number" FROM "HCM - Workforce Core" WHERE "HCM - Workforce Core"."Ethnicity"."Ethnicity - All" = 'I am Hispanic or Latino.') THEN 'I am Hispanic or Latino.'
    WHEN COUNT(DISTINCT "HCM - Workforce Core"."Ethnicity"."Ethnicity - All") > 1 THEN 'Two or more races'
    WHEN "HCM - Workforce Core"."Ethnicity"."Ethnicity - All" IS NULL THEN 'Not disclosed'
    ELSE "HCM - Workforce Core"."Ethnicity"."Ethnicity - All" END AS Ethnicity_Custom,
    CASE
    WHEN COUNT(DISTINCT "HCM - Workforce Core"."Ethnicity"."Ethnicity - All") > 1 AND "HCM - Workforce Core"."Basic Information"."Person Number" IN (SELECT "HCM - Workforce Core"."Basic Information"."Person Number" FROM "HCM - Workforce Core" WHERE "HCM - Workforce Core"."Ethnicity"."Ethnicity - All" = 'I am Hispanic or Latino.') THEN 'Minority'
    WHEN COUNT(DISTINCT "HCM - Workforce Core"."Ethnicity"."Ethnicity - All") > 1 THEN 'Minority'
    WHEN "HCM - Workforce Core"."Ethnicity"."Ethnicity - All" IS NULL THEN 'Not disclosed'
    ELSE 'Minority' END AS Ethnicity_Type
    FROM "HCM - Workforce Core"

  • Chelsea H.
    Chelsea H. Rank 2 - Community Beginner

    We would greatly benefit from this information collapsed into one line per individual as well. We are considering Caroline's workaround and another option but the options will take additional time / effort to set up as well as ongoing maintenance.

  • Matthew Phillips
    Matthew Phillips Rank 1 - Community Starter

    Our company would also find this solution tremendously beneficial. We also worked out a custom column formula to "collapse" but it is complex and doesn't work consistently across all subject areas. I couldn't agree more with the business case outlined above and fully support anything that can be done to enhance the reporting capabilities for race/ethnicity!