Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ABAP 0.21 KB | None | 0 0
  1. DATA: gr_table type ref to cl_salv_table.
  2.  
  3.     CALL METHOD cl_salv_table=>factory
  4.         IMPORTING
  5.             R_SALV_TABLE = gr_table
  6.         CHANGING
  7.             t_table = itab. *internal table having data to display
  8.  
  9.     gr_table->display( ).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement