- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2023 01:12 PM
Hi all,
I've setup a New Starter Onboarding Catalog Item and are using Flow Designer to send out a customised email to teams who are responsible for onboarding new starters.
One issue I ran into though is the format of the email to advise of their start date. It is sending it out in yyyy-mm-dd format, however I would like to change it to dd-mm-yyyy. Actually if there are any other options to display that date that would be handy.
I've checked the system properties and the instance is setup for dd-mm-yyyy.
Any advice ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2023 11:10 AM
To change the date format in flow, we can use transform function(fx).
PFB snap for reference.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2023 11:10 AM
To change the date format in flow, we can use transform function(fx).
PFB snap for reference.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2023 01:42 PM - edited 08-06-2023 01:43 PM
did you try setting date mail script ?
var dt = gdt.getDate().getByFormat("dd/MM/yyyy"); template.print(dt);