‎2008 May 26 10:44 AM
Hi Experts,
Diff between
Insert <d.table> from <int table>
and
Insert <d.table> from table <int table>????
Reply me immediately,
S.Suresh.
‎2008 May 26 10:47 AM
HI
Insert <d.table> from <int table>
means ITAB is with header line and you want to insert data of header line of ITAB to DB table
correct syntax is Insert <d.table> from <wa_itab>
and
Insert <d.table> from table <int table>
means you want to insert body of ITAB to DB table.
Regards
Aditya
‎2008 May 26 10:47 AM
HI
Insert <d.table> from <int table>
means ITAB is with header line and you want to insert data of header line of ITAB to DB table
correct syntax is Insert <d.table> from <wa_itab>
and
Insert <d.table> from table <int table>
means you want to insert body of ITAB to DB table.
Regards
Aditya
‎2008 May 26 10:58 AM
hi suresh,
the main difference is in first one it copies the structure of the table
in the second one it movies the fields of the other table
regards,
sindhu.