Code: Alles auswählen.
data it_prtext type table of textpool.
field-symbols <fs_prtext> type textpool.
read textpool <Programmname> into it_prtext Language sy-langu.
read table it_prtext assigning <fs_prtext>
with key ID = 'R'.
if sy-subrc eq 0.
write : / <fs_prtext>-entry.
endif.