cancel
Showing results for 
Search instead for 
Did you mean: 

Is it possible to transport table content in the same environment?

Former Member
0 Kudos

HI

I have to copy the entries of table IDXSLOAD between to R3 systems which are in the same environment.

What is the best possible way than manual copying?

Can a function module be used?

Regards

Anant Raman

Accepted Solutions (1)

Accepted Solutions (1)

Harish
Active Contributor
0 Kudos

Hi Anant,

If you want to copy the table entries between clients of same system then refer the below thread

RSCLCCOP - "Copy Object Lists Between Clients (SCC1 offline)"

RSCLXCOP - "Copy Client-Specific Tables from a Client"

regards,

Harish

Former Member
0 Kudos

I have to copy the table between two system(boxes) in the same environment( Testing).

Answers (1)

Answers (1)

iaki_vila
Active Contributor
0 Kudos

Hi Annat,

I didn't know the way mentioned by Harish and it seems to be a good way to do it.

Another way, may be worse, is to use the PI. I would do an asynchronous Proxy to Proxy scenario. In the sender side i would a simple ABAP program that takes N registers per message (i would calculate this number of registers thinking in 5 Mb to 10 Mb per message). One Select and one Loop to make Total number of registers/N +1 requests to the proxy.

Later, i would a job to call a report (inside the report the Proxy would be called) to work in hours with the less load in the ECC systems and/or PI system.

Regards.