Prevent access to certain modules
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-26-2016 11:27 AM
Hi,
I have a requirement to prevent certain modules from being visible for certain roles. For ex- the new role should be able to see certain modules od Discovery menu, but should be restricted to see Schedule and Credentials. How do I hide them for certain roles?
Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-26-2016 09:58 PM
Hi Mary,
This can be achieved by creating read ACL's for the table and in script you can check:
if (gs.hasRole('itil') && gs.hasRole('roleB')){
answer = false;
}
Thanks,
Manik
PS - Please mark correct, helpful and like if applicable
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-27-2016 04:59 AM
Manik, that will work on the table level, but I want to prevent the display of Modules.
Am I missing something here?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-27-2016 11:08 AM
Hi Mary,
This would restrict access for tables so if the module is created to display records of that table then records won't be visible on clicking module.
I am not quite sure how we can achieve to hide modules if the users have additional privilege of role B as you want that users with role itil should be able to see the modules so if this first condition is true the module would be displayed, as purpose of role is to provide access to users . Here we are trying to use 'roleB' to restrict access.
Thanks,
Manik
PS - Please mark correct, helpful and like if applicable
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-29-2016 10:28 PM
This might be able to help - Hide Applications/Modules for users with a specific role

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-01-2017 01:24 AM