- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2018 12:03 AM
Hi,
we have two different assignment groups in Change Request i.e Group A and Group B. If logged in person belongs to Group A then he can see change request which are assigned to Group A request only in List view and he couldn't to access any other request.
Please help me to achieve.
Regards,
Naga.
Solved! Go to Solution.
- Labels:
-
Scripting and Coding

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2018 12:21 AM
Hi,
You can write a before query BR on change table:
Use below code:
var usr = gs.getUserId().isMemberOf(current.assignment_group);
if(usr)
var qc = current.addQuery("assignment_group",current.assignment_group);
you can use ACL as well
Thanks,
Ashutosh

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2018 12:21 AM
Hi,
You can write a before query BR on change table:
Use below code:
var usr = gs.getUserId().isMemberOf(current.assignment_group);
if(usr)
var qc = current.addQuery("assignment_group",current.assignment_group);
you can use ACL as well
Thanks,
Ashutosh