Solved
Hello, I would like to know if its possible to get a count of all the flows that are in total in the whole Process explorer. (Including all reworks and cases flows). To show it in a Card.
Hello, I would like to know if its possible to get a count of all the flows that are in total in the whole Process explorer. (Including all reworks and cases flows). To show it in a Card.
Best answer by abhishek.chatu14
Hi Alejandro,
Here is an idea to get started with, use the VARIANT function to get different activities available in the process flow. VARIANT aggregates all activities of a case into a string.
You can take a distinct count of these variants
COUNT( DISTINCT (VARIANT ( "ACTIVITIESTABLE"."ACTIVITY") ))
You can also reduce any activity loop that may occur (which I understand is not your use case)
COUNT( DISTINCT SHORTENED (VARIANT ( "ACTIVITIESTABLE"."ACTIVITY"),1 ))
You can go through the following article for more information
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.