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: 

want to download my data from internal table to my desktop

Former Member
0 Kudos

Hi ,

I want to download my data from internal table to my desktop.How can I achieve this.

Regards.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

search in SDN and you will get solution.

Regards, Dieter

4 REPLIES 4

Former Member
0 Kudos

Hi,

search in SDN and you will get solution.

Regards, Dieter

former_member226234
Contributor
0 Kudos

In debugging, when you see the records in the internal table, you will also see a button for excel download on top of your debugging screen. You can download it on your desktop.

Former Member
0 Kudos

Hi Ranu,

Please search the forum before you post a question.

CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
 FILENAME = 'C:test.xls'   ""Any Drive
 FILETYPE = 'ASC'
 WRITE_FIELD_SEPARATOR = 'X'
TABLES
 DATA_TAB = itab.

Former Member
0 Kudos

try WS_DOWNLOAD