- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2024 07:01 AM - edited 05-16-2024 07:04 AM
Hi All,
I need help to set the End date from today's current one via Flow Designer.
The end date should be 1 year from today. I am trying accomplish this via sub-flow because of multiple tables
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2024 07:15 AM
Hi @MR1 ,
You can use Flow Designer inline scripting to populate the date:
var gdt = new GlideDateTime();
gdt.addYears(1);
return gdt;
FYR : I just added in incident due date field :
Try this and let me know whether its helpful
Regards
Vengadesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2024 07:15 AM
Hi @MR1 ,
You can use Flow Designer inline scripting to populate the date:
var gdt = new GlideDateTime();
gdt.addYears(1);
return gdt;
FYR : I just added in incident due date field :
Try this and let me know whether its helpful
Regards
Vengadesh