‎2010 Aug 03 10:24 AM
Hi,
I want copy all data of one table to its copy table. Anyone knows transaction code to copy data from one table to another table.
Regards,
Jigar Thakkar.
‎2010 Aug 03 10:32 AM
Hi,
You can not copy data from one table to another table
but you can copy schema of a table to another table in se11.
If you want you can write a addon prog to do this..
Thanks.
‎2010 Aug 03 10:28 AM
Are your source and target tables in the same client or different ones?
‎2010 Aug 03 10:38 AM
‎2010 Aug 03 10:49 AM
Have'nt you read the comment of Kerem, have you?
there'll be no standard tcode..you 've to create your own program..
A.
‎2010 Aug 03 10:51 AM
‎2010 Aug 03 10:30 AM
‎2010 Aug 03 10:32 AM
Hi,
You can not copy data from one table to another table
but you can copy schema of a table to another table in se11.
If you want you can write a addon prog to do this..
Thanks.
‎2010 Aug 03 10:38 AM
You can develop a little program to do that. It shouldn't take much effort.
‎2010 Aug 03 10:38 AM
Hi Jigar,
If your tables belongs to the same system then you can copy data faster with TMG (Table Maintenance View)...here you can copy and save multiple lines at one go
If your original and copy table belongs to different system then check this community project [SAPLINK|http://code.google.com/p/saplink/]....here one Plugin is available for transferring Table contents
‎2010 Aug 03 11:25 AM
Hi
Create a small program.
Extract data from T1 - database table and put it in one internal table - itab1.
loop the itab1 data .............
insert itab1 into tab2. (tab2 - second database table)
endloop.
try this....
hope it works....