I am trying to create a chart in the database management panel reporting software (Logi Info). I have a PL SQL package that returns a ref cursor with multiple values, but Logi Info doesn't seem to support this and gives me an error ORA-00904: "DASHBOARD_PACKAGE"."GETSUMMARYDATA": invalid identifier. I think this is either not supported, or that my doubt is wrong. This is my request:
select dashboard_package.getSummaryData (1, sysdate) from double
Is this a function call that returns multiple values? if so, is there a solution to this problem (return type is not supported)?
source
share