‎2009 Feb 12 1:47 PM
HI,
Our requirment is to Import few Drill Down Reports from One server and Export the same to another Server. We are unaware of the approach. Can anybody help us in this regard.
Regards
Babu.
‎2009 Feb 12 1:50 PM
Hi,
Use Open data set command.
Populate internal table :
Use:
Open dataset <fielname> for input in binary mode/Text mode.
Loop at Itab.
Transfer ITab to <FILE>.
Endloop.
Closedata set.
A file will be downloaded to application server.(locate the file in AL11)
Copy the download file to Other server.
Target server:
Open dataset <fielname> for output in binary mode/Text mode.
Loop at Itab.
Write ITab to <FILE>.
Endloop.
Closedata set.
Regards,
Gurpreet