Thanks to visit codestin.com
Credit goes to github.com

Skip to content

ENUM definitions are not aligned #194

@kjetil-kilhavn

Description

@kjetil-kilhavn

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.

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions