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

Download and Upload Table Data

Former Member
0 Likes
953

Hello,

I would like to download the content of ma specific table and to upload it to the same table in another R/3 system. How can i do this?

Thanks!

Hello,

I would like to download the content of ma specific table and to upload it to the same table in another R/3 system. How can i do this?

Thanks!

5 REPLIES 5
Read only

Former Member
0 Likes
721

Hi Lee,

I assume it to be a z table.

for downloading

1) Select data into an internal table.

2) Use GUI_DOWNLOAD fm to download to your PC.

3) In second system Use GUI_UPLOAD fm to upload the data

4) Use modify statement to upload data into the table.

modify ztab from table itab.

REgards,

ravi

Read only

Former Member
0 Likes
721

OR you can transport table entries from one system to other system.

OR you can compare/adjust customizing tables

OR you can call some functions from function group SR1T via RFC (like GET_TABLE_REMOTE)

Read only

Former Member
0 Likes
721

there is no standard transaction to do it?

Read only

0 Likes
721

Hi

No!

The easier solution is create a request with the data of that table:

- Create an empty request by SE09;

- Insert the hit R3TR/TABU/<TABLE NAME> as object of the request

- Release the request

- Copy the file (datafile and cofile) generated after releasing the request

- Past that file in the new system

- Import the request in DEV queque

Max

Read only

0 Likes
721

I can't make request because my 2 r/3 systems are not on the same version, so I have error when I copy an order to my first system to the second.