Application Development 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: 

How to download multiple ALV Container data on a screen to a single Excel?

Former Member
0 Kudos

Hi,

I have an output screen wherein there is plain text and 3 ALV list containers with different types of data and I need to provide a functionality to the user to be able to download all this data on the output screen to a single excel sheet.Is there some standard function module or any specific way of achieving this? Please help with this.

Regards,

Aditi

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

create a pushbutton on the toolbar,

whenever user clicks the pushbutton,

call the fm gui_download for three times

for the first time,

append = ' ',

and for second time and third time.

append = 'X'.

Regards.

3 REPLIES 3

Former Member
0 Kudos

Hi,

Sap has not provided any stanadrad FM for this. You need to write the Custom code for this functionality.

Former Member
0 Kudos

Hi,

create a pushbutton on the toolbar,

whenever user clicks the pushbutton,

call the fm gui_download for three times

for the first time,

append = ' ',

and for second time and third time.

append = 'X'.

Regards.

0 Kudos

Thanks a lot..that really helped