Hello Thomas,
Thanks for your answer.
If I use the "param.connection" (connection in screenshot) object in my xsjslib function it is a different object then the connection object from hdb.getConnection() (conn in screenshot).
So if try:
>> param.connection.executeQuery(query);
This will not work because param.connection does not know a function called executeQuery whereas the connection object from hdb.getConnection() does.
What I would like to have is access to the loadProcedure function via the connection object.