Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- REPORT ZPATMAX_internal_table.
- types : begin of name,
- id(10) type n,
- fname(10) type c,
- end of name.
- data : data_name type name.
- *--------declare----------
- data : it_name type table of name.
- data_name-id = 123.
- data_name-fname = 'nutchai'.
- APPEND data_name to it_name.
- data_name-id = 456.
- data_name-fname = 'navapat'.
- APPEND data_name to it_name.
- write : / data_name no-zero.
Advertisement
Add Comment
Please, Sign In to add comment