Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ALV Report

Former Member
0 Likes
354

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 .

1 REPLY 1
Read only

former_member192854
Active Participant
0 Likes
319

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