Quantcast
Channel: SCN: Message List
Viewing all articles
Browse latest Browse all 9236

how to expose odata service for input parameter based procedure.

$
0
0

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. ???


Viewing all articles
Browse latest Browse all 9236

Trending Articles