I'm trying to filter my task report according to either the process, name or created by field. But it's not returning any processes with these exact names.
Can I filter the fields like this, for example, the process name is JT Create Incident, but can I reference only Create Incident? And with the name it changes everytime from Approve Incident to Attend To Incident. Can I just reference "Approve" or "Attend To" or should it contain the entire name / process name?
Discussion posts and replies are publicly visible
I suggest to filter process models by their UUIDs. These can be found in process model properties.
Thank you. But why can't I filter according to two UUID's?
Because the one is "Attend To" starting with 0003 and the other is "Approve" beginning with 0002.
Because I'd like both of these to display. The first being the Attend To :
The second being the Approve :
But I can't seem to display both of them in my task report. It only allows one.
I typically do the process model filter later when querying the data using a!queryProcessAnalytics. I add a queryFilter with an "in" operator to filter for that list of UUIDs I store in a constant.
Thank you.