There are many ways:
No code and directly in the Process Analytics:
1 Once selecting your 20+ activities. Save it as a bookmark by clicking on "Save selection as bookmark". This way, your client can easily reload it
2 Group the activity under "Activity Grouping" and select it in the Process Explorer "Cases with"
There are many other alternatives by using PQL or creating a flag in the Event Collection, but the 2 above should be sufficient.
Hi Gabriel,
thank you for your suggestions.
Bookmarks
We use bookmarks already with lot's of filters. In our case this would still be very manual.
Grouping
We are looking at thoughput times in a seperate sheet. If I understand this correctly, then grouping activities in the Process Explorer will not filter the activites in another sheet right? Or am I wrong here?
PQL
I think I will try to add a variable in a drop down menu to filter by a certain group.
All the Best,
Saša
Hi @sasa.redze12
I guess your requirement can be achieved by using button dropdown component and writing a CASE WHEN PQL.
CASE WHEN "_CEL_O2C_ACTIVITIES"."ACTIVITY_EN" IN (Variable Name) THEN "_CEL_O2C_ACTIVITIES"."ACTIVITY_EN" ELSE NULL END
So here you need to create a variable where in you have to put set of all those 20+ activities which you want to see .
I believe this will solve your issue.
Happy Learning!