Hi all,
what is the difference between the declarions:I'm getting confussion while declaring please clear me:
1.types:itab like mara. To types: itab type mara.
2.types:itab like mara-matnr To types:itab type mara-matnr.
3.types:itab1 type table of mara. To types:itab1 like table of mara.
As we know that:
TYPE : it will allocate memory during execution (object type).
LIKE : it will allocate memory immediately
Type will improve performance.
Thanks,
srii..