Im trying to create a pinned filter (/selection) in a dashboard on Celonis 4.5
According to the documentation (
https://help.celonis.de/display/CPM45/Filter+Editor
) this should work:
SELECT PINNED YEAR("EVENTLOG"."EVENTTIME") AS "YEAR" = 2010;
However, Celonis then reports that SELECTED is not supported anymore.
I therefore tried
FILTER PINNED YEAR(EVENTLOG.EVENTTIME) AS YEAR = 2010;
But this does not work.
How do I create pinned filters in Celonis 4.5?