Domen Dolar - 2018-05-28

When submitting form you can redirect to any page.

SAMPLE ON POST_ACTION TRIGGER:

if ACTION = REDIRECT then
declare
xx varchar2(50) := 'My new parameter with special chars: ŠĐČĆŽšđčćž';
begin
owa_util.redirect_url(
utl_url.escape('my_new_url?MESSAGE='||xx, false , 'UTF8')
);
end;
end if;

 

Last edit: Domen Dolar 2018-05-28