SELECT owner, object_name, object_type, status, timestamp
FROM dba_objects
WHERE owner = 'PACS'
AND object_name = 'SAVEQUICKREPORT'
AND object_type = 'FUNCTION';
SELECT owner, name, type, sequence, line, position, text, attribute, message_number
FROM dba_errors
WHERE owner = 'PACS'
AND name = 'SAVEQUICKREPORT'
ORDER BY sequence;