- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2023 06:10 AM
Good Day,
i want to run a script that will set the assign to on the RITM request to certain people as the workflow runs
i have this so far:
and then as the workflow runs the Assign_to will change on the variables the users select.
if this correct or am i missing anything
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2023 06:15 AM - edited 12-19-2023 08:51 AM
Hi @Peter Williams,
Yes. it is correct. make sure to include toString(); after variable name.
current.assigned_to = current.variables.avocat_lawyer.toString();
If my response helps you resolve your issue. Kindly mark it as helpful & correct. It will be helpful to future readers! 👍🏻
Thanks,
Sagar Pagar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2023 06:15 AM - edited 12-19-2023 08:51 AM
Hi @Peter Williams,
Yes. it is correct. make sure to include toString(); after variable name.
current.assigned_to = current.variables.avocat_lawyer.toString();
If my response helps you resolve your issue. Kindly mark it as helpful & correct. It will be helpful to future readers! 👍🏻
Thanks,
Sagar Pagar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2023 06:35 AM
it worked but you forgot the variables in your script
current.assigned_to = current.variables.avocat_lawyer.toString();