- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-10-2013 02:00 AM
Hi, this will probably be a really simple question to answer...
I have built a workflow for a specific service request. I have created a catalog task but I don't know how to assign it to the requester? I guess this would require some scripting to assign it to the requester as it could be someone different every time?
Thanks,
Hugo
Solved! Go to Solution.
- Labels:
-
Service Mapping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-10-2013 10:16 AM
Technically an "Advanced script", but actually a real simple one 🙂
...should do it for you. That will assign it to whoever ordered the item, but if you meant who it is for (users can order things for other people), then this will do it:
task.assigned_to = current.request.requested_for;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-10-2013 10:16 AM
Technically an "Advanced script", but actually a real simple one 🙂
...should do it for you. That will assign it to whoever ordered the item, but if you meant who it is for (users can order things for other people), then this will do it:
task.assigned_to = current.request.requested_for;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-26-2018 02:40 PM
Hi Jim,
I've tried your suggested line since I have the same requirement, but it doesn't seem to be assigning to any user. If anything the task will assign to the previous fulfiller of the other task.
Any suggestions?
Thanks,
Grace
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-11-2013 12:39 AM
Thanks, that works perfectly! 🙂