- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2023 09:39 AM
Currently, the "Short Description" field on the Catalog Task is being populated via the workflow Activity.
The problem is, if I use the same workflow for multiple Catalog Items the Short descriptions are all the same.
How can I have the Short description in the Catalog Task match the short description from the Catalog Item as it does for the RITM short description?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2023 09:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2023 07:34 AM
So, It looks like I worded my inquiry wrong.
I need to populate the RTIM Catalog Item to the Service Catalog Task Short description field. This way I can use the same workflow for multiple Service Catalog Items that don't have the same Short description.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2023 10:11 AM
I understand what you are looking for. The below is all the Advanced Script should have in it. Just the one line just the way it is and nothing else and it should work.
task.setValue("short_description", current.cat_item.short_description);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2023 08:31 AM
It's still not working. It populates the Short description from the Task variable.
If I remove the Short description value & just use the script the short description in the Task is blank.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2023 08:54 AM
It did not work because you did not enter the script just how I typed it. You need to enter it just like I typed it. No other characters. You keep leaving in the // which indicates a comment.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-03-2023 09:01 AM
That was it! thanks for your patients.