2005 Nov 09 8:08 AM
Hi,
Can we download data to unix along together with the header column?
thanks alots
Alia
2005 Nov 09 8:24 AM
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
2005 Nov 09 9:31 AM
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
2005 Nov 14 9:10 AM
Hi,
Pls don't forget to reward points and close the question if you find the answers useful.
Eddy