You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 text was updated successfully, but these errors were encountered:
good point, thanks for the suggestion! Let me set a "new option" label for now, but we'd have to check whether this should be a new option to the "Align declarations" rule or rather a new cleanup rule.
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
The text was updated successfully, but these errors were encountered: