web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :

Hide certain Field of the form depending on Security Role of the User using PowerApps.

Community Member Profile Picture Community Member

Introduction:

In this blog, we will learn how to hide fields from the form based on the Security Role of the Logged in User.

Use Case:

We have a requirement where there are some Fields in the form, which should be hidden to the users who does not have the Security Role as Manager.

Steps:

1. This is the form of Quote Product. We want to hide the Price Overriden field from the form to certain Users.

2. To hide the field, click on the DataCard.

        Visible property of the DataCard:

         Set  Price Overridden_DataCard.Visible =  If(LookUp([@'Security Roles'],Name = "Manager",Role) in Concat(LookUp([@Users],'Full Name' = User().FullName).'Security Roles(systemuserroles_association)',Role & ";"),true,false)

 

Conclusion:

Hope the above Blog helps you to hide fields from the form based on the Security Role of the Logged in User.

The post Hide certain Field of the form depending on Security Role of the User using PowerApps. appeared first on Cloudfronts - Microsoft Dynamics 365 | Power BI | Azure.

Comments

*This post is locked for comments