Can you restrict showing a module link by group instead of role?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-16-2014 12:38 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-06-2016 07:37 AM
It depends entirely on how your contract with SNOW is setup... the only person that can answer that is your sales rep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-16-2014 08:42 PM
Adding to what Solutioner has said, you need to De-Activate the Before Query BRs that are currently working for the Roles for your Configuration to Work Properly.
Having said that, i think granting access to Modules, Applications is best done through Roles.
Thanks,
Subhajit

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-16-2014 09:07 PM
2 ways :
1. Write a UI script and use DOM object to hide / unhide modules
2. See the solution I gave in below post.
Want to hide a module under "Self-Service" app if user has a specific domain
Regards,
Bhavesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-08-2014 03:24 AM
Hide Application or Module
Table: Application Menu [sys_app_application] or Module[sys_app_module]
When: before
Query = true
if(!gs.getUser().isMemberOf('Group A') && !gs.getUser().isMemberOf('Group B') && !gs.getUser().isMemberOf('GroupC') && !gs.hasRole('admin'))
{
current.addQuery('sys_id','!=','5212632ced4f5500b14f689a971ad873');//sys_id of the application
}
Above scripts should hide an application (sys_id =5212632ced4f5500b14f689a971ad873) or can be used to hide module (change the table you run the BR and the sys_id to that of the module you want to hide) for all users who are not part of Group A or B or C or are not admin

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-05-2019 10:39 PM
Thanks srathore,