解决方案: |
1、05年调拨单自动带出单价设置为“最新成本”,对于存货档案中没有最新成本的存货将带不出成本。 2、06年期初数据的日期必须是小于2006-01-01的日期。 3、找不到入库单是由于accinformation表中保存的库存启用日期有误,请用以下语句修改: use ufdata_607_2006 go update accinformation set cvalue='2006-01-01' where csysid='st' and cname='dststartdate' update accinformation set cvalue='2006-01-01' where csysid='ia' and cname='diastartdate' update accinformation set cvalue='2006-01-01' where csysid='sa' and (cname='dstartdate' or cname='dsalestartdate') update accinformation set cvalue='2006-01-01' where csysid='pu' and (cname='dpustartdate' or cname='dpustartdate') 4、第四个问题是由于仓库表被锁定了,执行一下语句解锁: kill 69 |