Hi Qaiser,
Create a global temporary table which is exactly same as table type(selecttypeall) like gt_selecttypeall and call your procedure as below
CALL "EC2"."outputselect" ('pass_value_of_keyword', gt_selecttypeall) with overview;
If you get the error: Invalid column name gt_selecttypeall, you need to change the order of
the input and output parmaters
-- Check result tab. It displays name of table type output parameter and table name.
Use select on temporary
table to retrieve result.
select * from gt_selecttypeall;
Best Regards,
Ranjit