Code: Alles auswählen.
parameters eingabe type string.
data: begin of it1 occurs 10,
f1 type string,
f2 type n,
f3 type n,
end of it1.
Code: Alles auswählen.
read table it1 with key f1 = eingabe.
if sy-subrc <> 0. 'der Eingabewert ist nicht in Itab
exit.
endif.
Code: Alles auswählen.
TYPES:
BEGIN OF typ_it1,
f1 type string,
f2 type n,
f3 type n,
END OF typ_it1,
typ_t_it1 TYPE TABLE OF typ_it1. "kann auch als Formalparameter in FORM benutzt werden
DATA:
it1 TYPE TABLE OF typ_it1,
* it1 TYPE typt_it1, "weitere Möglichkeit
wa_it1 LIKE LINE OF it1.
read table it1 INTO wa_it1 with key f1 = eingabe.
if sy-subrc <> 0. 'der Eingabewert ist nicht in Itab
exit.
endif.