Skip to main content

How do I calculate the Cycle time in OCPM, when my process starts in one object and ends in another?

I tried PU functions + bind but I didn't get good results. If anyone can help me I'd be grateful.

Hi Douglas,

 

I don’t know how to do it in the front-end, but can’t you create a new eventlog in the perspective that includes all events that are relevant for your cycle time. After running the transformations and datamodel, you should be able to calculate the cycle time based on the new eventlog that contains the activities.

 

BR


There are two options you can try 
 

  • DAYS_BETWEEN ( PU_MIN ( "Orders" , "Activities_"."Timestamp" ) , PU_MAX ( "Orders" , "Activities"."Timestamp" ) )
    replace the PU_MIN with starts in one object  and  PU_MAX ends in another object
     
  • CALC_THROUGHPUT ( object_table_name , begin_event_specifier TO end_event_specifier , time_unit )I am not sure if the same would work with two different object events though


 

 

 


Reply