<?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 Re: SAS OQ test program ACTIVEX problem in Administration and Deployment</title>
    <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-OQ-test-program-ACTIVEX-problem/m-p/421971#M11623</link>
    <description>&lt;P&gt;Thanks &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/35204"&gt;@JuanS_OCS&lt;/a&gt;.&amp;nbsp; Somehow I managed to miss the point that there is a hot fix available for 9.4M4.&amp;nbsp; Will give it a shot.&lt;/P&gt;</description>
    <pubDate>Mon, 18 Dec 2017 13:38:14 GMT</pubDate>
    <dc:creator>Quentin</dc:creator>
    <dc:date>2017-12-18T13:38:14Z</dc:date>
    <item>
      <title>SAS OQ test program ACTIVEX problem</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-OQ-test-program-ACTIVEX-problem/m-p/421658#M11600</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I installed SAS 9.4M4 on a Windows PC, and when running the SAS Operational QualificationTool I get a popup error:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; The program can't start because mfc100.dll is missing from your&amp;nbsp;computer.&amp;nbsp; Try reinstalling the program to fix this problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From &lt;A href="http://support.sas.com/kb/60/148.html" target="_blank"&gt;http://support.sas.com/kb/60/148.html&lt;/A&gt; , it looks like it's relating to the goptions device=actximg section of SASHome\SASFoundation\9.4\sastest\graph\test\testgr.sas&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately, the TS note doesn't suggest a solution for the OQ tool, other than changing to goptions device=png, which of course wouldn't test activex.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My first thought is to just comment out this section of the testscript, and add an explanation with a link to the TS note.&amp;nbsp; So that I can get a passing OQ report.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%if &amp;amp;sysscp=WIN or &amp;amp;sysscp=DNTHOST %then %do;

  /* ************************************************ */
  /* verify actximg -- gplot                          */
  /*              run on WIN boxes only               */
  /* ************************************************ */

   title  'Verify ACTXIMG';
   goptions device=actximg;

   footnote h=1 j=r 'actximg_gplot';
   proc sort data=sashelp.class out=class;
       by weight;
       where sex='M';
       run;
   symbol height=2 value=dot interpol=join;
   proc gplot data=class;
      plot height*weight / name='aigplot';
      run; quit;
     %if &amp;amp;syserr ne 0 %then %do;
        %put ERROR: There is a problem with ACTXIMG GPLOT;
        %let instrc=1;
     %end;
   symbol;
%end;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Of course I shouldn't be mucking with the OQ script provided by SAS.&amp;nbsp; My other thought was just to accept the failing OQ report, and attach the TS Note explaining that SAS knows it can fail in 9.4M4. I would be okay with this if the report said that ACTXIMG failed (because I don't care about that).&amp;nbsp; But instead, the report says that testgr failed, which I don't like.&amp;nbsp; testgr.sas tests several devices other than ACTXIMG, so I'd like to be able to document that other other devices passed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just wondering if anyone has come up with a nicer solution than commenting out this section of the script.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;-Q.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Dec 2017 17:32:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-OQ-test-program-ACTIVEX-problem/m-p/421658#M11600</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2017-12-15T17:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAS OQ test program ACTIVEX problem</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-OQ-test-program-ACTIVEX-problem/m-p/421935#M11622</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;nice question. Have you already tried to install the hotfix that is on the hotfix tab? That should solve all your troubles.&lt;/P&gt;
&lt;P&gt;Indeed, hacking into the code provided by SAS is normally not the way to go, as you mentioned.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I rather prefer to explain something in a report than to hack into standard codes. Simply because if someone else will run the codes won't know why they get the error and you don't.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let us know!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards,&lt;/P&gt;
&lt;P&gt;Juan&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2017 10:45:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-OQ-test-program-ACTIVEX-problem/m-p/421935#M11622</guid>
      <dc:creator>JuanS_OCS</dc:creator>
      <dc:date>2017-12-18T10:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: SAS OQ test program ACTIVEX problem</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-OQ-test-program-ACTIVEX-problem/m-p/421971#M11623</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/35204"&gt;@JuanS_OCS&lt;/a&gt;.&amp;nbsp; Somehow I managed to miss the point that there is a hot fix available for 9.4M4.&amp;nbsp; Will give it a shot.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2017 13:38:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-OQ-test-program-ACTIVEX-problem/m-p/421971#M11623</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2017-12-18T13:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: SAS OQ test program ACTIVEX problem</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-OQ-test-program-ACTIVEX-problem/m-p/422052#M11625</link>
      <description>&lt;P&gt;Oh it happens to me every now and then. But they say that 2 pair of eyes see more than 2 &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let us know how it goes!&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2017 16:49:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-OQ-test-program-ACTIVEX-problem/m-p/422052#M11625</guid>
      <dc:creator>JuanS_OCS</dc:creator>
      <dc:date>2017-12-18T16:49:16Z</dc:date>
    </item>
  </channel>
</rss>

