我有一个在提交页面时运行的进程。在这个过程中我正在捕获异常,如果发生异常,我想重定向到不同的页面并显示异常的错误消息。
我的代码中的重定向有效,但我想设置一条错误消息以显示在第 765 页上,该页面与启用此过程的页面不同。
begin
-- some code here
exception when others then
-- how to set the exception error message to show on page 765?
owa_util.redirect_url('f?p=&APP_ID.:765:&SESSION.::NO:::');
end;