Syntax to make expression work: $NewPO_Head/Due>(dateTime)

1
Hi all, In a microflow, I have an exclusive split. Here I use an expression to test, if the due date of a new Purchase Order is smaller then today. The expression is as follows: $NewPO_Head/DueDate>(dateTime) However, I do get an error message stating: missing '(' at ')' Any suggestions? :-)
asked
1 answers
0

Instead of (dateTime) there, you'll want one of the date tokens that are available such as:

[%CurrentDateTime%]

or

[%BeginOfCurrentDay%]

The full list is available here.

answered