How to restrict Global Search to search in all applications?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2023 09:47 PM
Hi All,
I want to restrict users to search in all applications i.e they can get search result from their application records only.
Can anyone please help how to achieve this in Workspace?
Any response will be appreciated.
Thanks,
Ankita
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2023 11:05 PM
Hello,
You can acheive it by using Read ACL and check if there is any Read ACL is masking this and giving access to ITIL users
if(gs.getUserID().isMemberOf(' My contract group'));
{
answer = true;
gs.log("ACL check true");
}
else
{
answer = false;
}
Regards,
Vaishnavi Lathkar