- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2024 11:47 PM
I want to restrict a table to perticular group as well as fields by using ACL
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2024 11:57 PM - edited ‎04-05-2024 11:57 PM
Hi @Kishore47 ,
You can create two ACLs
- Table.None
- Table.*
N in the script section u can just write this
if(gs.getUser().isMemberOf('enter_your_group_name'){
answer = true;
}
Thanks,
Danish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2024 11:57 PM - edited ‎04-05-2024 11:57 PM
Hi @Kishore47 ,
You can create two ACLs
- Table.None
- Table.*
N in the script section u can just write this
if(gs.getUser().isMemberOf('enter_your_group_name'){
answer = true;
}
Thanks,
Danish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-08-2024 11:31 PM
Hi Danish
My bad its showing error can you please check this code