how to retrieve from database only

0
Hi I have a microflow with a retrieve via database to see if an item already exists.   for some reason if the key information check fails, and I run it again. the duplicate check finds something in the database (I think it is getting something out of memory)   is there a way to force via Database?
asked
2 answers
2

To address this situation, you can use an XPath expression to ensure that the retrieved object is not the current object. This can be done by adding a condition to the XPath expression to check that the id attribute of the retrieved object is not equal to the id of the current object.

id != $currentobject

answered
1

guess isNew java seems to work.

 

image.png

answered