<?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: Enterprise Guide - Proc Gchart issue in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Enterprise-Guide-Proc-Gchart-issue/m-p/507525#M1459</link>
    <description>&lt;P&gt;Show us the code your trying to run.&lt;/P&gt;</description>
    <pubDate>Thu, 25 Oct 2018 16:58:02 GMT</pubDate>
    <dc:creator>SuryaKiran</dc:creator>
    <dc:date>2018-10-25T16:58:02Z</dc:date>
    <item>
      <title>Enterprise Guide - Proc Gchart issue</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Enterprise-Guide-Proc-Gchart-issue/m-p/507523#M1458</link>
      <description>&lt;P&gt;Recently we replaced our SAS licences and today were seeing an issues in Enterprise Guide when it tries to produce a chart&lt;/P&gt;&lt;P&gt;using Proc Gchart. Has anyone seen issues like this after stopping SAS and replacing licensing information?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is what was seen in the Log:&lt;/P&gt;&lt;DIV&gt;NOTE: 10833 bytes written to /sas/work/SAS_workE6BA00630052_efkxdwn11/SAS_workE79A00630052_efkxdwn11/gchart3.png.&lt;/DIV&gt;&lt;DIV&gt;ERROR: Insufficient authorization to access /sas/BIServer/config94/Lev4/SASApp/gchart.png.&lt;/DIV&gt;&lt;DIV&gt;ERROR: Physical file does not exist, /sas/BIServer/config94/Lev4/SASApp/gchart.png.&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mike Adams&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 16:54:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Enterprise-Guide-Proc-Gchart-issue/m-p/507523#M1458</guid>
      <dc:creator>mjadams1</dc:creator>
      <dc:date>2018-10-25T16:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: Enterprise Guide - Proc Gchart issue</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Enterprise-Guide-Proc-Gchart-issue/m-p/507525#M1459</link>
      <description>&lt;P&gt;Show us the code your trying to run.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 16:58:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Enterprise-Guide-Proc-Gchart-issue/m-p/507525#M1459</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-10-25T16:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: Enterprise Guide - Proc Gchart issue</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Enterprise-Guide-Proc-Gchart-issue/m-p/507548#M1460</link>
      <description>&lt;P&gt;Here is the code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;goptions device=png;&lt;BR /&gt;ODS LISTING CLOSE;&lt;BR /&gt;ODS NOPROCTITLE;&lt;/P&gt;&lt;P&gt;ODS HTML(ID=EGHTMLA)&lt;BR /&gt;FILE=&lt;BR /&gt;"/usr/HTTPServer/htdocs/sasweb/300mm/reitmeyer/dynamic_boost_lots_boosted.html" (TITLE='Dynamic DDMS Boost')&lt;BR /&gt;HEADTEXT="&amp;lt;style&amp;gt;p,hr {display:none}&amp;lt;/style&amp;gt; &amp;lt;meta http-equiv=""refresh"" content=""300""&amp;gt;"&lt;BR /&gt;STYLE=Meadow;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;%_sas_pushchartsize(700,360);&lt;BR /&gt;PATTERN1 COLOR=CXFF9900;&lt;BR /&gt;PATTERN2 COLOR = _STYLE_;&lt;BR /&gt;PATTERN3 COLOR = _STYLE_;&lt;BR /&gt;PATTERN4 COLOR = _STYLE_;&lt;BR /&gt;PATTERN5 COLOR = _STYLE_;&lt;BR /&gt;PATTERN6 COLOR = _STYLE_;&lt;BR /&gt;PATTERN7 COLOR = _STYLE_;&lt;BR /&gt;PATTERN8 COLOR = _STYLE_;&lt;BR /&gt;PATTERN9 COLOR = _STYLE_;&lt;BR /&gt;PATTERN10 COLOR = _STYLE_;&lt;BR /&gt;PATTERN11 COLOR = _STYLE_;&lt;BR /&gt;PATTERN12 COLOR = _STYLE_;&lt;BR /&gt;Axis1&lt;BR /&gt;STYLE=1&lt;BR /&gt;WIDTH=1&lt;BR /&gt;MINOR=NONE&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;;&lt;BR /&gt;Axis2&lt;BR /&gt;STYLE=1&lt;BR /&gt;WIDTH=1&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;;&lt;BR /&gt;TITLE;&lt;BR /&gt;TITLE1 "Lots Boosted";&lt;BR /&gt;TITLE2 "Updated on %TRIM(%QSYSFUNC(DATE(), NLDATE20.)) at %TRIM(%SYSFUNC(TIME(), TIMEAMPM12.))";&lt;BR /&gt;FOOTNOTE;&lt;/P&gt;&lt;P&gt;PROC GCHART DATA=QueryHistoryFile;&lt;BR /&gt;VBAR Date&lt;BR /&gt;/&lt;BR /&gt;SUMVAR=Count_Boost&lt;BR /&gt;CLIPREF&lt;BR /&gt;FRAME DISCRETE&lt;BR /&gt;TYPE=SUM&lt;BR /&gt;OUTSIDE=SUM&lt;BR /&gt;COUTLINE=CXFF6600&lt;BR /&gt;RAXIS=AXIS1&lt;BR /&gt;MAXIS=AXIS2;&lt;BR /&gt;RUN; QUIT;&lt;/P&gt;&lt;P&gt;TITLE; FOOTNOTE;&lt;BR /&gt;%_sas_popchartsize;&lt;BR /&gt;PATTERN1;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ODS HTML CLOSE;ODS _ALL_ CLOSE;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 18:47:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Enterprise-Guide-Proc-Gchart-issue/m-p/507548#M1460</guid>
      <dc:creator>mjadams1</dc:creator>
      <dc:date>2018-10-25T18:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: Enterprise Guide - Proc Gchart issue</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Enterprise-Guide-Proc-Gchart-issue/m-p/507562#M1461</link>
      <description>&lt;P&gt;You may need to share the code for the %_sas_pushchartsize macro. Or run the program with OPTIONS MPRINT; so the LOG shows more detail of generated code and the error in relation to submitted code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the name I would guess you may be using GOPTIONS statement to set display size. If this also sets values for GSFNAME or other of the graphic output file statements the path might be relative to execution and so is attempting to write in the executable directory of the SAS install instead of a location you have write permissions to.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When we ask for the code that was run best is to copy the submitted code and warning or error messages from LOG and then paste into a code box opened using the forum's {I} menu icon. The main message windows will reformat code and error messages possibly making any diagnostics that appear in the log out of place.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Oct 2018 20:06:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Enterprise-Guide-Proc-Gchart-issue/m-p/507562#M1461</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-10-25T20:06:13Z</dc:date>
    </item>
  </channel>
</rss>

