SAP CONTINUE ABAP Statements



Get Example source ABAP code based on a different SAP table
  


ID CONTINUE
• CONTINUE ABAP Statement

CONTINUE
Short Reference

ABAP_SYNTAX
CONTINUE.

What does it do?
The statement CONTINUE may only be used in loops. If it is used, the current loop pass is terminated immediately and the program flow is continued with the next loop pass.

ABAP_EXAMPLE_VX5
Exit of a loop pass using CONTINUE if the loop index sy-index is an odd number.
ABEXA 00145
ABAP_EXAMPLE_END

Return to menu