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 export the output table of FM into file?

Former Member
0 Kudos

Hello

FM exports a table with number of records > 1K.

Does anybody know how to export this table into file?

I dont see any export option on the screen

Thanks

1 ACCEPTED SOLUTION

former_member194669
Active Contributor

Open the table using debugging then press Ctrl+F11 system will ask you number of records to be exported and ask file to store

5 REPLIES 5

Former Member
0 Kudos

Hi

Open output table(lt_optput) and goto menu

system>List>Save->Local File->spread sheet

or

also in debugg mode you save the record

Former Member
0 Kudos

you can use GUI_DOWNLOAD to export contents into a file.

you can debug the FM and once the content are stored in table ,just right click on the table and you will get the option save to local file

Thanks

Bala Duvvuri

former_member182387
Active Participant
0 Kudos

Hi,

If you are executing using SE37, then there is a option for download, right cllcik the record and then select Save to PC file.This will save to your local file.

If you are executing inside the program, you can use the Fm "GUI_DOWNLOAD"

former_member194669
Active Contributor

Open the table using debugging then press Ctrl+F11 system will ask you number of records to be exported and ask file to store

0 Kudos

AR, really helpful. Thanks