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: 

Download data to unix with header column

Former Member
0 Kudos

Hi,

Can we download data to unix along together with the header column?

thanks alots

Alia

3 REPLIES 3

eddy_declercq
Active Contributor
0 Kudos

Hi,

Have a look at this help

http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3d35358411d1829f0000e829fbfe/frameset.htm

I normally add the header line manually, by doing it hardcoded.

Another option is to do it via an ALV list:

http://help.sap.com/saphelp_nw04/helpdata/en/66/bc7bfd43c211d182b30000e829fbfe/frameset.htm

and

Eddy

Former Member
0 Kudos

Alia,

It is possible to download a file to a specific path in the UNIX.

There are major steps involved while transfer a contents present in an Internal Table to a File in Unix :

1. Open the File for write (OPEN DATASET file ...)

2. loop the internal table record to transfer every line of record in Internal Table to a File (TRANSFER waInTab to file)

3. Close the File after writing (CLOSE DATASET file)

Many Thanks

Kam

0 Kudos

Hi,

Pls don't forget to reward points and close the question if you find the answers useful.

Eddy