新建Acquisition contract出错的问题

85 阅读1分钟
# Created by Jerry Wang, last modified on Oct 08, 2014新建Acquisition contract时报错: clipboard1  错误原因在于delete internal table的时候,指定的index 为0 clipboard2  如下图line 11所示: clipboard3  internal table里不存在ID为expand_all的button记录。 clipboard4  expand_all对应的button如果满足line 303的判定条件,则会在internal table里生成对应的expand button记录。 clipboard5  作为workaround,可以在debugger里跳过line 10~16 直接执行line 18: clipboard6  由于跳过了line 10~16, 最后UI上将不存在"expand all" button。 clipboard7  正常的Expand All button如下: clipboard8