How can we calculate the average throughput time per unit without errors?
ーー
AVG(
CALC_THROUGHPUT (
FIRST_OCCURRENCE C '伝票登録画面表示' ]
TO FIRST_OCCURRENCE < '伝票保存' ]
, REMAP_TIMESTAMPS ("t_Activity"."日時", MINUTES ) )
)
ーー
ーーErrormessageーー
The aggregation function AVG is applied on a column from table "t_Case" which has a 1:N relationship to the common table "t_Activity". This means that one input value can contribute to the aggregation result multiple times. For more information search for "Join functionality" in PQL documentation.
ーーErrormessageーー