I need to create same table similar to a one in another client with all the data.Is there some easy method of transfering data from one table to another between 2 clients?
Hi bharat
In target client write a program with the following statement.
select * from <dbtablename> CLIENT SPECIFIED into table itab1 where mandt = '<Source client>'
for ex
if src client is 001
and target client is 002
then in 002 write
select * from <dbtablename> CLIENT SPECIFIED into table itab1 where mandt = '001'.
use CLIENT SPECIFIED along with your update/modify/insert statements to be able to update target client table from source client.
Please check that both of the clients should be in smae applicn server
Regards
Naresh
Tables are client independent, so the table itself should already exists in the other clients, you simply need to copy the data from the one client to the others. You can do this with a simple ABAP program.
Regards,
Rich Heilman
Add a comment