Loads an ABAP program or
internal table into a text editor.
Syntax
EDITOR-CALL FOR <itab>�
EDITOR-CALL FOR REPORT
<prog>�
Loads the internal table
<itab> or the program <prog> into a text editor, where you can edit it using
standard editor functions.
ELSE
Introduces a statement
block in an IF control structure.
Syntax
ELSE.
If the logical expression
in an IF statement is false, ELSE introduces the statement block to be executed
instead.
ELSEIF
Introduces a statement
block in an IF control structure.
Syntax
ELSEIF <logexp>.
If the logical expression
in an IF statement is false and <logexp> is true, ELSE introduces the statement
block to be executed instead.
END-OF-DEFINITION
Closes a macro definition.
Syntax
END-OF-DEFINITION.
This statement concludes a
macro definition introduced with DEFINITION.
END-OF-PAGE
Event keywords for
defining event blocks for list events.
Syntax
END-OF-PAGE.
Whenever the page footer
is reached while a list is being created, the runtime environment triggers the
END-OF-PAGE event, and the corresponding event block is executed.
END-OF-SELECTION
Event keywords for
defining event blocks for reporting events.
Syntax
END-OF-SELECTION.
Once a logical database
has read all of the required lines and passed them to the executable program,
the runtime environment triggers the END-OF-SELECTION event, and the
corresponding event block is executed.
ENDAT
Closes a statement block
in control level processing.
Syntax
ENDAT.
This statement concludes a
control level processing block introduced with AT.
ENDCASE
Closes a CASE control
structure.
Syntax
ENDCASE.
This statement concludes a
control structure introduced with CASE.
ENDCATCH
Closes a CATCH area.
Syntax
ENDCATCH.
This statement concludes
an exception handling block introduced with CATCH SYSTEM-EXCEPTIONS.
ENDCLASS
Closes a class definition.
Syntax
ENDCLASS.
This statement concludes a
class declaration or implementation introduced with CLASS.
ENDDO
Closes a DO loop.
Syntax
ENDDO.
This statement concludes a
loop introduced with DO.
ENDEXEC
Closes a Native SQL
statement.
Syntax
ENDEXEC.
This statement ends a
Native SQL statement introduced with EXEC SQL.
ENDFORM
Closes a subroutine.
Syntax
ENDFORM.
This statement concludes a
subroutine definition introduced with FORM.
ENDFUNCTION
Closes a function module.
Syntax
ENDFUNCTION.
This statement concludes a
function module introduced with FUNCTION.
ENDIF
Closes an IF control
structure.
Syntax
ENDIF.
This statement concludes a
control structure introduced with IF.