- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2023 11:58 AM
Hello!
We are trying to create a workflow that will assign the case to the person selected from a variable on the record producer. We have tried a few things but nothing seems to be working.
Any suggestions?
Thank you,
James
Solved! Go to Solution.
- Labels:
-
Human Resources Service Delivery
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2023 07:48 AM
You can just use the Script field at the bottom of the Record Producer, if the variable is a reference to the sys_user table. Something like:
current.assigned_to = producer.variable_name
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2023 07:48 AM
You can just use the Script field at the bottom of the Record Producer, if the variable is a reference to the sys_user table. Something like:
current.assigned_to = producer.variable_name

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2023 08:48 AM
You can use Run Script activity with following code:
current.assigned_to = workflow.variables.variableName //get the workflow variable for assigned user
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2023 09:01 AM
Thank you!