2014 Feb 03 7:29 PM
Good Day All,
How can I create ALV report IN my program
I created program with function group & i have many screens ( one of them has button to show ALV report at popup screen )
any idea or resources .
Good Day All,
How can I create ALV report IN my program
I created program with function group & i have many screens ( one of them has button to show ALV report at popup screen )
any idea or resources .
2014 Feb 03 7:37 PM
Hi Zakyiah,
you can create any kind of (standard changeable) table after you've cought your sy-ucomm. And put it in the cl_salv_table=>factory method. From there you fetch an instance of the cl_salv_table and you can perform the
<yoursalvtableinstance>->set_screen_popup(
start_column = 1
end_column = 100
start_line = 1
end_line = 20 ).
And then execute the <yoursalvtabelinstance>->display( ) method.
Best,
Sander