Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Inside Loop, how to stop processing the current record but the next one?

Former Member
0 Likes
790

We want to know which statement/command that can exit the current record processing in a loop and start to process the next record in the loop?

We've tried exit, but it jumps out the whole loop. We have tried Resume, but this command doesn't exist in ABAP.

Any idea?

Thanks!

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
645

Hi,

Use CONTINUE.

Thanks,

Sriram Ponna.

We want to know which statement/command that can exit the current record processing in a loop and start to process the next record in the loop?

We've tried exit, but it jumps out the whole loop. We have tried Resume, but this command doesn't exist in ABAP.

Any idea?

Thanks!

3 REPLIES 3
Read only

Former Member
0 Likes
646

Hi,

Use CONTINUE.

Thanks,

Sriram Ponna.

Read only

Former Member
0 Likes
645

Hi,

Try CONTINUE.

Good luck!.

Read only

Former Member
0 Likes
645

Hi,

Use CONTINUE. It will stop processing the current record and procedes with the next record