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

Skip to content

"Align logical expressions" misformats SQL Update command #485

@MDagni

Description

@MDagni

Hi.

This is the code I wrote:

    data lv_kunnr type kunnr.
    field-symbols <ls_selected> type zfi_bnk_002.

    update zfi_bnk_002
      set kunnr = @lv_kunnr
      where banka = @<ls_selected>-banka
        and hareket_key = @<ls_selected>-hareket_key.

When I run Abap Cleaner, it becomes like this:

    data lv_kunnr type kunnr.
    field-symbols <ls_selected> type zfi_bnk_002.

    update zfi_bnk_002
      set kunnr = @lv_kunnr
      where banka =     @<ls_selected>-banka
                    and hareket_key = @<ls_selected>-hareket_key.

Looks like it doesn't process the UPDATE command properly.

Image

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions