Search This Blog

Showing posts with label at first. Show all posts
Showing posts with label at first. Show all posts

Thursday, March 11, 2021

Control break statements in SAP ABAP

 


These statements are executed only with in Loop...................Endloop.

Control break statements are

AT FIRST - This statement is executed/triggered for the first iteration of loop (SY-TABIX = 1 ).

AT LAST - This statement is executed/triggered for the last iteration of loop.

AT NEW - This is executed whenever there is a new value on specified field.

AT END OF - This statement is executed whenever the new value ends on specific field.

ON CHANGE OF - It is same as AT NEW and is obsolete in ECC 6.0.

Pages