Hello Marina
There is diffrent ways you can do
First:ıf you are going to use this query some where else
then good idea to create a view database view on these three tables
its compiled and will give you speed
otherwise
Second: after you select into your internal table
IT_FINOVR
you can do another query like FOR ALL ENTRİES..
DATA: lt_tvkbt type standard table of tvkbt.
if NOT IT_FINOVR is İNİTİAL.
select *from tvkbt
into table lt_tvkbt
for all entries in
IT_FINOVR
where vkbur = lt_tvkbt-vkbur.
sort lt_tvkbt by vkbur ascending.
endif.
Hope helps Marina