Hi,
Is it possible to sort the list in ascending order by the smaller of field 1 and field 2? I tried the following query:
ORDER BY min(field1, field2) ASC
However, the below error was returned to the compiler console and system console.
Too many parameters in function min
time: 0.000000 exception: Exception caught in start() of activity "Pull from List" in process flow "ProcessFlow". Continuing throw... time: 0.000000 exception: Exception caught in Executive::processeventinlist().
Is it better to prepare the smaller of field1 and field2 as field3?
Thanks in advance.order by the smaller of field1 and field2.fsm