如何获取已删除的流程实例(任务)列表。一种方法是获取方法getDeletedReason
的信息。但是,你有其他方法吗?
答案 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