- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2024 03:00 AM
Hello Community,
How can we set a RITM variable description automatically to task short description? They are currently different and I want to set them the same. RITM & Task Description should be the same.
I have attached a picture for your reference.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2024 03:09 AM
Hi,
You have two options:
1) In flow, you can set the short description of task with the short description variable while creating he catalog task
2) Create BR on Catalog task. and use the below code to set short description
current.short_description = current.parent.variables.short_description
Thank you,
Palani
Palani

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2024 03:09 AM
HI @Burhan Shah
In the workflow at the catalog task activity.
Advanced section:
task.short_description = current.short_description;
Should do the trick for you
Please mark my response as correct and helpful if it helped solved your question.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2024 03:09 AM
Hi,
You have two options:
1) In flow, you can set the short description of task with the short description variable while creating he catalog task
2) Create BR on Catalog task. and use the below code to set short description
current.short_description = current.parent.variables.short_description
Thank you,
Palani
Palani
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2024 05:14 AM
@palanikumar Thank you so much it worked.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2024 03:09 AM
Hi @Burhan Shah
Refer the below link
Thanks
dgarad