SRW.SET_PDF_ACTION
built-in procedureThis procedure specifies a command line that will be executed on the local machine when the object is clicked in the PDF viewer.
Note: An object that is associated with an action cannot also be the source of a Web link.
SRW.SET_PDF_ACTION('action');
Parameter |
Description |
action |
Is any valid command line on the local machine (for example,
|
SRW.SET_PDF_ACTION
is only available for PDF output.
SRW.SET_PDF_ACTION
should only be set in the following triggers:
You can also define this attribute using the Reports Builder user interface:
Property Inspector |
Set the Application Command Line (PDF) property. |
The format trigger below runs a report named example.rdf when the button object U_Report is clicked in the PDF viewer.
function U_ReportFormatTrigger return boolean is
begin
SRW.SET_PDF_ACTION ||
('c:\orawin\bin\rwrun60' ||
'userid=scott/tiger ' ||
'report=example.rdf');
end;
Creating an application command line link using PL/SQL
About the
Reports Builder built-in package (SRW
)
Copyright © 1984, 2005, Oracle. All rights reserved.