- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-27-2016 12:04 PM
Hi all,
How do I pass catalog item name to tasks. One way is to create it as a variable on the catalog item and pass it to the tasks in the workflow as shown below but I do not want to create a variable. How do I achieve this. I will be passing some variables shown below on the left and I want the catalog item name too
Thanks
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-28-2016 05:42 AM
Based upon your example, this is what you can use:
task.short_description = "Please deploy item "+ current.cat_item.getDisplayValue() + " to the user";
Let us know if that works to your liking.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-28-2016 11:51 AM
Thank You Chris!