Hi Kevin,
I don't think currently this feature is available in HANA, but you can use INSERT INTO .. SELECT statement for multiple rows insert.
May be as a work around you can use something like:
INSERT INTO ..
(SELECT ... from dummy
UNION
SELECT... from dummy
UNION
SELECT... from dummy
)
Regards,
Ravi