I'm trying to filter D365FO in a Flow by using the Get Records item.
Im using the Entity "Customers" and I'm trying to retrieve all records where OnHoldStatus is gretaher than 0.
In fact, this field is originally an Enum field in D365FO
I have tried following Filter Query expressions:
1.- Onholdstatus gt 0
2.- Onholdstatus eq 'All'
But no one of both works. When running flow I get an error of mismatch types of comparison items, with integer or stream.
How can I formulate the Filter Query Expression properly?
Thanks.