金蝶KIS专业版,凭证过账时系统提示:名称或代码在系统中已经被使用 错误代码:3604(E14H) Sourc

金蝶KIS专业版,凭证过账时系统提示:名称或代码在系统中已经被使用 错误代码:3604(E14H) Source :Microsoft OLE DB Provider for SQL Server Detail :在结果列的列表中多次出现列名 'F3000' 这个问题要怎么

这是数据库问题,看你有没有安装独立数据库,安装了独立数据的就在查询分析器里执行以下代码,没有安装需要把以下的代码复制到文本文档,然后重命名为后缀名 .SQL 的文件,然后打开账套管理--操作---执行代码 ,文件--打开文件 打开刚才那个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
go

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
温馨提示:答案为网友推荐,仅供参考
第1个回答  2017-06-18
一你可以在名称后面点击倒三角符号选择自己需要的字段;
二打开金蝶kis专业版核算项目界面,自能定义设置选项;
F7 是金蝶软件中的万能键,建议你在使用软件记账做账之前,按F1键调出使用帮助文档,熟悉操作过程以及常见问题解决方案后再开始。
第2个回答  2013-10-09
数据库问题,执行代码
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
第3个回答  2018-09-09
方法1.如果有独立数据库,压缩数据库
方法2.修正核算项目关系
select * 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
方法3.把凭证部分分开过账,找到无法过账的凭证共同点,新增代码或核算项目,把凭证修改到新的再尝试
相似回答