RLS based on security privileges in Dynamics 365

Scenario:

Let’s say we have a Power BI report which contains an organization’s sales data. This dataset contains sales information from all the countries the organization operates in. The organization wants to enable managers to track sales targets and overall performance by their respective countries. Hence, it is a requirement that a manager from one country should not be able to see the performance of a manager from another country.

Power BI has Row Level Security (RLS) to keep data from being exposed to unauthorized users. We can leverage RLS to create roles and assign those roles to specific users in Power BI service. We can apply RLS for user based security as well as other categories e.g. geographical locations.

 

Learn more about our Microsoft Dynamics 365 Services

Learn More

Scope of the Blog

In this blog, I’ll be showing you how to use RLS based on roles/privileges assigned to users on Dynamics and how we can replicate those security access levels in Power BI.

Access Levels in Dynamics 365

There are 5 different types of access levels in Dynamics.

  • Global: allows access to all of an organization’s records.
  • Deep: allows access to all records in their business unit andin subordinate units.
  • Local: allows access to all records in their business unit.
  • Basic: allows access to records they own or that are shared with them or their teams.
  • None: allows no access to records.

These access levels are given to users to perform their respective functionalities. In this blog, we’ll be looking at implementing RLS on roles which have Global, Local and Basic access levels. For more information on Dynamics’ Privileges, Access levels and Security, click here.

Security Implementation in Power BI

In this blog, I will be focusing on the read privilege of Opportunity entity only as every entity has different read/write/update/delete privileges.

Getting D365 Access Levels using FetchXML

In a simple RLS scenario, we would be sourcing our data using OFeed but in order to get Access Levels from Dynamics we are going to use FetchXML. To see how to use FetchXML, click here.

I have used the following FetchXML snippet to get Access Levels data of users. To see how to implement it using Power Query, please refer to the link given earlier.

D365 Access Levels

The result gives us a table like the one shown below.

D365 Access Levels using FetchXML

  • Domainname: The email of the user associated with the business unit.
  • Business Unit: Name of the business unit
  • User: Full name of the user
  • PrvReadOpportunity: Option set for Read Privileges associated with the user. In this case,
    • 1 is for User-only access
    • 4 is for Business unit level access
    • 8 is for Organization level access

Data Model

I’m using opportunity entity only for demonstration purposes and the security roles later defined will be featuring security on Opportunity entity only to keep things simple.

Opportunity entity

Configuration in Power BI Desktop

Defining Security Roles:

Here I have defined four different user roles in Power BI Desktop as listed below:

  1. Static role: where the users can only view data with pre-defined filters placed on it. The data will be shown irrespective of the logged-in user.
    • Go to Modeling -> Manage Roles

Manage Roles

  1. User-only role: where the logged in user can see their corresponding opportunities data.

User-only role

  1. Business unit only role: where the logged-in user can see opportunities data of any user sharing the same business unit. E.g. User A has access to Business Units B1 & B2, the resulting report will be showing opportunities data related to the units B1 & B2 of all users, so that the data would be specific to these two business units.

Business unit only role

  1. Dynamic role: where the logged-in user will be dynamically shown the data according to the security role assigned on CRM.

Dynamic role

As the DAX for the Dynamic role is a bit lengthy, I’ll list it out here to help you out.

DAX for the Dynamic role

Testing Security Roles on Power BI Desktop

You can test the roles you have created in Power BI Desktop.

  • Click on Modeling -> View as Roles

Testing Security Roles

Deployment and role assignment on Power BI service

  1. Publish the report using Publish icon in Home
  2. Upon success, go to Power BI service and navigate to the workspace you have published it in.
  3. Go to Datasets -> (Your Published report) -> Security and add the users in their specific roles. Note that you can’t add users from outside of your organization.

Deployment and role assignment

Remember: RLS only works for users with Viewer role of the workspace your report has been published in. Find out more on Power BI Workspace related user roles over here.

Conclusion

Power BI eases our job of maintaining the same security across platforms. Using RLS, we can keep data from being exposed to unauthorized users and can inherit security privileges already created on Dynamics 365.

If you have any question or queries, do not hesitate to reach out to us

2 thoughts on “RLS based on security privileges in Dynamics 365”

  1. Awesome post (Y),

    I am having some issues while executing the said fetchXML as it is only returning users(and privileges) for the parent business unit only. In my scenario, we have 3 level hierarchy of Business units so could you please let me know if there is any workaround for this to achieve?
    Fetch XML:

  2. Hi Ehsan,

    PATH is a DAX function that traverses the hierarchy and returns the chain separated by a delimiter. You can use the PATH function to create a new column for business unit hierarchy and then use the CONTAINSSTRING function to configure RLS.

    Regards,
    BOLDEnthusiast

Comments are closed.