NAVAPAT_T

ABAP : at line-selection CHECK

Jul 24th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ABAP 0.25 KB | None | 0 0
  1. START-OF-SELECTION.
  2. write: 'this is start selection'.
  3. DATA num type i VALUE 10.
  4. write / num.
  5. at line-selection.
  6.   write: 'after selection'.
  7.   write : / 'this page is', sy-lsind.
  8.   do sy-lsind TIMES.
  9.     write: / 'repeat round', sy-index.
  10.     enddo.
Advertisement
Add Comment
Please, Sign In to add comment