Hello all,
As i am new i dont know how to call a stored procedure with output parameter as tabletype, I want to call this from SAP HANA STUDIO,and from programming language like JAVA and PYTHON .
here is the description
Here i am creating a Tabletype
set schema EC2;
CREATE TYPE selecttypeall AS TABLE ("LINK" VARCHAR(1000), "DESC" VARCHAR(1000));
Then creating a stored procedure.
SET SCHEMA EC2;
DROP PROCEDURE outputselect;
CREATE PROCEDURE outputselect(in keyword varchar(100), out outall selecttypeall) as
begin
outall = SELECT "LINK","DESC" FROM "EC2"."HEALTH1" WHERE UPPER("DESC") LIKE UPPER(:keyword);
end
So how to call this stored procedure??? Just want to know
Regards
Qaiser Imam Khan