Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2025 02:09 AM
Hi,
What I did before assigning it as an input to a date-type catalog variable was the conversion.
How did I do this?
In set flow variables:
var gdt = new GlideDateTime(fd_data._3__for_each.item.*YOUR_VARIABLE*);
var dateString = gdt.getDate().getValue(); // only get "YYYY-MM-DD"
return dateString;
Regards.