Application Development and Automation 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: 
Read only

Export & Import Drill Down Report

Former Member
0 Likes
527

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.

1 REPLY 1
Read only

Former Member
0 Likes
372

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