<?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: Behavior change from EG4.1 to EG 4.2 in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Behavior-change-from-EG4-1-to-EG-4-2/m-p/37107#M4596</link>
    <description>I have noticed the same thing.  I had some date macro variables in the titles of my reports that no longer display.  I have not spent much time finding a solution, so if anyone has one it would be greatly appreciated!</description>
    <pubDate>Fri, 18 Jun 2010 12:47:30 GMT</pubDate>
    <dc:creator>Technolero</dc:creator>
    <dc:date>2010-06-18T12:47:30Z</dc:date>
    <item>
      <title>Behavior change from EG4.1 to EG 4.2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Behavior-change-from-EG4-1-to-EG-4-2/m-p/37106#M4595</link>
      <description>Hi all,&lt;BR /&gt;
We've noticed a difference between how EG 4.1 and EG 4.2 generate (or store) session parameters.  &lt;BR /&gt;
&lt;BR /&gt;
EG 4.1 generates this output: &lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;    %put &amp;amp;_CLIENTUSERNAME &amp;amp;_CLIENTMACHINE;&lt;BR /&gt;
nick.welke D03CB4&lt;/B&gt; &lt;BR /&gt;
&lt;BR /&gt;
And EG 4.2 generates this: &lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;    %put &amp;amp;_CLIENTUSERNAME &amp;amp;_CLIENTMACHINE;&lt;BR /&gt;
'nick.welke' 'D03CB4'&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
 Does anyone else get this same result?  Is it something we can disable in 4.2 to remove the quotes?  &lt;BR /&gt;
&lt;BR /&gt;
TIA&lt;BR /&gt;
Nick</description>
      <pubDate>Thu, 17 Jun 2010 17:21:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Behavior-change-from-EG4-1-to-EG-4-2/m-p/37106#M4595</guid>
      <dc:creator>nwelke</dc:creator>
      <dc:date>2010-06-17T17:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: Behavior change from EG4.1 to EG 4.2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Behavior-change-from-EG4-1-to-EG-4-2/m-p/37107#M4596</link>
      <description>I have noticed the same thing.  I had some date macro variables in the titles of my reports that no longer display.  I have not spent much time finding a solution, so if anyone has one it would be greatly appreciated!</description>
      <pubDate>Fri, 18 Jun 2010 12:47:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Behavior-change-from-EG4-1-to-EG-4-2/m-p/37107#M4596</guid>
      <dc:creator>Technolero</dc:creator>
      <dc:date>2010-06-18T12:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: Behavior change from EG4.1 to EG 4.2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Behavior-change-from-EG4-1-to-EG-4-2/m-p/37108#M4597</link>
      <description>Suggestion from SAS Tech Support is:&lt;BR /&gt;
&lt;BR /&gt;
%sysfunc(compress(&amp;amp;_clientusername,%str(%')))&lt;BR /&gt;
&lt;BR /&gt;
Nick, you probably received the same message from Tech Support, but I figured I'd post it here for others to look at, Not sure if the EG developers will offer a less programatic workaround in the future.</description>
      <pubDate>Fri, 18 Jun 2010 13:48:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Behavior-change-from-EG4-1-to-EG-4-2/m-p/37108#M4597</guid>
      <dc:creator>RichardH_sas</dc:creator>
      <dc:date>2010-06-18T13:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: Behavior change from EG4.1 to EG 4.2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Behavior-change-from-EG4-1-to-EG-4-2/m-p/37109#M4598</link>
      <description>Why not using dequote() instead?&lt;BR /&gt;
&lt;BR /&gt;
%let _CLIENTUSERNAME='nick.welke';&lt;BR /&gt;
%put %sysfunc(dequote(&amp;amp;_CLIENTUSERNAME));</description>
      <pubDate>Sat, 19 Jun 2010 18:52:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Behavior-change-from-EG4-1-to-EG-4-2/m-p/37109#M4598</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2010-06-19T18:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: Behavior change from EG4.1 to EG 4.2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Behavior-change-from-EG4-1-to-EG-4-2/m-p/37110#M4599</link>
      <description>One would have to ask why the change? you would think code run in previous versions would be able to run with the same results/output successfully in current versions.&lt;BR /&gt;
&lt;BR /&gt;
Barry

Message was edited by: twocanbazza</description>
      <pubDate>Sun, 20 Jun 2010 20:30:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Behavior-change-from-EG4-1-to-EG-4-2/m-p/37110#M4599</guid>
      <dc:creator>twocanbazza</dc:creator>
      <dc:date>2010-06-20T20:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: Behavior change from EG4.1 to EG 4.2</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Behavior-change-from-EG4-1-to-EG-4-2/m-p/37111#M4600</link>
      <description>I dare say that someone complained about problems with unquoted strings. I wonder if the majority of EG users were happy with the old approach.</description>
      <pubDate>Fri, 02 Jul 2010 00:17:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Behavior-change-from-EG4-1-to-EG-4-2/m-p/37111#M4600</guid>
      <dc:creator>boschy</dc:creator>
      <dc:date>2010-07-02T00:17:26Z</dc:date>
    </item>
  </channel>
</rss>

