04-17-2008 1:06 PM
Hi Guys,
Can you please tell me how to download Internal table to UNIX?
Thanks.
Amit.
04-17-2008 1:09 PM
OPEN dataset lv_filename_and_path for output in text mode.
loop at itab into wa.
transfer wa to dataset.
endloop.
close dataset.
04-17-2008 1:08 PM
You need to use the ABAP statements "OPEN DATASET", "TRANSFER" and "CLOSE DATASET".
matt
04-17-2008 1:08 PM
Hi,
Check below function modules
TABLE_EXPORT_TO_UNIX
TABLE_EXPORT_TO_UNIX_RFC
Regards,
Satish
04-17-2008 1:09 PM
OPEN dataset lv_filename_and_path for output in text mode.
loop at itab into wa.
transfer wa to dataset.
endloop.
close dataset.
04-17-2008 1:14 PM
04-17-2008 1:22 PM
If your application server is Unix then you can do that using Open Data set , Transfer to pass the information to Unix file.
Open Data set, Transfer , Close Dataset required. Check the help on these.
04-17-2008 4:35 PM
First i create a directory from AL11 following the way cofigure then direc. name /saplocal/sapedi/out/ then alieas name dir_test and *save not ADD*. then i called open dataset /saplocal/sapedi/out/payroll.txt and file successfully created on UNIX.