Code: Alles auswählen.
* Fokus noch auf den Editor setzen
CALL METHOD cl_gui_textedit=>set_focus
EXPORTING
control = gc_longtext_1
EXCEPTIONS
cntl_error = 1
cntl_system_error = 2
OTHERS = 3.
IF sy-subrc EQ 0.
CALL METHOD cl_gui_cfw=>flush
EXCEPTIONS
cntl_system_error = 1
cntl_error = 2
OTHERS = 3.
IF sy-subrc NE 0.
* TODO: Fehlerbehandlung
ENDIF.
ENDIF.