Activiti BPM:如何获取已删除流程实例(任务)的列表

时间:2014-01-20 02:24:14

标签: task activiti bpm

如何获取已删除的流程实例(任务)列表。一种方法是获取方法getDeletedReason的信息。但是,你有其他方法吗?

1 个答案:

答案 0 :(得分:1)

此sql查询应该为您提供所有未完成的历史实例而不执行活动:

select h.proc_inst_id_ from act_hi_procinst h 
left join act_ru_execution x on x.proc_inst_id_ = h.proc_inst_id_ 
where h.end_act_id_ is null and x.proc_inst_id_ is null