金蝶KIS專業(yè)版進(jìn)行憑證過帳或結(jié)賬時(shí),提示"名稱或代碼在系統(tǒng)中已被使用"(錯(cuò)誤代碼:3604 E14H)的解決辦法
[重要通告]如您遇疑難雜癥,本站支持知識(shí)付費(fèi)業(yè)務(wù),掃右邊二維碼加博主微信,可節(jié)省您寶貴時(shí)間哦!
這幾天有網(wǎng)絡(luò)朋友找到我說,他家的金蝶KIS專業(yè)版出了點(diǎn)問題,但是發(fā)現(xiàn)這個(gè)錯(cuò)誤吧,還不是一種,但錯(cuò)誤代碼基本一致"名稱或代碼在系統(tǒng)中已被使用"(錯(cuò)誤代碼3604 E14H)如下面幾張圖所示
名稱或代碼在系統(tǒng)中已經(jīng)被使用
錯(cuò)誤代碼:3604(E14H)
Source :Microsoft OLE DB Provider for SQL Server
Detail :在結(jié)果列的列表中多次出現(xiàn)列名 'F8'
其實(shí)出現(xiàn)這個(gè)錯(cuò)誤,沒有說固定哪里錯(cuò)誤,出現(xiàn)的問題也都在結(jié)賬或者年結(jié)上,所以處理的問題也多籠統(tǒng);
萬事第一步,備份數(shù)據(jù)庫,執(zhí)行語句校正即可
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
不同的賬套,可能會(huì)提示不同的列名,如F1等,請(qǐng)變通執(zhí)行
錯(cuò)誤原因:核算項(xiàng)目橫表t_itemdetail的核算項(xiàng)目類別數(shù)目和科目掛的核算項(xiàng)目數(shù)目不一致
執(zhí)行這個(gè)語句就可以了
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
在使用KIS專業(yè)版進(jìn)行憑證過帳時(shí),提示"名稱或代碼在系統(tǒng)中已被使用"(錯(cuò)誤代碼:3604 E14H)如果提示F1備份賬套后,執(zhí)行以下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
如果提示F2
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
其他延伸可能出現(xiàn)的問題,可參閱!
第一種方式:
1、賬套實(shí)體文件所在磁盤是不是NTFS格式。 2、數(shù)據(jù)庫版本是不是MSDE版本。 3、dbcc checkdb檢查數(shù)據(jù)庫是否異常。
第二種方式:
1.萬事第一步,備份數(shù)據(jù)庫。
2.有沒有安裝數(shù)據(jù)庫,有的話,打開數(shù)據(jù)庫,找到賬套對(duì)應(yīng)數(shù)據(jù)庫,新建查詢,復(fù)制,數(shù)據(jù)庫執(zhí)行語句
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.如果,你安裝的是金蝶自帶的數(shù)據(jù)庫,新建一個(gè)txt文檔將以上SQL語句復(fù)制到文檔里,然后改為*.sql 的文件,就是將.txt改成.sql,然后通過賬套管理執(zhí)行,操作路徑:賬套管理->選中問題賬套->操作菜單,執(zhí)行命令->選擇*.sql 文件->執(zhí)行即可
問題未解決?付費(fèi)解決問題加Q或微信 2589053300 (即Q號(hào)又微信號(hào))右上方掃一掃可加博主微信
所寫所說,是心之所感,思之所悟,行之所得;文當(dāng)無敷衍,落筆求簡(jiǎn)潔。 以所舍,求所獲;有所依,方所成!