Hello every one,
could you please provide some examples of code inside a for iteration cycle?
With new abap code we can substitute loop with for to make iteration faster but how can i write code inside the iteration?
With loop:
Loop at itab assigning field-symbols(<fs>).
Write your code i.e perform o call function or any other code.
endloop.
How can I write my code inside for cycle?