How to put a formatted link in Banner SSB page?
Hi all
We are working on creating a formatted link and then put the link in the Banner SSB page. The link is created but how do I put the link in Banner SSB page without popping up another window asking the user to click on the formatted link?? Could spmeone please help? Thanks!
Alan

We found the solution.
Hi all
FYI
');1. Create a SQL package and make it public for WebTailor
2. Put the following codes in the package:
-- Display HTML Ebill Link in luminis Banner Channel
FullURL := http://www.yourlink.com;
SELECT meta http-equiv="Refresh" content="5"; URL= || FullURL ||
INTO FullLink
FROM DUAL;
htp.p('');
htp.p('
htp.p(FullLink);
htp.p('');
htp.p('');
htp.p('');
htp.p('');
3. Put the package in WebTailor Menu.
Alan
Please note: Don't forget about begin and end with single and doble quotes in your SQL statement. LDN prevents the line being shown.