Code: Alles auswählen.
data: begin of itab occurs 0,
line(3000) type c .
data: end of itab.
data: line(3000) type c.
* UPLOAD vom Client
CALL FUNCTION 'WS_UPLOAD'
EXPORTING
FILENAME = 'C:\datei.txt '
TABLES
data_tab = itab.
loop at itab.
line = itab-line.
search line for 'das was su suchen willst'.
if sy-subrc eq 0.
write:/ line.
endif.
endloop.