- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2019 12:26 PM
Good afternoon everyone,
Does anyone know if it is possible to restrict the requested item and the catalog tasks associated with the requested item to a certain group via ACL's?
I tried a table level and row level ACL but that did not work
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2019 02:10 PM
I would do before query Business rule.
Please mark my response as correct and helpful if it helped solved your question.
-Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2019 12:35 PM
I would change it to
if (!gs.getUser().isMemberOf('HR Functional Team')){
answer = false;
}
Right not you are saying that if they are a member of the team then they get access but it is not reaming access for ITIL users as they already have access so by saying is not a member of the group return false it should only allow member of that team to access the requests and not override the ability to the user who submitted them to not have access.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2019 12:49 PM
Hello Brian,
Ill make that adjustment now, I will follow up with my progress.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2019 12:40 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2019 12:48 PM
Hello Gundeep,
I want only members of that group to see the request item and catalog tasks associated with it.