Applies to: CELONIS 4.0 CELONIS 4.2 CELONIS 4.3 CELONIS 4.4
Description
Throughput is used to calculate, for each case, the time between two activities. From which activity the calculated throughput time should start and at which it should end can be configured through range specifiers.
Пропускная способность используется для расчета для каждого случая времени между двумя действиями. С какого действия должно начинаться рассчитанное время пропускной способности и на каком оно должно заканчиваться, можно задать спецификаторы диапазона.
Syntax
CALC_THROUGHPUT ( begin_range_specifier TO end_range_specifier, timestamps ) |
begin_range_specifier: FIRST_OCCURRENCE['activity'] | LAST_OCCURRENCE['activity'] | CASE_START | ALL_OCCURENCE['']
Время пропускной способности начинается с первого появления указанного типа действия.
Время пропускной способности начинается с последнего появления указанного типа действия.
Время пропускной способности начинается с первого действия дела.
Имеет то же значение, что и CASE_START. Строковый параметр игнорируется, но должен быть указан.
end_range_specifier: FIRST_OCCURRENCE['activity'] | LAST_OCCURENCE['activity'] | CASE_END | ALL_OCCURENCE['']
FIRST_OCCURRENCE['activity']: Throughput time ends at the first occurrence of the specified activity type.
LAST_OCCURRENCE['activity']: Throughput time ends at the last occurrence of the specified activity type.
CASE_END: Throughput time ends at the last activity of the case.
ALL_OCCURENCE['']: Has here the same meaning as CASE_END. The string parameter is ignored, but has to be specified.
timestamps: Integer column, often REMAP_TIMESTAMPS is used to convert a TIMESTAMP column.
Целочисленный столбец, часто REMAP_TIMESTAMPS, используется для преобразования столбца TIMESTAMP.
If start and end activity is conflicting, meaning the end activity is before the start activity the throughput calculation returns null for the conflicting case. Null is also returned if a case has only one activity.
Если начальное и конечное действие конфликтуют, то есть конечное действие предшествует начальному действию, при вычислении пропускной способности для конфликтующего случая возвращается ноль. Нуль также возвращается, если у дела есть только одно действие.
Examples