<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic links with PDF destination in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/links-with-PDF-destination/m-p/62869#M7397</link>
    <description>is it possible to create drill-down links with the PDF destination. with the HTML destination, you simply use the html variable in an annotate data set and SAS generates an image map with the hotspots defined. i need the whole chart to lilnk to an excel workbook or a folder on a network drive.&lt;BR /&gt;
&lt;BR /&gt;
thanks,&lt;BR /&gt;
-richard

typed the general ODS destination rather than the specific PDF destination.&lt;BR /&gt;
    &lt;BR /&gt;
Message was edited by: RichardK</description>
    <pubDate>Mon, 24 Nov 2008 16:56:30 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2008-11-24T16:56:30Z</dc:date>
    <item>
      <title>links with PDF destination</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/links-with-PDF-destination/m-p/62869#M7397</link>
      <description>is it possible to create drill-down links with the PDF destination. with the HTML destination, you simply use the html variable in an annotate data set and SAS generates an image map with the hotspots defined. i need the whole chart to lilnk to an excel workbook or a folder on a network drive.&lt;BR /&gt;
&lt;BR /&gt;
thanks,&lt;BR /&gt;
-richard

typed the general ODS destination rather than the specific PDF destination.&lt;BR /&gt;
    &lt;BR /&gt;
Message was edited by: RichardK</description>
      <pubDate>Mon, 24 Nov 2008 16:56:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/links-with-PDF-destination/m-p/62869#M7397</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-11-24T16:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: links with ODS destination</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/links-with-PDF-destination/m-p/62870#M7398</link>
      <description>Hi:&lt;BR /&gt;
  If you search support.sas.com for some examples, there are different ways to do it, depending on the device drivers you want to use:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/graphref/59607/HTML/default/a002152030.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/graphref/59607/HTML/default/a002152030.htm&lt;/A&gt; (Java &amp;amp; ActiveX)&lt;BR /&gt;
&lt;A href="http://www2.sas.com/proceedings/sugi28/149-28.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/sugi28/149-28.pdf&lt;/A&gt; (Java, ActX, plus HTML= with SAS/Graph)&lt;BR /&gt;
&lt;BR /&gt;
  To find out how to drill down to an Excel Workbook instead of an HTML page, you might with to work with Tech Support to make sure that you have your link to Excel built correctly.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Mon, 24 Nov 2008 17:41:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/links-with-PDF-destination/m-p/62870#M7398</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-11-24T17:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: links with ODS destination</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/links-with-PDF-destination/m-p/62871#M7399</link>
      <description>sorry about the confusion...i wanted to ask about linking within PDF destinations.&lt;BR /&gt;
&lt;BR /&gt;
thanks for the links; i briefly looked into the java/activex methods, but those don't seem to support direct printing (file &amp;gt; print). the final ODS destination *must* allow printing directly from the host application.&lt;BR /&gt;
&lt;BR /&gt;
thanks again.</description>
      <pubDate>Tue, 25 Nov 2008 15:49:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/links-with-PDF-destination/m-p/62871#M7399</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-11-25T15:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: links with ODS destination</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/links-with-PDF-destination/m-p/62872#M7400</link>
      <description>Just want to make sure I fully understand the question.  You want to link from a pdf file to a webpage for example?  &lt;BR /&gt;
&lt;BR /&gt;
Links are used within PDF.   Here is a short example of creating a mail link and and a http link.&lt;BR /&gt;
&lt;BR /&gt;
%let emails=test@test.com;&lt;BR /&gt;
&lt;BR /&gt;
%put %length(&amp;amp;emails);&lt;BR /&gt;
&lt;BR /&gt;
ods listing close;&lt;BR /&gt;
ods path sashelp.tmplmst(read);&lt;BR /&gt;
ods escapechar="^";&lt;BR /&gt;
&lt;BR /&gt;
ods pdf file='pdflink.pdf';&lt;BR /&gt;
&lt;BR /&gt;
title1 "^S={url='http://www.sas.com'}Title1: Click to go to SAS web site";&lt;BR /&gt;
title2 "^S={url='mailto:&amp;amp;emails'}Title2: list of email addresses";&lt;BR /&gt;
proc print data=sashelp.class;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
ods pdf close;&lt;BR /&gt;
&lt;BR /&gt;
Let me know if you need more assistance.  You can send me some sample source code if you want at ODS@sas.com.  &lt;BR /&gt;
&lt;BR /&gt;
And as always Technical Support is great for questions like this!&lt;BR /&gt;
&lt;BR /&gt;
Thanks!  &lt;BR /&gt;
Scott</description>
      <pubDate>Tue, 25 Nov 2008 21:18:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/links-with-PDF-destination/m-p/62872#M7400</guid>
      <dc:creator>ScottH_SAS</dc:creator>
      <dc:date>2008-11-25T21:18:38Z</dc:date>
    </item>
  </channel>
</rss>

