Skip to main content
How do I look at cycle time of mulitple events in my process. I want to know the cycle time of First Occurence of "Change" events 7 different events compared to the initial "Create" event. I can do this easily for each event but I want to look at all 7

Hi Bryan,

 

you can do it as described here: Calculation / duration between a start and a list of possible events? (celopeers.com)

 

You can use REMAP_VALUES to change all 7 related Change activities to one single value e.g.

 

 CALC_THROUGHPUT ( FIRST_OCCURRENCE E 'Create xxx' ] TO LAST_OCCURRENCE R 'CHANGES' ] , REMAP_TIMESTAMPS ("eventlog"."TIMESTAMP", HOURS), REMAP_VALUES ( "eventlog"."ACTIVITY_NAME" , u 'ChangeActivity1' , 'CHANGES' ] , 9 'ChangeActivity2' , 'CHANGES' ], 3 'ChangeActivity3' , 'CHANGES' ] ) )

 

BR

Dennis


Reply