Microflow - Failed to Evaluate Expression

0
Hi – I’m already pulling in nonempty values in my lists below, but I still get a runtime error below on my microflow. Do I need a breakpoint even though my “Retrieve” is already limiting to non-empty values?    Failed to evaluate expression, error occurred on line 1, character 42 $IteratorArchive_upd/ACTIVITY_DATE > addDays($IteratorDueDtSchedule_2/DueDt_Installment, 5)
asked
2 answers
1

Are you really sure that the $iteratorDueDtSchedule_2/DueDt_Installment field is not empty? You should not only check that the object is there but also that the specific field is not empty.

Regards,

Ronald

 

 

answered
0

When I specify != empty in the XPath constraint retrieving the list such as below, is that filtering for non-blanks on the field or object? Regardless, once I moved the addDays result to variable, the error went away. Thanks Ronald!

[DueDt_Installment != empty]

answered