Job Schedule microflows

0
I’m building a Job Schedule microflow set up. I want to the Days enum, Hours enum and Minutes enum to set a datetime for Last run of the  Job microflow and Next run of the Job microflw. How do i get the OCH microflow for all three to give the two dates?
asked
1 answers
0

See the documentation here: https://docs.mendix.com/refguide/parse-and-format-date-function-calls

So for instance formatDateTimeUTC([%CurrentDateTime%], ‘ HH') would give you the hours, formatDateTimeUTC([%CurrentDateTime%], ‘ mm') the minutes and it depends on how you want your days but you could use something like formatDateTimeUTC([%CurrentDateTime%], ‘ dd').

You can now do all kinds of stuff to add or change these values and to parse them to dates again.

Hope I did not misinterpred your question.

Regards,

Ronald

 

answered