Search This Blog

Showing posts with label continue. Show all posts
Showing posts with label continue. Show all posts

Tuesday, March 23, 2021

Loop Control Statements in SAP ABAP

 Loop Control Statements in SAP ABAP


CONTINUE :  Immediately skip the  rest of the code within the loop and start the loop for the next value.


CHECK :  If condition is false. Start the loop for the next value.


EXIT :  Terminates the loop entirely and transfers execution to the statement immediately following the loop.

Pages