NAVAPAT_T

ABAP_internaltable_TYPES

Jul 11th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ABAP 0.45 KB | None | 0 0
  1. REPORT ZPATMAX_show_dialog.
  2. types : BEGIN OF tables,
  3.   name type c LENGTH 10,
  4.   love TYPE c LENGTH 10,
  5.   END OF tables.
  6.  
  7. DATA : it_table TYPE  tables.
  8. DATA : real_it TYPE TABLE OF tables.
  9.  
  10. it_table-name = 'navapat'.
  11. it_table-love = 'cat'.
  12. APPEND it_table to real_it.
  13.  
  14. it_table-name = 'nutcha'.
  15. it_table-love = 'love'.
  16.  
  17. APPEND it_table to real_it.
  18.  
  19. loop at real_it into it_table.
  20.   write :/ it_table-name, / it_table-love.
  21.   ENDLOOP.
Advertisement
Add Comment
Please, Sign In to add comment