金蝶KIS旗舰版MRP计算提示下标越界?解决方案
[全站通告] 想快速节省您的时间并可接受付费的朋友,可扫右边二维码加博主微信-非诚勿扰!
问题描述:
旗舰版MRP计算提示下标越界。如下图所示:
原因分析:
一般是由于调整过工厂日历,导致工厂日历表中存在异常数据导致。
解决方案:
可参考以下脚本执行处理:
select * into t_MutiWorkCal_bak from t_MutiWorkCal select identity(int,1,1) finterid,fday,fdayid,fweekid,fmonthid,fyearid,fcalid into #temp1 from t_MutiWorkCal where fcalid=999 and FInterID>0 order by fday update a set finterid=b.finterid from t_MutiWorkCal a inner join #temp1 b on a.fday=b.fday and a.fdayid=b.fdayid where a.fcalid=999 and a.FInterID>0 drop table #temp1
注意:
正式账套执行脚本前请先做好备份,建议待在测试账套中核实无误后再在正式账套中执行。