Populate current date value in Flow action Input vallue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2024 03:36 AM
@Ankur Bawiskar @Community Alums @Sohail Khilji
verify the screenshot & help how to autopopulate current date value
Populate current date value in Flow action Input vallue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2024 03:40 AM - edited 05-16-2024 03:42 AM
Hi @ARAVINDA11 ,
Step1 : click on the script icon which is highilited,
Step2: enter this 2 line of script
If you need date and time then use the above close else if you need only date then use
var now = new GlideDate();
return now.getDisplayValue():
☑️ Please mark responses as HELPFUL or ACCEPT SOLUTION to assist future users in finding the right solution....

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2024 03:50 AM
Hi @ARAVINDA11 ,
You can use in scripting part of flow designer and use GlideDateTime Api it will work there.
for example
var dt = new GlideDateTime();//Gives current date
Please mark my answer correct and helpful if this works for you
Thanks and Regards
Sarthak