|
I'm trying to call a custom made PL/SQL function in a SQL query. I want to supply the values of the parameters during the query. I can call the function if I "hard code" the parameter values, but when I try to supply them I get the ORA-06553 error.
This call works: select pkg_tm_import_util.wb_screen_hr_refresh_func('','','','','','','','','','','','') from dual
However, this does not, but should be the same as the call that works: select pkg_tm_import_util.wb_screen_hr_refresh_func( ''''','|| ''''','|| ''''','|| ''''','|| ''''','|| ''''','|| ''''','|| ''''','|| ''''','|| ''''','|| ''''','|| '''''' ) results from dual
Any pointers are appreciated.
|