【问题现象】
审批流设置报错:亲,很抱歉,当前页面报错了! 请重新登录或截图联系服务人员! 错误信息:InnerException: No InProcess Entity堆栈是: 在 WorkFlow_AuditingVoucherList.Page_Load(Object sender, EventArgs e) 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
【原因分析】
提示:“错误信息:InnerException: No InProcess Entity” 说明有异常数据,相同情况可以执行脚本进行修复。
【解决方案】
--备份好数据
––确认冗余数据范围
select * from eap_wfinprocess where EntityID not in(
select EntityID from eap_wftask
)
-- 删除冗余数据
delete from eap_wfinprocess where EntityID not in(
select EntityID from eap_wftask
)
作者:周义刚