物料清单资料维护按上张或下张都会出现错误提示:“Object reference not set to an instance of an object
- 浏览:1114 - 发布时间:2008-01-08 00:00:00.0
问题版本: |
806-U8.61 |
问题模块: |
812-物料清单 |
所属行业: |
0-通用 |
问题状态: |
2-UU通注册用户 |
关 键 字: |
物料清单资料维护 |
适用产品: |
U861--生产制造--物料清单 |
补 丁 号: |
|
开放状态: |
0-UU通注册用户 |
原问题号: |
|
提交时间: |
2008-1-8 |
问题名称: |
物料清单资料维护按上张或下张都会出现错误提示:“Object reference not set to an instance of an object |
问题现象: |
打开物料清单资料维护,定位到J2241021202C母件编码的物料清单后,按上张或下张都会出现错误提示:“Object reference not set to an instance of an object”,打了?新的hotfix和dbhotfix后问题依旧。 |
原因分析: |
此问题就是由于在bom_parent表中存在的物料对应到bas_part中的存货在inventory表中不存在了。 |
解决方案: |
此处有几个脚本: 1、select * from bas_part where invcode not in (select cinvcode from inventory) 查询在bas_part表中存在,但在inventory表中不存在的纪录。 2、select * from bom_parent where parentid in (select partid from bas_part where invcode not in (select cinvcode from inventory)) 查 | |