Dear All,
I have created another client in my R/3 system, i have copied customization from my existing client to new client, now i want to copy only Master data like vendor master, material Master, customer master, Bill of Material master to new client. How do i go abt it. Both the clients are in single R/3 system.
SAP Ver. 4.0B
Oracle
Winnt 4.0 Server
You can do it using R3TRANS & TP Commands thru OS level by copying relevant tables rows. There will be 2 control files in which you can mention
e.g.Export control file say expcontrol.ctl which can contain following commands
export client
client=`XYZ`
select * from tablename
Import control file say impcontrol.ctl which will contain following commands.
import
client=`XYZ`
select * from tablename
Then you should execute as follows from OS level prompt
r3trans expcontrol.ctl -> for exporting the relevant table entries from source cl
Then for import
r3trans impcontrol.ctl -> for importing the relevant table entries into target cl.
Hope it is in line with your need.
Tks...