Hello All ,
There are 10 tabs in a record view and every tab has certain view level security configured to them but now the view level security show be removed and placed inside the interface .Upon click of the page/interface check if its eligible then print the existing interface else show an error message .
I wanted to know what will happen if we remove the view level security from record and place it inside interface.
Discussion posts and replies are publicly visible
You can apply visibility conditions within the each view, on the top of your code. You can wrap with a simple if() and the error message in the else condition.
if( a!isUserMemberOfGroup("User"), {"Your existing code"}, {"Your error Message"} )