Hi There
Just wondering what is the issue here. I am trying to create a conditional branch using this?
<code> -- can someone please tell me how to markup code in here ....
declare
l\_client\_type varchar2(80); -- branching logic will be based on this
l\_redirect varchar2(80);
l\_page\_no pls\_integer := 4020
begin
l\_redirect := 'f?p='|| v('APP\_ID') ||':'||l\_page\_no||':'|| v('APP\_SESSION');
PLJ\_LG.D(l\_redirect); -- capture in log to test, and yes it works fine ......
owa\_util.redirect\_url(l\_redirect);
apex\_application.stop\_apex\_engine;
end;
</code>
When I run this I get:

Note that if I cut and paste the generated string from the log file and paste it into the location bar - if redirects fine ....
Thank you
Paul