Supongamos que tienes una tabla interna como la siguiente -
DATA: BEGIN of tb_purinfo OCCURS 0,
infnr type eina-infnr,
matnr type eina-matnr,
lifnr type eina-lifnr,
ekorg type eine-ekorg,
werks type eine-werks,
END of tb_purinfo.
Luego tu consulta sería -
SELECT a~infrn a~matnr a~lifnr b~ekorg b~werks
INTO TABLE tb_purinfo
FROM eina AS a
INNER JOIN eine AS b on a~infnr = b~infnr
WHERE a~infnr = some restricting condition
En la consulta anterior, eina se representa como 'a' y eine se representa como 'b' y luego se unen ambas.
Hazme saber si puedo ayudarte más y recompensa puntos si esto es útil.
Saludos,
Ram