Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello friends,
I am trying to do implement section access for Lead information that only different lead owner can see there data only.
I have a two user only onis admin and another is user1.
And I have field Reagion__c in which values are North,South,east and West. I want User1 can see the data of north only.
SECTION ACCESS;
LOAD * INLINE [
ACCESS, USERID,Region__c
User, DOMAIN\ADMINISTRATOR,*
User, DOMAIN\USER1,NORTH
section application;
// what should I write in section application
But it is not working.