新预览的模版错误
- 浏览:1231 - 发布时间:2008-04-22 11:32:00.0
问题版本: |
57-用友通标准版10.2 |
问题模块: |
18-库存管理 |
所属行业: |
0-通用 |
问题状态: |
1-UU通注册用户 |
关 键 字: |
模版错误 |
适用产品: |
57 |
补 丁 号: |
|
开放状态: |
0-UU通注册用户 |
原问题号: |
|
提交时间: |
2008-4-22 11:32:00 |
问题名称: |
新预览的模版错误 |
问题现象: |
库存模块的其他出库单新预览显示的模版是其他入库单的,请处理一下 |
原因分析: |
先在SQLSERVER中恢复一个10.3标准版账套,然后在SQLSERVER查询分析器中选择要更新的10.2账套,然后执行以下脚本: --删除原有模版 delete from reportdata where isprefab = 1 and caption = '其它出库单' and formid = '0302' --导入新模版 insert into reportdata (caption, Owner, data, formid, iscommon, isprefab) select caption, Owner, data, formid, iscommon, isprefab from ufdata_001_2008..reportdata where isprefab = 1 and caption = '其它出库单' and formid = '0302' |
解决方案: |
先在SQLSERVER中恢复一个10.3标准版账套,然后在SQLSERVER查询分析器中选择要更新的10.2账套,然后执行以下脚本: --删除原有模版 delete from reportdata where isprefab = 1 and caption = '其它出库单' and formid = '0302' --导入新模版 insert into reportdata (caption, Owner, data, formid, iscommon, isprefab) select caption, Owner, data, formid, iscommon, isprefab from ufdata_001_2008..reportdata where isprefab = 1 and caption = '其它出库单' and formid = '0302' | |