NAVAPAT_T

ABAP_internaltable

Jul 6th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ABAP 0.39 KB | None | 0 0
  1. REPORT ZPATMAX_internal_table.
  2. types : begin of name,
  3.   id(10) type n,
  4.   fname(10) type c,
  5.   end of name.
  6. data : data_name type name.
  7. *--------declare----------
  8. data : it_name  type table of name.
  9.  
  10. data_name-id = 123.
  11. data_name-fname = 'nutchai'.
  12. APPEND data_name to it_name.
  13.  
  14. data_name-id = 456.
  15. data_name-fname = 'navapat'.
  16. APPEND data_name to it_name.
  17.  
  18. write : / data_name no-zero.
Advertisement
Add Comment
Please, Sign In to add comment