process-mining
latest
false
- 发行说明
- 在开始之前
- 管理访问权限
- 入门指南
- 集成
- 使用流程应用程序
- 创建应用程序
- 正在加载数据
- Transforming data
- 自定义流程应用程序
- 发布流程应用程序
- 应用程序模板
- 通知
- 其他资源
为自动化潜力配置字段
重要 :
请注意,此内容已使用机器翻译进行了部分本地化。
新发布内容的本地化可能需要 1-2 周的时间才能完成。

Process Mining
上次更新日期 2025年4月17日
为自动化潜力配置字段
用于计算自动化潜力的
Event_cost
和Event_processing_time
不属于输入数据的一部分。 您可以在 “使用 SQL 语句的数据转换”中为事件日志配置这些字段。
以下代码块显示了用于定义
Event_cost
示例 SQL 查询。
case
when tableA."Activity" = 'ActivityA'
then {{ pm_utils.to_double(20.00) }}
when tableA."Activity" = 'ActivityB'
then {{ pm_utils.to_double(10.00) }}
when tableA."Activity" = 'ActivityC'
then {{ pm_utils.to_double(5.00) }}
when tableA."Activity" = 'ActivityD'
then {{ pm_utils.to_double(0) }}
end as "Event_cost"
case
when tableA."Activity" = 'ActivityA'
then {{ pm_utils.to_double(20.00) }}
when tableA."Activity" = 'ActivityB'
then {{ pm_utils.to_double(10.00) }}
when tableA."Activity" = 'ActivityC'
then {{ pm_utils.to_double(5.00) }}
when tableA."Activity" = 'ActivityD'
then {{ pm_utils.to_double(0) }}
end as "Event_cost"
Processing_time
示例 SQL 查询。 case
when tableA."Activity" = 'ActivityA'
then 5
when tableA."Activity" = 'ActivityB'
then 12
when tableA."Activity" = 'ActivityC'
then 30
when tableA."Activity" = 'ActivityD'
then 4
end as "Event_processing_time"
case
when tableA."Activity" = 'ActivityA'
then 5
when tableA."Activity" = 'ActivityB'
then 12
when tableA."Activity" = 'ActivityC'
then 30
when tableA."Activity" = 'ActivityD'
then 4
end as "Event_processing_time"
对于数据转换的
seeds\
文件夹中仍包含Automation_estimates_raw.csv
种子文件的流程应用程序,您可以使用此文件提供输入数据,以用于“自动化潜力”仪表板中的计算。 对于所有活动,您可以提供Event_processing_time
(以毫秒为单位)和Event_cost
。 下图显示了一个示例。
备注:
如果使用 Automation_estimates_raw.csv 种子文件提供了 event_processing_time ,但未填写所有活动的,则默认情况下,剩余活动的“手动处理时间” 为“NULL”。考虑使用平均吞吐量时间作为这些活动的event_Processing_time 。
备注:
如果您使用应用程序模板在其中提供
event_log
作为输入,则还可以将event_processing_time
指定为该文件中的列。 在事件级别指定的值将优先于使用种子文件为每个活动指定的值。