‎2006 Jun 22 2:59 PM
Hi,
I would like to knwo what is the syntax to declare a table that has the same structure as the exisiting one?
Say for example:
Begin of it_tab,
Data (1000) type c,
End of it_tab.
Now I would like to declare IT_Tab2 with the structure of it_tab, how should I do that? Thanks!
‎2006 Jun 22 3:00 PM
hi,
data: it_tab2 type standard table of it_tab.
reward if helpful.
regards,
keerthi.
‎2006 Jun 22 3:00 PM
hi,
data: it_tab2 type standard table of it_tab.
reward if helpful.
regards,
keerthi.
‎2006 Jun 22 3:05 PM
HI Anyi,
DATA <itab> TYPE|LIKE <tabkind> OF <linetype> WITH <key>
[INITIAL SIZE <n>]
[WITH HEADER LINE].
Regards,
Laxmi.
‎2006 Jun 22 3:08 PM