i have created two packages that i want to both use together.
But if i test my stored proc i have and PLS-00225 error :
"PLS-00225: subprogram or cursor 'LOG' reference is out of scope" on line 146/column 8
here is the line 146 of my stored proc:
EXCEPTION
WHEN UTL_FILE.INVALID_PATH THEN
LOG.errorLog(
'Error Error',
SQLCODE,
'Check your code',
'-20001',
'Check your code');
Bookmarks