‎2006 Mar 22 2:10 AM
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..
‎2006 Mar 22 3:33 AM
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 "*" .
‎2006 Mar 22 2:15 AM
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
‎2006 Mar 22 2:31 AM
you can write a quick abap:
SELECT * FROM SCUSTOM CLIENT SPECIFIED INTO WA_SCUSTOM
WHERE MANDT = '003'.
insert scustom from wa_scustom.
ENDSELECT.
‎2006 Mar 22 3:33 AM
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 "*" .