Skip to Content
0
Former Member
Mar 23, 2009 at 08:47 AM

Can the use of "types" to increase performance or reduce memory used?

30 Views

Hi guys,

can the use of "types" for data type declaration instead of just using "type" and specifying the data type directly reduce the amount of memory used or even to increase performance in ABAP programs?

For example, assume the below code blocks:

  • using types

1) types: name50(50) type c.

data: name type name50.

*without using types

2) data: name(50) type c.

Wich standard should be followed.

Regards,