Oracle Error Message
PLS-00513: PL/SQL function called from SQL must return value of legal SQL type
Reason for the Error
In a SQL statement, do not call a PL/SQL function having a return type that can not be handled by SQL. For example, type BOOLIAN, records and indexed-tables are not supported by SQL and functions returneing such values can not be called from SQL.
Solution
None