Forum Discussion

LDevi86's avatar
LDevi86
Frequent Visitor
6 years ago
Solved

Dynamic Row Level Security for the live connection with SSAS Tabular Model

Hi All,

I am implementing the Dynamic Row Level Security for the power bi users, which is live connection with SSAS tabular model.

 

I gone through the below steps:

1. I have created a table with the Users.

EmployeeIDSalesTerritoryIDFirstNameLastNameUserName
11User1AXXXX\User1
28User2BXXXX\User2
39User3CXXXX\User3
47User4DXXXX\User4
511USer5EXXXX\User5

2. Crated roles in SSAS  and added users to  membership.

And below picture for reference.

3. Used below DAX query to apply Dynamic RLS

 

=DimSalesTerritory[SalesTerritoryKey]=LOOKUPVALUE(DimUserSecurity[SalesTerritoryID], DimUserSecurity[UserName], USERNAME(), DimUserSecurity[SalesTerritoryID], DimSalesTerritory[SalesTerritoryKey])

4. Shared Power Bi report to the Users(Local AD users).

5. User can not able to see the content (User could see the blank visuals).

6. It is working for the Static RLS.

Given the DAX : =DimSalesTerritory[SalesTerritoryKey]=2

 

For more information I have On-Prem SSAS, Local AD users and live connection with the Power BI.

what would be the reason for this. If any suggestions , it would be appriciated.Thanks in Advance. 

 

Thanks,

Lakshmi

6 Replies

  • USERNAME() behaves differently on Desktop and Service. Always use USERPRINCIPALNAME() and always use email addresses, not domain accounts.

    • LDevi86's avatar
      LDevi86
      Frequent Visitor

      Thanks for the reply. 

      I have changed the table and DAX query as below using UPN.

      And DAX :

      =DimSalesTerritory[SalesTerritoryKey]=LOOKUPVALUE(DimUserSecurity[SalesTerritoryID], DimUserSecurity[UserName], USERPRINCIPALNAME(), DimUserSecurity[SalesTerritoryID], DimSalesTerritory[SalesTerritoryKey])

       

      But the result is same, User could see blank report.

      Do I should change the DAX query? any other settings to fix it?

       

      Thanks,

      Lakshmi

      • lbendlin's avatar
        lbendlin
        Super User

        In power bi create a RLS role and for the DimUserSecurity table specif the rule

         

        [Username]=USERPRINCIPALNAME()

  • sultanan3's avatar
    sultanan3
    Frequent Visitor

    Hi Lakshmi, I also have same porblem, Row level security is not working. In my case viewers can see all countries, I wonder if you get the solution so I can implement that way. Thank you

    NS