Hi there,
sometimes ABAP drives me crazy with really simple tasks - as incrementing an integer within a loop...
Here's my try:
METHOD test.
DATA: lv_id TYPE integer.
lv_id = 1.
LOOP AT x ASSIGNING <y>.
lv_id = lv_id+1.
ENDLOOP.
ENDMETHOD.
This gives me a strange error I can hardly translate to english..