SAP-Infofenster hat geschrieben:The foreign keys for the tables which were already included with other
relationships are also displayed. It is not possible to include the same
table in the view using different relationships.
Code: Alles auswählen.
SELECT ZSD_KALKPREISTYP~PREISTYPNAME
p~PREISTYPNAME
INTO (listen-PREISTYPNAME,
listen-PREISTYPNAME2)
FROM zsd_kalklisten
INNER JOIN zsd_kalkpreistyp
ON ( zsd_kalklisten~preistyp = zsd_kalkpreistyp~preistypnr )
INNER JOIN zsd_kalkpreistyp as p
ON ( zsd_kalklisten~preistyp_2 = p~preistypnr ).
append listen.
endselect.