i have created one procedure in my schema.
CREATE PROCEDURE TEST
(in id varchar) AS
BEGIN
SELECT * FROM "table" WHERE "ID" = :id;
END;
and i am able to call the procedure from console.
CALL "schema"."TEST"('1')
my question is how to expose this procedure as odata service.
is there any way to do it. ???