I got ORA-00907: missing right parenthesis. I believe I have right pairs of parenthesis. I'm trying to pass a reference of service type to employee type when I insert an employee record.
INSERT INTO Person VALUES
(FullTimeEmployeeType (1,
NameType('David', 'R', 'Jones'),
'M',
AddressType('123 somewhere', '', 'London', 'UD', '84042'),
'8030349092','',
'1978-05-26',
REF <servicerType>,
40000)
);