data: lt_tline type table of tline.
data: begin of lt_stxl occurs 0,
tdobject type stxl-tdobject,
tdname type stxl-tdname,
tdid type stxl-tdid,
tdspras type stxl-tdspras,
end of lt_stxl.
clear: lt_stxl[].
lt_stxl-tdobject = 'AUFK'.
lt_stxl-tdname = '10200000052920006'.
lt_stxl-tdid = 'MATK'.
lt_stxl-tdspras = 'E'.
append lt_stxl.
import tline to lt_tline from database stxl(tx) id lt_stxl.
if sy-subrc = 0.
endif.