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

存货问题,现存量不对

- 浏览:1072 - 发布时间:2005-11-17 14:15:00.0
问题版本: 4-财务通标准版821 问题模块: 16-存货核算
所属行业: 0-通用 问题状态: 1-用友渠道公司帐户
关 键 字: 存货问题 适用产品: 4
补 丁 号: 开放状态: 3-用友渠道公司帐户
原问题号: 提交时间: 2005-11-17 14:15:00
问题名称: 存货问题,现存量不对
问题现象: 财务通8.21标准版,在存货核算中,个别存货的现存量和他的帐表数量居然不一样,我查过该存货的出入库单据,一切都是正常操作。查询收发存汇总表的时候显示这个货物还有100,可在单据中查询现存量只有30了。。。这是什么原因造成的?
原因分析: 您是否使用了非自然会计期间。如果是的话,有可能造成查询现存量不准。有相关的工具。这个工具不能完全解决现存量不对的问题。如果这种情况在此出现,可以再次运行
解决方案: 您是否使用了非自然会计期间。如果是的话,有可能造成查询现存量不准。有相关的工具可以解决这个问题。或者执行以下语句。这个语句不能完全解决现存量不对的问题。如果这种情况在此出现,可以再次运行 if exists (select * from tempdb..sysobjects where type='u' and name='forcurrentsyz') drop table tempdb..forcurrentsyz go select a.cwhcode,a.cinvcode,sum(iquantity) as iquantity, sum(a.iquantity/Inventory.iInvExchRate) as inum into tempdb..forcurrentsyz from ( select cwhcode,cinvcode,iaInquantity as iquantity from ia_subsidiary where cvoutype='34' union all select cwhcode,cinvcode,( case when brdflag=1 then iquantity else -1*(iquantity) end) as iquantity from rdrecord left join rdrecords on rdrecord.id=rdrecords.id ) a left join Inventory on a.cinvcode=Inventory.cinvcode group by a.cwhcode,a.cinvcode go delete from currentstock go insert into currentstock (cwhcode,cinvcode,iquantity,inum) select cwhcode,cinvcode,iquantity,inum from tempdb..forcurrentsyz go if exists (select * from tempdb..sysobjects where type='u' and name='forcurrentsyz') drop table tempdb..forcurrentsyz go