<?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: Any way to fix display errors (Ï¥@ etc..) when looking at hex values in SAS EG? in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Any-way-to-fix-display-errors-%C3%8F-etc-when-looking-at-hex-values/m-p/361818#M23774</link>
    <description>&lt;P&gt;Yeah, the appSettings stub wasn't included in the EG 5.1 SEGuide.exe.config file, but the option does work in 5.1.&amp;nbsp; You should be able to copy the appSettings example above and paste it immediately above the &amp;lt;/configuration&amp;gt; line in the SEGuide.exe.config file.&lt;/P&gt;</description>
    <pubDate>Thu, 25 May 2017 23:20:44 GMT</pubDate>
    <dc:creator>CaseySmith</dc:creator>
    <dc:date>2017-05-25T23:20:44Z</dc:date>
    <item>
      <title>Any way to fix display errors (Ï¥@ etc..) when looking at hex values in SAS EG?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Any-way-to-fix-display-errors-%C3%8F-etc-when-looking-at-hex-values/m-p/361081#M23731</link>
      <description>&lt;P&gt;Are there any ways to improve readability of data stored as hex values in EG?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I prefer to use EG because I find the readability/code editor more user friendly than base SAS but the display of this data as a bunch of ascii text makes it less than ideal.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Obviously I can read in the formats, but since swapping between 32/64bit format issues are an on-going pain I'd like to know I'm looking at "a1"x not "å" as a bit of a stop gap measure to alleviate the burden and at least make it on par with Base SAS.&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2017 08:30:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Any-way-to-fix-display-errors-%C3%8F-etc-when-looking-at-hex-values/m-p/361081#M23731</guid>
      <dc:creator>jp</dc:creator>
      <dc:date>2017-05-24T08:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: Any way to fix display errors (Ï¥@ etc..) when looking at hex values in SAS EG?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Any-way-to-fix-display-errors-%C3%8F-etc-when-looking-at-hex-values/m-p/361097#M23735</link>
      <description>&lt;P&gt;Assign $HEX formats to your strings.&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2017 09:00:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Any-way-to-fix-display-errors-%C3%8F-etc-when-looking-at-hex-values/m-p/361097#M23735</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-05-24T09:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: Any way to fix display errors (Ï¥@ etc..) when looking at hex values in SAS EG?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Any-way-to-fix-display-errors-%C3%8F-etc-when-looking-at-hex-values/m-p/361369#M23753</link>
      <description>I'm getting a type of productionised data from the business, so it's not as if I can easily change the process. &lt;BR /&gt;&lt;BR /&gt;Also since there is no issue in Base SAS there is little desire to change the existing way things are done.</description>
      <pubDate>Wed, 24 May 2017 19:55:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Any-way-to-fix-display-errors-%C3%8F-etc-when-looking-at-hex-values/m-p/361369#M23753</guid>
      <dc:creator>jp</dc:creator>
      <dc:date>2017-05-24T19:55:52Z</dc:date>
    </item>
    <item>
      <title>Re: Any way to fix display errors (Ï¥@ etc..) when looking at hex values in SAS EG?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Any-way-to-fix-display-errors-%C3%8F-etc-when-looking-at-hex-values/m-p/361386#M23754</link>
      <description>&lt;P&gt;I believe this undocumented config file option will accomplish what you desire...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you open the SEGuide.exe.config file in the EG installation directory (ex. C:\Program Files\SASHome\SASEnterpriseGuide\7.1), you'll see a commented-out "appSettings" element.&amp;nbsp; Remove the comment&amp;nbsp;region demarcators ("&amp;lt;!--" and "--&amp;gt;") from around the appSettings element and specifiy the key "FormatValuesAsNeeded" with the value "false".&amp;nbsp; It should look like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;lt;appSettings&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;lt;add key="FormatValuesAsNeeded" value="false" /&amp;gt;&lt;BR /&gt;&amp;lt;/appSettings&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now, after you save the SEGuide.exe.config file and restart EG, that config file option will instruct EG to read the formatted values directly from the server rather than formatting the raw values just-in-time (as a performance enhancement for wide data).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Casey&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2017 20:29:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Any-way-to-fix-display-errors-%C3%8F-etc-when-looking-at-hex-values/m-p/361386#M23754</guid>
      <dc:creator>CaseySmith</dc:creator>
      <dc:date>2017-05-24T20:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: Any way to fix display errors (Ï¥@ etc..) when looking at hex values in SAS EG?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Any-way-to-fix-display-errors-%C3%8F-etc-when-looking-at-hex-values/m-p/361429#M23755</link>
      <description>I'm using 5.1, and could upgrade to 6.4. I don't see this commented code in the config file - I will try adding it to the XML to see if it helps.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 24 May 2017 23:33:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Any-way-to-fix-display-errors-%C3%8F-etc-when-looking-at-hex-values/m-p/361429#M23755</guid>
      <dc:creator>jp</dc:creator>
      <dc:date>2017-05-24T23:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: Any way to fix display errors (Ï¥@ etc..) when looking at hex values in SAS EG?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Any-way-to-fix-display-errors-%C3%8F-etc-when-looking-at-hex-values/m-p/361818#M23774</link>
      <description>&lt;P&gt;Yeah, the appSettings stub wasn't included in the EG 5.1 SEGuide.exe.config file, but the option does work in 5.1.&amp;nbsp; You should be able to copy the appSettings example above and paste it immediately above the &amp;lt;/configuration&amp;gt; line in the SEGuide.exe.config file.&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2017 23:20:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Any-way-to-fix-display-errors-%C3%8F-etc-when-looking-at-hex-values/m-p/361818#M23774</guid>
      <dc:creator>CaseySmith</dc:creator>
      <dc:date>2017-05-25T23:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: Any way to fix display errors (Ï¥@ etc..) when looking at hex values in SAS EG?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Any-way-to-fix-display-errors-%C3%8F-etc-when-looking-at-hex-values/m-p/361822#M23776</link>
      <description>&lt;P&gt;Hmm so I might have been unclear, but if I'm reading a dataset stored locally which needs the hex formats to be %include-d in, this fix won't solve the issue correct?&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2017 23:48:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Any-way-to-fix-display-errors-%C3%8F-etc-when-looking-at-hex-values/m-p/361822#M23776</guid>
      <dc:creator>jp</dc:creator>
      <dc:date>2017-05-25T23:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Any way to fix display errors (Ï¥@ etc..) when looking at hex values in SAS EG?</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Any-way-to-fix-display-errors-%C3%8F-etc-when-looking-at-hex-values/m-p/361881#M23780</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15089"&gt;@CaseySmith&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Yeah, the appSettings stub wasn't included in the EG 5.1 SEGuide.exe.config file, but the option does work in 5.1.&amp;nbsp; You should be able to copy the appSettings example above and paste it immediately above the &amp;lt;/configuration&amp;gt; line in the SEGuide.exe.config file.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Could it be that the same would work in version 4.3, or was that option added later in the EG code with version 5?&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 07:03:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Any-way-to-fix-display-errors-%C3%8F-etc-when-looking-at-hex-values/m-p/361881#M23780</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-05-26T07:03:08Z</dc:date>
    </item>
  </channel>
</rss>

