Skip to Content
0
Sep 19, 2023 at 09:20 AM

Example of code inside new for iteration

85 Views

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?