Click HERE to see how Saviynt Intelligence is transforming the industry. |
04/12/2022 01:19 PM
I need to add a filter to my Workday reconciliation request so that it returns records where the Effective-From date is today - 1 day, and the Effective-To date is today + 7 days.
How can I add these dateTime to my json? What's expression can I use? Here's a sample dateTime with the correct format: 2007-12-03T10:15:30.
I don't expect something like this to work:
${LocalDateTime.now().minusDays(1).toString()}
because I didn't import LocalDateTime.
Solved! Go to Solution.
04/12/2022 02:59 PM
The following worked:
${java.time.LocalDateTime.now().minusDays(1)}