Code: Alles auswählen.
DATA list_tab TYPE TABLE OF abaplist.
SUBMIT dein_standardreport EXPORTING LIST TO MEMORY AND RETURN.
CALL FUNCTION 'LIST_FROM_MEMORY'
TABLES
listobject = list_tab
EXCEPTIONS
not_found = 1
OTHERS = 2.
IF sy-subrc = 0.
sy-title = 'Dein Titel'.
CALL FUNCTION 'WRITE_LIST'
TABLES
listobject = list_tab.
ENDIF.