HI All
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2024 11:42 PM
how to Restrict SC task access a particular user
Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2024 11:55 PM
Hi @basha shaik do you want to hide assigned to field for a particular user? if yes then use onLoad Client script
or before insert/update BR script with
if(current.assigned_to =='usersysid')
{
gs.addErrorMessage("your not allowed to pick the Task");
current.setAbortAction(true);
}
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 12:30 AM
I Need not Assign to particular person
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 01:32 AM
Hi @basha shaik
Use dictionary override to update reference qualifier condition to restrict one user from assigned_to field selection . Use below query.
Please mark my answer as Accepted as Solution & hit Helpful button if it helped you.
Thanks,
Shikha