Hi all,
In a workflow javascript I am using “new date()” to find the current date and time:
var NowDK_ = new Date();
execution.setVariable("NowDK_ ", NowDK_ );
If returns something like
"2026-03-25T09:27:14.560+0000"
That is 1 hour behind the database server (sysdate) and application server.
How do I get the the “right” date(like sysdate) inside a workflow?
