Hi,
I need to create z table z** by copying table T042 with additional field in the beginning as checkbox.
Can anybody tell me how to do this.
Also how can replicate the same data as T042 table without coding.Is there a solution to this.
can it be doen using VIEW.
Regards,
Akash
Hi, what Mohammed has told is true but it only copies the table structure not the data also. To copy the data from the standard table(without any coding) use FM 'se16n_interface' . Execute the FM with table(standard) name and with edit = 'X'. Copy all the records and execute the same FM with the Ztable with edit='X'. Now paste the copied records and save it.
Otherwise write a report with the query: select * from <source table> into <target table>.
If you want to add extra field as check box then first build the desired structure of the table and then write query :select *from <source table> into corresponding fields of <target table>.
Add a comment