工作流终止流程提示:终止失败,如何终止流程?原创
金蝶云社区-张氏永隆
张氏永隆
12人赞赏了该文章 151次浏览 未经作者许可,禁止转载编辑于2024年08月30日 10:51:54

如果前台操作终止提示无法终止,可以用以下语句去后台终止流程

 

--1.根据流程编码查询对应的流程实例id

select fprocinstid  from t_wfr_procinst where fcode = 'FYSQDSPLC_2491056';--a276b9df-cf9f-419f-bad7-c17d69f244a4WFPCINST

 

--2.将流程状态修改为终止

update t_wfr_procinst set fstate = 'closed.aborted' where fprocinstid = '流程实例id';

 

--3.将正在运行的活动实例设置为已终止

update t_wfr_actinst set fstate = 'closed.aborted' where fprocinstid = '流程实例id' and (fstate='open.running' or fstate='open.not_running.not_started')

 

--4.删除相关待办任务

delete  from t_wfr_assign where fprocinstid = '流程实例id'


图标赞 12
12人点赞
还没有人点赞,快来当第一个点赞的人吧!
图标打赏
0人打赏
还没有人打赏,快来当第一个打赏的人吧!