Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- REPORT ZPATMAX_show_dialog.
- types : BEGIN OF tables,
- name type c LENGTH 10,
- love TYPE c LENGTH 10,
- END OF tables.
- DATA : it_table TYPE tables.
- DATA : real_it TYPE TABLE OF tables.
- it_table-name = 'navapat'.
- it_table-love = 'cat'.
- APPEND it_table to real_it.
- it_table-name = 'nutcha'.
- it_table-love = 'love'.
- APPEND it_table to real_it.
- loop at real_it into it_table.
- write :/ it_table-name, / it_table-love.
- ENDLOOP.
Advertisement
Add Comment
Please, Sign In to add comment