Is it possible to hide certain activities in the Process Explorer that are not relevant for X user?
I was trying the sheet filter FILTER PROCESS NOT EQUALS [Activity Name] but this excludes the cases, not only the activity.
Is it possible to hide certain activities in the Process Explorer that are not relevant for X user?
I was trying the sheet filter FILTER PROCESS NOT EQUALS [Activity Name] but this excludes the cases, not only the activity.
Hi Salma,
Maybe you could use the REMAP_VALUES function so you can replace in the activity table the activity name for NULL value o another one that helps you to hide the activity.
Let me know if is a viable solution
Best regards.
Hi Salma,
You should be able to use the custom dimension in the process explorer component. E.g. the below custom dimension will only show the activities Create Invoice and Close Invoice and not any of the other activities:
CASE WHEN "CEL_AR_ACTIVITIES"."ACTIVITY_EN" IN ('Create Invoice','Close Invoice')
THEN "CEL_AR_ACTIVITIES"."ACTIVITY_EN"
ELSE NULL
END
Best,
Marcel
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.