Hi,
the syntax is
insert into table (column1,column2,column3)
values(1,2,3)
returning column1,column2 into variable1,variable2
but it doesn't work with multitable-inserts and it is really slowly (on 9i)
the faster way is
select primary_key from sequence.nextval into variable...
then insert with this pk an reselect the values inserted...
good luck