Hi All,
i am creating input parameter in hana graphical represent calculation views.
while creating input parameter i selected derived from stored procedure.
after that i select stored procedure it was giving below error
* Procedures with output parameters of type Table not supported
The below code was my procedure
BEGIN
COLUMN_SEC=SELECT MAX(COLUMN_SEC) AS COLUMN_SEC FROM (
SELECT
CASE WHEN ROLE_NAME LIKE '%ALL%' THEN 1 ELSE 0 END AS COLUMN_SEC
FROM SYS.GRANTED_ROLES
WHERE GRANTEE = SESSION_USER);
END;
and i created out parameter as well as
Please help me.
Regards,
Srini