Variante 1 (führt Wordwrap bei Pos. 72 durch)
DATA: it_textlines TYPE STANDARD TABLE OF string.
...
CALL FUNCTION 'TERM_CONTROL_EDIT'
EXPORTING
titel = 'Titel'
langu = sy-langu
TABLES
textlines = it_textlines
EXCEPTIONS
user_cancelled = 1
OTHERS = 2.
IF sy-subrc = 0.
ENDIF.
Variante 2 (maximale Zeilenlänge sind 72 Zeichen)
DATA: it_text TYPE catsxt_longtext_itab.
...
CALL FUNCTION 'CATSXT_SIMPLE_TEXT_EDITOR'
EXPORTING
im_title = 'Title'
im_display_mode = ' ' " 'X' -> ReadOnly
im_start_column = 10
im_start_row = 10
CHANGING
ch_text = it_text. " Tabelle mit Text