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

Process Mining
上次更新日期 2025年9月18日
当两个事件在相同时间戳发生时,
Activity_order
字段将用作决定性因素。
以下代码显示了使用 SQL
CASE
语句配置Activity_order
的示例:case
when tableA."Activity" = 'ActivityA'
then 1
when tableA."Activity" = 'ActivityB'
then 2
when tableA."Activity" = 'ActivityC'
then 3
when tableA."Activity" = 'ActivityD'
then 4
end as "Activity_order"
case
when tableA."Activity" = 'ActivityA'
then 1
when tableA."Activity" = 'ActivityB'
then 2
when tableA."Activity" = 'ActivityC'
then 3
when tableA."Activity" = 'ActivityD'
then 4
end as "Activity_order"
您可以使用
activity_configuration.csv
文件定义Activity_order
,而不是使用 SQL CASE
语句。
下图显示了一个
activity_configuration.csv
文件的示例: