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,