In "monitor" section there is a "go to customizable report" link. I tried to filter them based on the name. I tried (see below the print-screen):
-Name like "Daily"
-Name like "Daily%"
What exactly is the proper way? I need to filter all reports that start with "Daily". The above 2 didn't work. Any idea?
Thank you so much.
Discussion posts and replies are publicly visible
The "Name" field in the Process Report refers to the Process Instance Name. It will match any Process Instance containing the string you filter on. I'm unclear what you mean by "filter all reports" though - this is a report that looks at Process Instances.
Mike Schmitt - if I use the "=" operator your explanation makes sense. When I use "like" operator I should be able to use an expression similar to SQL I guess (?). I feel that I'm missing something here. By the way we are using date/time in the name of the instance so using "=" doesn't probably make sense (?).
Mike Schmitt if I use the "=" operator your explanation makes sense. When I use "like" operator I should be able to use an expression similar to SQL I guess (?). I feel that I'm missing something here. By the way we are using date/time in the name of the instance so using "=" doesn't probably make sense (?).
nicolaem159908 said:if I use the "=" operator your explanation makes sense. When I use "like" operator
The "like" operator here doesn't work like in SQL. AFAIK it simply indicates the filtering will return any results with a partial string match -- basically identical to the SQL version of '%Daily%'. You can choose "begins with' for 'Daily%'. In other words, the filters work more like the QueryFilters in appian expression queries (though i can't say they'll behave identically).
It works more like Query Filters - "like" by default does a simple find-in-string match, IIRC.