<?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: gplot PNG files stored in a wrong folder in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699730#M24678</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/336811"&gt;@DavidHD&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;by freezing, it means we have to kill EG.&lt;BR /&gt;I read logs:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;EG logs: I found some errors due to some access to shared folders. But there were not used by graphs&lt;/LI&gt;&lt;LI&gt;Project Log: no errors&lt;/LI&gt;&lt;LI&gt;Worskpace logs: no errors.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;for your information, graph stay in yellow. What does it mean? (no task was running).&lt;/P&gt;</description>
    <pubDate>Wed, 18 Nov 2020 10:34:44 GMT</pubDate>
    <dc:creator>maubry</dc:creator>
    <dc:date>2020-11-18T10:34:44Z</dc:date>
    <item>
      <title>gplot PNG files stored in a wrong folder</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699381#M24672</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm new with SAS. One of my users encounter the following issue:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When he ran a EG Project, the run is blocked when a graph should be produced.&lt;/P&gt;&lt;P&gt;And I don't understand why it is blocked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I noticed some PNG files (gplotxxx.png) are stored in SAS/Config/Lev1/SASApp.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you have any ideas on how I can resolve these issues.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Tue, 17 Nov 2020 07:48:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699381#M24672</guid>
      <dc:creator>maubry</dc:creator>
      <dc:date>2020-11-17T07:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: gplot PNG files stored in a wrong folder</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699392#M24673</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/293686"&gt;@maubry&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;first up it is always helpful to post the exact error message (of course redacting file paths were necessary) and post an example coding so it is easier to see the context of your problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The error tells you that your user can not access that location (write access is necessary) but it is understandable that you wouldn't want to give users write access to that location as there are a lot of config and other important files stored there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So what you can do is have your user change up there coding to specify a concrete path where SAS should store the image - something like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options printerpath=png nodate;
ods html close;
ods printer file="~/test.png";
proc sgplot data=sashelp.stocks
  (where=(date &amp;gt;= "01jan2000"d and stock = "IBM"));
  title "Stock Trend";
  series x=date y=close;
  series x=date y=low;
  series x=date y=high;
run;
ods printer close;
ods html file="~/test.html";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Here you can find more information on it:&amp;nbsp;&lt;A href="https://go.documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=graphref&amp;amp;docsetTarget=n09h3f7dy6lxzcn137bo6oe3wjx3.htm&amp;amp;locale=en"&gt;https://go.documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.5&amp;amp;docsetId=graphref&amp;amp;docsetTarget=n09h3f7dy6lxzcn137bo6oe3wjx3.htm&amp;amp;locale=en&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;David&lt;/P&gt;</description>
      <pubDate>Tue, 17 Nov 2020 08:13:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699392#M24673</guid>
      <dc:creator>DavidHD</dc:creator>
      <dc:date>2020-11-17T08:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: gplot PNG files stored in a wrong folder</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699400#M24674</link>
      <description>Hi David,&lt;BR /&gt;&lt;BR /&gt;thanks for your answer. I think there are 2 separate issues:&lt;BR /&gt;&lt;BR /&gt;-1- EG is freezing when a graph should be produced&lt;BR /&gt;-2- PNG files are stored in a wrong folder&lt;BR /&gt;&lt;BR /&gt;For both issues, I don't have any error messages. The first point is the most important for me but there is no code. The user created "Graph" in EG with the Wizard.&lt;BR /&gt;</description>
      <pubDate>Tue, 17 Nov 2020 08:36:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699400#M24674</guid>
      <dc:creator>maubry</dc:creator>
      <dc:date>2020-11-17T08:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: gplot PNG files stored in a wrong folder</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699404#M24675</link>
      <description>Could you try the coding I provided you with above to see if that works?&lt;BR /&gt;When you say it freezes do you have to kill the EG process?&lt;BR /&gt;In the EG-project if you click on the Graph Wizard you can right-click and extract code - are you able to post this here for further diagnosis?</description>
      <pubDate>Tue, 17 Nov 2020 08:42:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699404#M24675</guid>
      <dc:creator>DavidHD</dc:creator>
      <dc:date>2020-11-17T08:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: gplot PNG files stored in a wrong folder</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699405#M24676</link>
      <description>&lt;P&gt;Normal users must not have write-access to SAS/Config/Lev1/SASApp. So the first step is to shut down the whole system and apply the security admin guide. If the guide is not applied any user can cause serious damage to the configuration.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Nov 2020 08:42:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699405#M24676</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2020-11-17T08:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: gplot PNG files stored in a wrong folder</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699729#M24677</link>
      <description>&lt;P&gt;Hi Andreas,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your answer. I will do it but at first, I've to fix the issue first.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2020 10:30:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699729#M24677</guid>
      <dc:creator>maubry</dc:creator>
      <dc:date>2020-11-18T10:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: gplot PNG files stored in a wrong folder</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699730#M24678</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/336811"&gt;@DavidHD&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;by freezing, it means we have to kill EG.&lt;BR /&gt;I read logs:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;EG logs: I found some errors due to some access to shared folders. But there were not used by graphs&lt;/LI&gt;&lt;LI&gt;Project Log: no errors&lt;/LI&gt;&lt;LI&gt;Worskpace logs: no errors.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;for your information, graph stay in yellow. What does it mean? (no task was running).&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2020 10:34:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699730#M24678</guid>
      <dc:creator>maubry</dc:creator>
      <dc:date>2020-11-18T10:34:44Z</dc:date>
    </item>
    <item>
      <title>Re: gplot PNG files stored in a wrong folder</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699731#M24679</link>
      <description>&lt;P&gt;I don't try your code because I can't access to the EG Project. I need to contact the user when he's available. I'll do that with him.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2020 10:37:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699731#M24679</guid>
      <dc:creator>maubry</dc:creator>
      <dc:date>2020-11-18T10:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: gplot PNG files stored in a wrong folder</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699740#M24680</link>
      <description>Ok that sounds odd - this to me suggests that there is something else going on other then just the placing of the image because EG shouldn't freeze up like that, because of a missing permission.&lt;BR /&gt;&lt;BR /&gt;Yellow means running or waiting to be run - that it stays yellow is probably just a consequence of EG freezing up.&lt;BR /&gt;&lt;BR /&gt;Please let me know if your user ran the sample coding and what the result was. If the same thing happens, I suggest that you contact SAS Support.</description>
      <pubDate>Wed, 18 Nov 2020 11:40:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/699740#M24680</guid>
      <dc:creator>DavidHD</dc:creator>
      <dc:date>2020-11-18T11:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: gplot PNG files stored in a wrong folder</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/700141#M24682</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/336811"&gt;@DavidHD&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have made a test this morning. We ran the EG Project step by step. Everything working fine before graph. After the last query builder, there are 2 graph. We ran the 1st graph and it works.&lt;/P&gt;&lt;P&gt;But by running the 2nd graph, it takes time..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I read the log more in depth and I found something:&lt;/P&gt;&lt;P&gt;the graph is looping and it is waiting for something.&lt;/P&gt;&lt;P&gt;What I saw in the Enterprise Guide log is many lines like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;DEBUG SAS.EG.JobManagement.Adapters.WorkspaceExecutor[(null)] - SafeCheckIfServerIsAlive() - Entering
