I have a workflow that retrieves a number of documents (certificates) from IDM with the purpose of emailing them to a customer. My input is populated from requests, sent in by a third party.
One input is “Quantity”. So a certificate is issued based on a certain quantity. Everything works fine as long as I use “equal to”. My input looks like this:
/Certificate01[@DocumentStatus = "Approved" AND @ItemNumber = "PN16" AND @HeatNumber = "001" AND @Quantity = "30"]
My challenge is being able to use “greater than or equal to”. If I use an input like below it fails.
/Certificate01[@DocumentStatus = "Approved" AND @ItemNumber = "PN16" AND @HeatNumber = "001" AND @Quantity >= "30"]
I’ve tried using different combinations of escape characters but I’m stuck. Could use a helping hand.
Catharine
20200205/CL: Thanks to the ones that acted on my posting. Inputs and being stubborn finally gave the result I was looking for. Removing the double quotes around the quantity did the trick. So simple and yet so complicated. But that is what life is about :-)