服务热线:022-26677809 , 13821206318
坚守“用户之友”的初心,做“专业的奋斗者”,始终坚持“持续创新”
首页 > 知识库 > 正文

升级后对账不平

- 浏览:1948 - 发布时间:2008-11-10 21:57:24.0
问题版本: 76-用友通标准版10.3 问题模块: 1-总账
所属行业: 0-通用 问题状态: 1-用友渠道员工帐户
关 键 字: 升级后对账不平 适用产品:
补 丁 号: 开放状态: 2-用友渠道员工帐户
原问题号: 提交时间: 2008-11-10 21:57:24
问题名称: 升级后对账不平
问题现象: 客户由7.21升级到通标准版10.3,升级过程无疑常。在9月时忽然发现1-3月的账执行对账时不平了,但原来是平的,否则结不了账的。如何处理?发现
原因分析: 经过查看账套原因是辅助总账(GL_accass)1-3月份部门(例如:编码为这些的部门000001、000002、000003、000004、000007)记录形成多条记录,造成对账时无法识别,提示对账错误。在数据库里删除多余记录即可。
解决方案: 解决方法:例如一月份对账不平,查看错误信息提示000001、000002、000003、000004部门总账和明细账对不上。 在数据库执行语句: select * from GL_accass where ccode='209010101'and cdept_id='000001' and iperiod='1' select * from GL_accass where ccode='209010101'and cdept_id='000002' and iperiod='1' select * from GL_accass where ccode='209010101'and cdept_id='000003' and iperiod='1' select * from GL_accass where ccode='209010101'and cdept_id='000004' and iperiod='1' 可以看出在1月份这四个部门在辅助总账分别形成了两条记录,正常情况下应该分别显示一条记录,删除多余的一条即可。执行下面语句: delete from GL_accass where ccode='209010101'and cdept_id='000001' and iperiod='1'and i_id='1123' delete from GL_accass where ccode='209010101'and cdept_id='000002' and iperiod='1'and i_id='1135' delete from GL_accass where ccode='209010101'and cdept_id='000003' and iperiod='1'and i_id='1147' delete from GL_accass where ccode='209010101'and cdept_id='000004' and iperiod='1'and i_id='1159' 同样的道理,解决2月份、3月份对账不平问题。其他月份正常。