Restricting the data export in the instance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2014 12:12 AM
Hi
I need to restrict the data that can be exported by users. I would like only a certain users with specific roles to be able to export data out of the instance. Any suggestions on how to do it.
Thanks
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2015 02:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2017 04:18 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2018 09:23 AM
This condition was close but did not fulfill the need for me. Here is the before and after condition that allows only admins to export via the List context menu.
Condition before: !ListProperties.isRelatedList() && !ListProperties.isRefList()
Condition after: (gs.hasRole('admin')) && !ListProperties.isRelatedList() && !ListProperties.isRefList()