DEBUG SAS.BI.SASComb.Method[(null)] - InvokeMethod::Async
DEBUG SAS.BI.SASComb.Method[(null)] - Leaving for Async
DEBUG SAS.EG.JobManagement.Adapters.WorkspaceExecutor[(null)] - SafeCheckIfServerIsAlive() - Leaving&lt;/PRE&gt;&lt;P&gt;Any ideas?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 08:52:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/700141#M24682</guid>
      <dc:creator>maubry</dc:creator>
      <dc:date>2020-11-19T08:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: gplot PNG files stored in a wrong folder</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/700194#M24683</link>
      <description>How big is the dataset that is the foundation of this graph? How much time has the user given EG before killing the process?&lt;BR /&gt;&lt;BR /&gt;And which version of EG are you on? Check inside of EG: Help &amp;gt; About SAS Enterprise Guide - copy the Version number please</description>
      <pubDate>Thu, 19 Nov 2020 13:28:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/700194#M24683</guid>
      <dc:creator>DavidHD</dc:creator>
      <dc:date>2020-11-19T13:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: gplot PNG files stored in a wrong folder</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/700204#M24684</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/336811"&gt;@DavidHD&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The dataset is very small (around 49 observations).&lt;/P&gt;&lt;P&gt;The user kills the process after 3 hours...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The version of EG is 7.15 HF9 (7.100.5.6226) (32 bits)&lt;/P&gt;&lt;P&gt;Our SAS version is 9.4M5&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 14:26:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/700204#M24684</guid>
      <dc:creator>maubry</dc:creator>
      <dc:date>2020-11-19T14:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: gplot PNG files stored in a wrong folder</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/700424#M24686</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/336811"&gt;@DavidHD&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know why EG was freezing when producing graphs. It was due to an option in EG: Graph Format.&lt;BR /&gt;You can find this option:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;either in Tools -&amp;gt; Option -&amp;gt; Results -&amp;gt; Graph&lt;/LI&gt;&lt;LI&gt;either in the properties of the graph (right clic -&amp;gt; Properties -&amp;gt; Results -&amp;gt; Edit)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Graph Format was configured with 'ActiveX' engine. It means a process is launched on the compute server but this process is freezing. Maybe I've to apply a hotfix for that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;By changing Graph Format from 'ActiveX' to 'PNG', the EG project runs successfully.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks for your help.&lt;/P&gt;&lt;P&gt;Now, I will work to apply the baseline security to avoid gplot files to be stored in /SAS/Config/Lev1.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Nov 2020 10:14:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/700424#M24686</guid>
      <dc:creator>maubry</dc:creator>
      <dc:date>2020-11-20T10:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: gplot PNG files stored in a wrong folder</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/700429#M24687</link>
      <description>&lt;P&gt;The png files in the configuration directory can come from two issues:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;you actually have a permission problem, and the directory is/was writable for end users&lt;/LI&gt;
&lt;LI&gt;somebody ran a workspace server with the SAS installation user, which you MUST NOT DO.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;IIRC, the second should also not be possible because the SAS installation user does not end up in the metadata per default.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Nov 2020 10:28:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/700429#M24687</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-11-20T10:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: gplot PNG files stored in a wrong folder</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/700575#M24688</link>
      <description>&lt;P&gt;Hello Kurt,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I actually have a permission problem, and the directory is writable for end users.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your answser.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;</description>
      <pubDate>Fri, 20 Nov 2020 18:10:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/700575#M24688</guid>
      <dc:creator>maubry</dc:creator>
      <dc:date>2020-11-20T18:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: gplot PNG files stored in a wrong folder</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/700579#M24689</link>
      <description>&lt;P&gt;OOPS.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Nov 2020 18:15:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/gplot-PNG-files-stored-in-a-wrong-folder/m-p/700579#M24689</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-11-20T18:15:58Z</dc:date>
    </item>
  </channel>
</rss>

