‎2007 Dec 26 5:37 PM
Dear All,
techinicallly is there any difference between.
data : it_mara type standard table of mara.
t_mara type mara occurs 0.
Which is better way to define. I know both are internal tables without header.
onemore thing, header that it is obsolete to use "occurs 0", is this right.
Please let me know.
Regards
madhu
‎2007 Dec 26 6:18 PM
Yes, occurs 0 is obsolute now.
It is better to use type standard table of.
‎2007 Dec 26 5:41 PM
its better not to use occurs 0... ABAP going into OO it has become obsolute...
type standard table of is a good practice.
‎2007 Dec 26 6:18 PM
Yes, occurs 0 is obsolute now.
It is better to use type standard table of.
‎2007 Dec 26 6:58 PM
Hi,
Yes...you should use only table declarations without the occurs clause. This improves performance a lot. And this kind of declarations has become mandatory with the ECC6.0 release.
Try practicing to declare without the occurs clause.
Thanks,
Subramanian