- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2020 09:07 AM
We're toying with Agent Workspace on our PoC instance and can't get Agent Assist to show for users who aren't admins but have it itil role. I've set it up on my personal dev instance and it works fine for non-admins who have the itil role.
The non-admins can access Agent Workspace fine. Agent Assist just doesn't show for them. I don't see any type of acl that controls who can view it. Thoughts on where to look?
Thanks
-Roger
Solved! Go to Solution.
- Labels:
-
Agent Workspace
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2020 05:34 PM
If anyone else has this problem, I had to set the roles with a script. That first sys_id (before the itil role) must be some artifact from ServiceNow.
var gr = new GlideRecord('sys_declarative_action_assignment');
gr.get('__agent_assist_sys_id__');
gr.required_roles = "260c203a870033000e56d61e36cb0bbc,__itil_role_sys_id__";
gr.update();
That did resolve the problem. Thanks me.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2020 10:16 AM
HI,
Indeed it is controls based on roles. Glad you found it.
Thanks,
Ashutosh

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2020 04:23 PM
Hi Ashutosh,
Are you able to kindly provide the specific role I need to add to non-admin users?
I will appreciate it.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2020 01:17 PM
HI,
Workspace roles are needed.
Thanks,
Ashutosh

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2020 03:14 PM
Thank you for the response.
I have added roles like workspace_user, workspace_admin, agent_workspace_user but still unable to see the icon appear.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2021 07:37 PM
Sorry that I didn't see your question until now. Did you figure it out? If not, look at the roles in the sys_declarative_action_assignment table. In my case, the required_roles field had a truncated sys_id for the itil role. I believe that was the issue.