在总账删除固定资产折旧生成的凭证时报错
1人赞赏了该文章
2,180次浏览
编辑于2015年04月21日 15:12:40
在总账中删除固定资产系统折旧生成的凭证时提示错误。报错信息为:
存在提交未成功的凭证,具体信息如下:
记0077 MissingRecord:FaDepreciation id = '报错ID'
--报错ID会是一个FID值
解决方案:
步骤一:请在查询分析器按以下语句查询,看哪条语句查询出来有结果
select * from t_bot_relation where fsrcobjectid= '报错ID'
select * from t_bot_relation where fdestobjectid= '报错ID'
步骤二:备份数据
select * into t_bot_relation_bak1 from t_bot_relation where fsrcobjectid= '报错ID'
select * into t_bot_relation_bak2 from t_bot_relation where fdestobjectid= '报错ID'
步骤三:根据以上查询语句,相应执行对应以下语句,清除
delete from t_bot_relation where fid in (select fid from t_bot_relation_bak1)
delete from t_bot_relation where fid in (select fid from t_bot_relation_bak2)
步骤三:刷新凭证,前台操作删除即可,后重新计提折旧。