Need to update in Flow Designer the SCTASK Due date to be 30 days after current date?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2024 10:46 AM - edited 12-09-2024 08:23 PM
Need to update in Flow Designer the SCTASK Due date to be 30 days after current date?
Scenario: We would like to update the due date field in the SC Task form based on the ritm created or the SC task created. Please refer to the screenshot provided below; however, the due date field in the SC Task form has not been updated. I would appreciate your assistance with this matter.
Note: Update due date highlighted below screenshot .
Please find the below screenshot.
Thanks Ram
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2024 09:20 PM
Hi @Ramanjaneyuv ,
in flow designer, for create catalog task action update below
script
var due_on = new GlideDateTime();
due_on.addDaysUTC(30); //You can change number of days as per your task requirement
return due_on;
Please mark my answer helpful and accept as solution if it helped you.
Thanks,
BK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2024 11:13 PM
Thanks for the your response .
The due date field has not been updated despite my numerous attempts. Kindly refer to the screenshots provided below.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2024 04:47 AM
Hi @Ramanjaneyuv ,
i have used the simple flow like
where i used this
could you please provide overall flow screenshot
Thanks,
BK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2024 05:30 AM
What's going on in lines 1 - 7?