憑證過賬時系統(tǒng)提示:名稱或代碼在系統(tǒng)中已經(jīng)被使用
問題描述:憑證過賬時系統(tǒng)提示:名稱或代碼在系統(tǒng)中已經(jīng)被使用
錯誤代碼:3604(E14H)
Source :Microsoft OLE DB Provider for SQL Server
Detail :在結(jié)果列的列表中多次出現(xiàn)列名 'F8'
原因:核算項目橫表t_itemdetail的核算項目類別數(shù)目和科目掛的核算項目數(shù)目不一致
解決方法:執(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
不同的賬套,可能會提示不同的列名,如F1等,請變通執(zhí)行
編輯人:牧良朔
時間:2013/08/28
瀏覽次數(shù):647
憑證過賬時系統(tǒng)提示:名稱或代碼在系統(tǒng)中已經(jīng)被使用