The following code is not changed at all by ABAP cleaner
TYPES:
BEGIN OF ENUM cost_distribution BASE TYPE vrtkz,
not_distributed VALUE IS INITIAL,
by_quantity VALUE '1',
by_percentage VALUE '2',
by_amount VALUE '3',
END OF ENUM cost_distribution.
It would make sense that ABAP Cleaner aligns the VALUE parts of ENUMs, for instance as shown below
TYPES:
BEGIN OF ENUM cost_distribution BASE TYPE vrtkz,
not_distributed VALUE IS INITIAL,
by_quantity VALUE '1',
by_percentage VALUE '2',
by_amount VALUE '3',
END OF ENUM cost_distribution.
The following code is not changed at all by ABAP cleaner
It would make sense that ABAP Cleaner aligns the VALUE parts of ENUMs, for instance as shown below