How to display errors of processes
533846Jul 25 2008 — edited Jul 29 2008Dear All,
I created a pl/sql process with exception handling structure like this
...
when
no_data_found then
raise_application_error(<code>, <message>);
...
The message is returned to the error page, but I want to have it returned inline in notification. A possible solution would be to create a corresponding validation that runs brefore the process. Within validations you can choose between the returning locations, but that would mean that I have to integrate the logic twice.
Is there any option to display the error message for processes - raised within the exception section - inline ?
Thanks
Jens