<?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: How to identify the version of SAS embedded EG in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-to-identify-the-version-of-SAS-embedded-EG/m-p/106724#M29728</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Cynthia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It worked well and I identified my SAS version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mirisage&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Jul 2012 00:50:51 GMT</pubDate>
    <dc:creator>Mirisage</dc:creator>
    <dc:date>2012-07-16T00:50:51Z</dc:date>
    <item>
      <title>How to identify the version of SAS embedded EG</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-identify-the-version-of-SAS-embedded-EG/m-p/106720#M29724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Forum,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using SAS EG 4.3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just double click EG Icon; open EG;then get the SAS editor embedded in it; and then do the SAS work as if I would do in a SAS PC version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to know what is the exact version of SAS I am working within&amp;nbsp; the EG 4.3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone please let me know how to find it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mirisage &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2012 13:28:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-identify-the-version-of-SAS-embedded-EG/m-p/106720#M29724</guid>
      <dc:creator>Mirisage</dc:creator>
      <dc:date>2012-07-13T13:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify the version of SAS embedded EG</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-identify-the-version-of-SAS-embedded-EG/m-p/106721#M29725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; In your code window, display the GLOBAL macro variables for system information. %PUT will show output in the log. For example, in my log display, I have SAS 9.3 showing as the short version of SAS. If you look at the long value from &amp;amp;SYSVLONG4, you will see that I have release 1 from 06072011. I included the other information because if you ever need to open a track with Tech Support, they will want your Site #, and the CPU info, as well as the version info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Program to submit:&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;%put ** my information;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;%put short version: &amp;amp;sysver;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;%put version: &amp;amp;sysvlong4;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;%put site #: &amp;amp;syssite;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;%put cpu: &amp;amp;sysscp &amp;amp;sysscpl;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Log display:&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: terminal,monaco;"&gt;332&amp;nbsp; %put ** my information;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: terminal,monaco;"&gt;** my information&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: terminal,monaco;"&gt;333&amp;nbsp; %put short version: &amp;amp;sysver;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: terminal,monaco;"&gt;short version: &lt;SPAN style="color: #ff00ff;"&gt;9.3&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: terminal,monaco;"&gt;334&amp;nbsp; %put version: &amp;amp;sysvlong4;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: terminal,monaco;"&gt;version: &lt;SPAN style="color: #ff00ff;"&gt;9.03.01M0P06072011&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: terminal,monaco;"&gt;335&amp;nbsp; %put site #: &amp;amp;syssite;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: terminal,monaco;"&gt;site #: 0070068130&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: terminal,monaco;"&gt;336&amp;nbsp; %put cpu: &amp;amp;sysscp &amp;amp;sysscpl;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: terminal,monaco;"&gt;cpu: WIN X64_7PRO&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2012 14:29:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-identify-the-version-of-SAS-embedded-EG/m-p/106721#M29725</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2012-07-13T14:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify the version of SAS embedded EG</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-identify-the-version-of-SAS-embedded-EG/m-p/106722#M29726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #000080; font-size: 10pt; font-family: Courier New;"&gt;product_status&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;STRONG style=": ; color: #000080; font-size: 10pt; font-family: Courier New;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;Log:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;For Base SAS Software ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Custom version information: 9.3_M1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Image version information: 9.03.01M1P110211&lt;/P&gt;&lt;P&gt;For SAS/STAT ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Custom version information: 9.3_M1&lt;/P&gt;&lt;P&gt;For SAS/GRAPH ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Custom version information: 9.3_M1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2012 18:44:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-identify-the-version-of-SAS-embedded-EG/m-p/106722#M29726</guid>
      <dc:creator>RLC</dc:creator>
      <dc:date>2012-07-13T18:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify the version of SAS embedded EG</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-identify-the-version-of-SAS-embedded-EG/m-p/106723#M29727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi RLC,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I submitted Cynthia's code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to run your code as well which is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: Courier New; color: #000080; font-size: 10pt;"&gt;product_status&lt;/STRONG&gt;&lt;SPAN style="font-family: Courier New; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;STRONG style="font-family: Courier New; color: #000080; font-size: 10pt;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="font-family: Courier New; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, it seems something is missing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you know what is missing please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Mirisage&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2012 00:33:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-identify-the-version-of-SAS-embedded-EG/m-p/106723#M29727</guid>
      <dc:creator>Mirisage</dc:creator>
      <dc:date>2012-07-16T00:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify the version of SAS embedded EG</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-identify-the-version-of-SAS-embedded-EG/m-p/106724#M29728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Cynthia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It worked well and I identified my SAS version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mirisage&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2012 00:50:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-identify-the-version-of-SAS-embedded-EG/m-p/106724#M29728</guid>
      <dc:creator>Mirisage</dc:creator>
      <dc:date>2012-07-16T00:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify the version of SAS embedded EG</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-identify-the-version-of-SAS-embedded-EG/m-p/106725#M29729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Needs the word proc in front to make it a valid SAS statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: Courier New; color: #000080; font-size: 10pt;"&gt;proc product_status&lt;/STRONG&gt;&lt;SPAN style="font-family: Courier New; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;STRONG style="font-family: Courier New; color: #000080; font-size: 10pt;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="font-family: Courier New; font-size: 10pt;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2012 00:52:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-identify-the-version-of-SAS-embedded-EG/m-p/106725#M29729</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2012-07-16T00:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify the version of SAS embedded EG</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-identify-the-version-of-SAS-embedded-EG/m-p/106726#M29730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much SASKiwi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mirisage&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2012 01:01:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-identify-the-version-of-SAS-embedded-EG/m-p/106726#M29730</guid>
      <dc:creator>Mirisage</dc:creator>
      <dc:date>2012-07-16T01:01:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to identify the version of SAS embedded EG</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-identify-the-version-of-SAS-embedded-EG/m-p/106727#M29731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oui Je suis allé trop vite...&lt;/P&gt;&lt;P&gt;Mea culpa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2012 07:43:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-identify-the-version-of-SAS-embedded-EG/m-p/106727#M29731</guid>
      <dc:creator>RLC</dc:creator>
      <dc:date>2012-07-16T07:43:29Z</dc:date>
    </item>
  </channel>
</rss>

