Please help with a better syntax to generate an issue when the status of a computer or mobile device is set to pending return.
You'll want to combine your conditions into one. Right now your conditions are sequential and will likely collide. Try a single IQL condition with this:
ObjectType IN(Computers, Mobile Devices) AND "Status" = "Is Pending Return"
Thanks @Mark Segall ! I keep getting this error. I have tried = "Is Pending Return", IS "Pending Return"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi James - You need an EQUALS in your query like I posted above for statuses. This worked for me. Also, be cautious with case sensitivity. IQL can be fickle with that.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Mark. This is sorted. Made a few adjustments and it is now working.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ahh - Your status was called "Pending Return". It was hard to tell if that "IS" was being inserted by the automation or what you actually called the status. Glad you sorted through all of that and got it working.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.