Hide的用法

TolyHuang發表於2007-11-26

執行以下程式碼即可看到效果:

[@more@]report Demo_001.
DATA: square TYPE i,
cube TYPE i.

start-of-selection.
format hotspot.
do 10 times.
square = sy-index ** 2.
cube = sy-index ** 3.
write : / sy-index.
hide: square, cube.
enddo.

at line-selection.
write: square, cube.

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9437124/viewspace-984947/,如需轉載,請註明出處,否則將追究法律責任。

相關文章