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

Copy data over different client...

kowong
Participant
0 Likes
3,392

hi all...

is there any way to copy data from one client to another ?

what i want to do is copy hundreds of materials' data

thank you..

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,555

Hi Kokwei,

You can use these programs to copy data between clients.

RSCLCCOP - Copy Object Lists Between Clients (SCC1 offline)

RSCLXCOP - Copy Client-Specific Tables from a Client

To transport the entries of a table ( not the table definition ) goto tcode SE01.

Click on create button, select transport of copies .

Give a description and target system . This will create a transport request for you . Now display this transport in SE01 . Click on Object list . Here add new entries. In the table control form you have the option to enter R3TR TABU <YOUR_TABLENAME>. Then there will be a key button on this new added row. Click on that and put "*" .

See http://www.sap-basis-abap.com/sapbs046.htm

3 REPLIES 3
Read only

suresh_datti
Active Contributor
0 Likes
2,555

Hi,

If they are tied to a Transport Request, you can use the Transaction SCC1 to copy the data to a different Client. Another option could be to explore the possibility of distribution by ALE.

Regards,

Suresh Datti

Read only

former_member186741
Active Contributor
0 Likes
2,555

you can write a quick abap:

SELECT * FROM SCUSTOM CLIENT SPECIFIED INTO WA_SCUSTOM

WHERE MANDT = '003'.

insert scustom from wa_scustom.

ENDSELECT.

Read only

Former Member
0 Likes
2,556

Hi Kokwei,

You can use these programs to copy data between clients.

RSCLCCOP - Copy Object Lists Between Clients (SCC1 offline)

RSCLXCOP - Copy Client-Specific Tables from a Client

To transport the entries of a table ( not the table definition ) goto tcode SE01.

Click on create button, select transport of copies .

Give a description and target system . This will create a transport request for you . Now display this transport in SE01 . Click on Object list . Here add new entries. In the table control form you have the option to enter R3TR TABU <YOUR_TABLENAME>. Then there will be a key button on this new added row. Click on that and put "*" .

See http://www.sap-basis-abap.com/sapbs046.htm