<?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 Warning in SAS EG in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Warning-in-SAS-EG/m-p/50981#M5488</link>
    <description>Hi All,&lt;BR /&gt;
&lt;BR /&gt;
I am trying to create a  pdf report in SAS EG.&lt;BR /&gt;
&lt;BR /&gt;
ods pdf file = "/abc/xyz/sample.pdf" notoc compress=0;&lt;BR /&gt;
your procedure code;&lt;BR /&gt;
ods pdf close;&lt;BR /&gt;
&lt;BR /&gt;
when i run the above code in SAS EG 4.2 in a server environment, I am getting the following warning message in the log.&lt;BR /&gt;
I am just wondering, if there is a way to avoid this warning message.&lt;BR /&gt;
&lt;BR /&gt;
WARNING: Unsupported device 'ACTIVEX' for PDF destination. Using device 'ACTXIMG'.&lt;BR /&gt;
&lt;BR /&gt;
Help will be appreciated.&lt;BR /&gt;
&lt;BR /&gt;
thanks and regards&lt;BR /&gt;
Aravind</description>
    <pubDate>Thu, 16 Dec 2010 16:17:15 GMT</pubDate>
    <dc:creator>aravind</dc:creator>
    <dc:date>2010-12-16T16:17:15Z</dc:date>
    <item>
      <title>Warning in SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Warning-in-SAS-EG/m-p/50981#M5488</link>
      <description>Hi All,&lt;BR /&gt;
&lt;BR /&gt;
I am trying to create a  pdf report in SAS EG.&lt;BR /&gt;
&lt;BR /&gt;
ods pdf file = "/abc/xyz/sample.pdf" notoc compress=0;&lt;BR /&gt;
your procedure code;&lt;BR /&gt;
ods pdf close;&lt;BR /&gt;
&lt;BR /&gt;
when i run the above code in SAS EG 4.2 in a server environment, I am getting the following warning message in the log.&lt;BR /&gt;
I am just wondering, if there is a way to avoid this warning message.&lt;BR /&gt;
&lt;BR /&gt;
WARNING: Unsupported device 'ACTIVEX' for PDF destination. Using device 'ACTXIMG'.&lt;BR /&gt;
&lt;BR /&gt;
Help will be appreciated.&lt;BR /&gt;
&lt;BR /&gt;
thanks and regards&lt;BR /&gt;
Aravind</description>
      <pubDate>Thu, 16 Dec 2010 16:17:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Warning-in-SAS-EG/m-p/50981#M5488</guid>
      <dc:creator>aravind</dc:creator>
      <dc:date>2010-12-16T16:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: Warning in SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Warning-in-SAS-EG/m-p/50982#M5489</link>
      <description>Hi:&lt;BR /&gt;
  This Tech Support note explains that message when it is issued for ODS LISTING:&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/31/619.html" target="_blank"&gt;http://support.sas.com/kb/31/619.html&lt;/A&gt;&lt;BR /&gt;
where it says that: &lt;BR /&gt;
&lt;B&gt;&lt;BR /&gt;
This warning message is issued because the type of interactivity that is built into the ACTIVEX and JAVA device drivers is incompatible with the LISTING destination. &lt;/B&gt;&lt;BR /&gt;
 &lt;BR /&gt;
It is probably safe to assume that the type of interactivity provided with ACTIVEX is also incompatible with the PDF destination -- since the PDF file is supposed to be an image of what would otherwise be sent to a printer -- and there is no interactivity or clicking, changing or rotating on a printer.&lt;BR /&gt;
&lt;BR /&gt;
If you have SAS/GRAPH code, do you also have a GOPTIONS statement in the SAS/GRAPH code??? If so, you might want to explicitly specify:&lt;BR /&gt;
[pre]&lt;BR /&gt;
GOPTIONS device=ACTXIMG;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
 &lt;BR /&gt;
..in order to avoid this warning in the future.&lt;BR /&gt;
 &lt;BR /&gt;
Reading the documentation on device-based graphics and the various image formats that are "acceptable" for each destination might be useful:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/graphref/63022/HTML/default/viewer.htm#a003263978.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/graphref/63022/HTML/default/viewer.htm#a003263978.htm&lt;/A&gt; (you will see here that ACTIVEX is not listed for the PDF destination) &lt;A href="http://support.sas.com/documentation/cdl/en/graphref/63022/HTML/default/viewer.htm#a003296192.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/graphref/63022/HTML/default/viewer.htm#a003296192.htm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 16 Dec 2010 16:26:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Warning-in-SAS-EG/m-p/50982#M5489</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-12-16T16:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Warning in SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Warning-in-SAS-EG/m-p/50983#M5490</link>
      <description>Hi Cynthia,&lt;BR /&gt;
&lt;BR /&gt;
Thanks for the Reply and we dont have GRAPH installed in here.&lt;BR /&gt;
Your solution works fine.&lt;BR /&gt;
I was googling and found out other solution to remove this warning which is&lt;BR /&gt;
In SAS EG  by going  to TOOLS------&amp;gt; OPTIONS---------&amp;gt;Graph. and in the right side panel&lt;BR /&gt;
 under Graph Format, if you select the ActiveX image (SAS V9) from the drop down list,&lt;BR /&gt;
the warning will go off.&lt;BR /&gt;
I've used this option and it worked.&lt;BR /&gt;
But, since we didnt have GRAPH installed, is this change gonna cause any issuses?&lt;BR /&gt;
&lt;BR /&gt;
Thanks &amp;amp; Regards&lt;BR /&gt;
Aravind</description>
      <pubDate>Thu, 16 Dec 2010 16:50:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Warning-in-SAS-EG/m-p/50983#M5490</guid>
      <dc:creator>aravind</dc:creator>
      <dc:date>2010-12-16T16:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: Warning in SAS EG</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Warning-in-SAS-EG/m-p/50984#M5491</link>
      <description>Hi:&lt;BR /&gt;
  You should be OK...the GOPTIONS statement is just populating a "list" of options that are checked when things start up. Either method should prevent the warning message.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 16 Dec 2010 19:52:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Warning-in-SAS-EG/m-p/50984#M5491</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-12-16T19:52:24Z</dc:date>
    </item>
  </channel>
</rss>

