当前位置: 代码迷 >> PB >> 外部对象异常
  详细解决方案

外部对象异常

热度:36   发布时间:2016-04-29 08:06:49.0
外部对象错误
dec ld_suml
ld_suml=round(dw_9.object.sum_l[1],2)  
这样写有什么问题吗?
执行时候报外部对象错误,结束应用程序
sum_1 在dw_9里面绝对有的

------解决方案--------------------
ld_sum1 = round(dw_9.getitemnumber(1,"sum_1"),2)

如果还报错,可能就是没有 行的原因了
------解决方案--------------------
加个判断:

if dw_9.rowscount()> 0 then
ld_sum1 = round(dw_9.getitemnumber(1,"sum_1"),2)
end if
  相关解决方案