Passing Parameters to a Connected System (HANA DB)
Hi experts,
We have been able to establish connectivity to a HANA database successfully.
The HANA stored procedure is expecting the values to be passed, enclosed in single quotes - 'Value1, Value2'.
A query like below works perfectly fine.
SELECT * from DB_SCHEMA.VIEW_NAME('placeholder' = ('$$list_name$$','Value1,Value2'))
However when I try to pass this list as a parameter, I am getting an error.
SELECT * from DB_SCHEMA.VIEW_NAME('placeholder' = ('$$list_name$$',{parameter}))
Has anybody integrated with HANA DB before and has a reference to how we can achieve this by passing dynamic values via parameter with the main criteria being include parameter values in single quotes?

