Hide certain Field of the form depending on Security Role of the User using PowerApps.
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.
Related posts:
How to add an Entity and fields in Global Search On Dynamics 365 CRM
How to create a SharePoint site and enable Server-Based SharePoint Integration for Document Manageme...
Posting Restriction in Business Central for different users for Purchase and Sales documents
Quality Management Process in Dynamics 365 Supply Chain Management - Part 2