遍历ABAP结构的各个字段
2008 10 8 11:46 AM 3564次查看
感觉是类似指针或是引用的东西吧,而且因为语法检查很松,有时候比C/C++的指针/引用更强大。
这里演示一个把结构中所有为空的字段,填为'none'的form。
form fill_none using size type i
changing wa type any.
field-symbols: <comp> type any.
do size times.
assign component sy-index of structure wa to <comp>.
if <comp> = ' '.
<comp> = 'none'.
endif.
enddo.
endform. "fill_none
0条评论 你不来一发么↓