
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-25-2022 07:01 AM
I am trying to open the "Request For" to be allowed to edit when a end user checks out in service portal. I can but its because I'm an "Admin"(at least I think, or inherited something). I have other ITIL users that need to be able to change this field but its greyed out for them. Would anyone know how to give the ITIL users the editing capability?
Solved! Go to Solution.
- Labels:
-
Service Portal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-26-2025 12:44 PM
Actually I found out the answer, thanks to @Ankur Bawiskar . It was a simple property! glide.sc.req_for.roles.default
and glide.sc.req_for.roles .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-25-2022 08:05 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-25-2022 08:14 AM
Hi Andrew,
If above solution doesnt work try this. if thats on catalog task table.
Check out the 'sc_task.*' write ACL and add your role there. It's restricted to 'itil' by default.
There may also be several field-specific ACLs on the 'task' table that you'll need to adjust.
You would do this (if needed) by creating a field-level ACL on the 'sc_task' table to override what's being set at the 'task' table level.
Mark Correct or Helpful if it helps.
***Mark Correct or Helpful if it helps.***

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-25-2022 12:18 PM
both of the answers above did not work for me. When I impersonate another ITIL user its still greyed out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-14-2022 04:40 AM
Hi Andrew,
Try to create a catalog ui policy with below script in Execute if True.
function onCondition() {
if(g_user.hasRole('itil'))
{
g_form.setReadOnly('requester',false);
}
else
{
g_form.setReadOnly('requester',true);
}
}
Thanks,
Pooja M