名称或代码在系统中已被使用"
金蝶云社区-jacck
jacck
5人赞赏了该文章 3,973次浏览 未经作者许可,禁止转载编辑于2019年04月08日 15:51:06

在使用KIS专业版进行凭证过帐时,提示"名称或代码在系统中已被使用"(错误代码:3604 E14H)
在使用KIS专业版进行凭证过帐时,提示"名称或代码在系统中已被使用"(错误代码:3604 E14H)如果提示F1备份账套后,执行以下SQL后,再过账:

update d set d.fdetailcount=v.fcount from t_ItemDetail d,
(select fdetailid,count(*) fcount from t_ItemDetailv where fitemid=-1 group by fdetailid ) v
where d.fdetailid=v.fdetailid如果提示F2select * from t_itemdetail
exec sp_cleanitemdetailv
GO
update a set a.fdetailcount=b.Fcount
from t_itemdetail a join (select Fdetailid,count(*) as Fcount from t_itemdetailv where fitemid=-1 group by Fdetailid) b
on a.fdetailid=b.fdetailid where a.fdetailcount<>b.Fcount