hyperlink in reports 10g [message #329654] |
Thu, 26 June 2008 02:40 |
sandipshahare
Messages: 21 Registered: March 2008 Location: Pune
|
Junior Member |
|
|
This is format trigger for the hyperlink in reports 10g.
Here one variable is used :server and the name of server is given in rwservlet.properties.
i didnt find any value assign in the report for (server )variable .
I want to confirm ,
Will it take the value for :server in reports?
function F_meth_attrFormatTrigger return boolean is
begin
if upper(:destype) = 'CACHE' and upper(:desformat) in ('HTMLCSS', 'HTML') then
srw.set_hyperlink('/reports/rwservlet?report=SP_spec +server='||:server||
'+destype=cache+desformat=htmlcss+paramform=yes'||'+userid=');
SRW.SET_HYPERLINK_ATTRS('onMouseover="window.status=''Click here to run the Submission Detail report'';'||
' return true"'||
'onMouseout="window.status='' ''; return true"');
end if;
return (TRUE);
end;
|
|
|
|