<?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: Determining the remote SAS version in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Determining-the-remote-SAS-version/m-p/238259#M43757</link>
    <description>&lt;P&gt;The same, just rsubmit that code.&lt;/P&gt;</description>
    <pubDate>Tue, 08 Dec 2015 13:53:57 GMT</pubDate>
    <dc:creator>LinusH</dc:creator>
    <dc:date>2015-12-08T13:53:57Z</dc:date>
    <item>
      <title>Determining the remote SAS version</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Determining-the-remote-SAS-version/m-p/238223#M43745</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;I am using SAS 9.3 on my Windows system through which I can connect to SAS 9.3/9.4 on the remote UNIX server.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For determing the SAS version of the PC SAS, I am using statement:-&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;version=symget("sysver");&lt;BR /&gt;textentry1.text=version;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But I want to determine the SAS version on UNIX server to which my PC SAS is connected to. Please suggest code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 07:52:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Determining-the-remote-SAS-version/m-p/238223#M43745</guid>
      <dc:creator>Aditi24</dc:creator>
      <dc:date>2015-12-08T07:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: Determining the remote SAS version</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Determining-the-remote-SAS-version/m-p/238230#M43748</link>
      <description>You can submit the same code via RSUBMIT?</description>
      <pubDate>Tue, 08 Dec 2015 09:31:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Determining-the-remote-SAS-version/m-p/238230#M43748</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-12-08T09:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: Determining the remote SAS version</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Determining-the-remote-SAS-version/m-p/238246#M43755</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza﻿&lt;/a&gt;: I am using the below code snippet in my SCL file:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;submit continue;                                                                                                                                                                                                                                                
rsubmit;                                                                                                                                                                                                                                                        
%let sas_ver;                                                                                                                                                                                                                                                   
                                                                                                                                                                                                                                                                
    data _null_;                                                                                                                                                                                                                                                
      sas_ver= "&amp;amp;sysver";                                                                                                                                                                                                                                       
      run;                                                                                                                                                                                                                                                      
endrsubmit;                                                                                                                                                                                                                                                     
endsubmit;                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                                
textentry1.text=sas_ver; 
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But the value is not getting populated in the textentry. Please help.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 12:20:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Determining-the-remote-SAS-version/m-p/238246#M43755</guid>
      <dc:creator>Aditi24</dc:creator>
      <dc:date>2015-12-08T12:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: Determining the remote SAS version</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Determining-the-remote-SAS-version/m-p/238259#M43757</link>
      <description>&lt;P&gt;The same, just rsubmit that code.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 13:53:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Determining-the-remote-SAS-version/m-p/238259#M43757</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2015-12-08T13:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: Determining the remote SAS version</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Determining-the-remote-SAS-version/m-p/238301#M43774</link>
      <description>Your SAS code is incorrect, it doesn't do anything. If you want to create a macro variable use CALL SYMPUTX and or SYSRPUT/SYSLPUT to move the macro variable to the local drive from the server. &lt;BR /&gt;&lt;BR /&gt;Your current code creates a variable (not a macro variable) but you don't create a dataset so it doesn't do anything over.</description>
      <pubDate>Tue, 08 Dec 2015 15:44:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Determining-the-remote-SAS-version/m-p/238301#M43774</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-12-08T15:44:17Z</dc:date>
    </item>
  </channel>
</rss>

