Code: Alles auswählen.
Der SELECT Befehl ist quasi folgender...
SELECT a~nr a~datum b~text c~betrag c~einheit
INTO it_tab
FROM a123 as a INNER JOIN b123 as b ON a~nr = b~nr INNER JOIN c ON a~knr = c~knr
Code: Alles auswählen.
Pseudocode:
select table1
select table2
select table3
fill_internal_table
endselect.
endselect.
endselect.