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.

Hi.
This is the code I wrote:
When I run Abap Cleaner, it becomes like this:
Looks like it doesn't process the UPDATE command properly.