SAP BACK ABAP Statements



Get Example source ABAP code based on a different SAP table
  


ID BACK
• BACK ABAP Statement

BACK
Short Reference

ABAP_SYNTAX
BACK.

What does it do?
This statement positions the list cursor on the first position of the first line in a logical unit. A list contains the following logical units:
A line block defined using RESERVE. If BACK is executed after the statement RESERVE, the list cursor is placed in the first line of the current line block.
The lines within a user-defined page header . If BACK is executed within the event block for TOP-OF-PAGE and is not placed after RESERVE, the list cursor is positioned in the first line below the standard page header.
The lines of a page below the page header. If BACK is executed outside of the event block for TOP-OF-PAGE and not after RESERVE, the list cursor is positioned in the first line below the page header.



Example ABAP Coding

Output of a small input mask. The input fields are positioned after the description.
ABEXA 00050
ABAP_EXAMPLE_END

Return to menu