<?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 What is the current value of a non global option? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-current-value-of-a-non-global-option/m-p/644083#M192332</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We use proc options, to list the values of global options.&lt;/P&gt;&lt;P&gt;Is there a similar procedure to list the values of procedures' options, etc.&lt;/P&gt;&lt;P&gt;e.g. how can I find out which value for "version=" option is used by the xlsx engine for a given installation beside looking at the SAS online doc?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 29 Apr 2020 20:56:49 GMT</pubDate>
    <dc:creator>xxformat_com</dc:creator>
    <dc:date>2020-04-29T20:56:49Z</dc:date>
    <item>
      <title>What is the current value of a non global option?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-current-value-of-a-non-global-option/m-p/644083#M192332</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We use proc options, to list the values of global options.&lt;/P&gt;&lt;P&gt;Is there a similar procedure to list the values of procedures' options, etc.&lt;/P&gt;&lt;P&gt;e.g. how can I find out which value for "version=" option is used by the xlsx engine for a given installation beside looking at the SAS online doc?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2020 20:56:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-current-value-of-a-non-global-option/m-p/644083#M192332</guid>
      <dc:creator>xxformat_com</dc:creator>
      <dc:date>2020-04-29T20:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: What is the current value of a non global option?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-current-value-of-a-non-global-option/m-p/644090#M192336</link>
      <description>&lt;P&gt;Would proc product_status; run; give you what you need?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://go.documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p167ky4zsoxrn2n1myz6iisao1wc.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en"&gt;https://go.documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p167ky4zsoxrn2n1myz6iisao1wc.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Apr 2020 21:45:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-current-value-of-a-non-global-option/m-p/644090#M192336</guid>
      <dc:creator>JerryV</dc:creator>
      <dc:date>2020-04-29T21:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: What is the current value of a non global option?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-current-value-of-a-non-global-option/m-p/644315#M192444</link>
      <description>Unfortunately not.</description>
      <pubDate>Thu, 30 Apr 2020 17:28:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-current-value-of-a-non-global-option/m-p/644315#M192444</guid>
      <dc:creator>xxformat_com</dc:creator>
      <dc:date>2020-04-30T17:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: What is the current value of a non global option?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-current-value-of-a-non-global-option/m-p/644339#M192449</link>
      <description>&lt;P&gt;How about the function tslvl().&amp;nbsp;&amp;nbsp;&lt;A href="https://go.documentation.sas.com/?docsetId=hostunx&amp;amp;docsetTarget=p0fjexseegel6tn1w5solsj5gofg.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en"&gt;https://go.documentation.sas.com/?docsetId=hostunx&amp;amp;docsetTarget=p0fjexseegel6tn1w5solsj5gofg.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you're using EG you can:&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data a;
set _prodsavail;
licensed=sysprod(prodcode);
  do option='A', 'D', 'E', 'F', 'H', 'I', 'M', 'P', 'S', 'T' ;
    tslvl = tslvl(prodmod,option);
        output;
  end;
run; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Otherwise try:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data b; 
prodcode='prodnum208';	prodmod='sasdbf';
  do option='A', 'D', 'E', 'F', 'H', 'I', 'M', 'P', 'S', 'T' ;
    tslvl = tslvl(prodmod,option);
        output;
  end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 18:07:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-current-value-of-a-non-global-option/m-p/644339#M192449</guid>
      <dc:creator>JerryV</dc:creator>
      <dc:date>2020-04-30T18:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: What is the current value of a non global option?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-current-value-of-a-non-global-option/m-p/644371#M192453</link>
      <description>Thanks for the support. I guess I have not formulate properly my request.&lt;BR /&gt;I'm not looking at the SAS installation product version&lt;BR /&gt;but at procedures' options default value and sas excel... engine default/actual options.&lt;BR /&gt;&lt;BR /&gt;eg. libname ... excel '....xlsx' version=???;&lt;BR /&gt;what is the default/actual version used here? can I find it using a program?</description>
      <pubDate>Thu, 30 Apr 2020 19:28:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-current-value-of-a-non-global-option/m-p/644371#M192453</guid>
      <dc:creator>xxformat_com</dc:creator>
      <dc:date>2020-04-30T19:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: What is the current value of a non global option?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/What-is-the-current-value-of-a-non-global-option/m-p/644414#M192469</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/184742"&gt;@xxformat_com&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Thanks for the support. I guess I have not formulate properly my request.&lt;BR /&gt;I'm not looking at the SAS installation product version&lt;BR /&gt;but at procedures' options default value and sas excel... engine default/actual options.&lt;BR /&gt;&lt;BR /&gt;eg. libname ... excel '....xlsx' version=???;&lt;BR /&gt;what is the default/actual version used here? can I find it using a program?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The answer is NO.&amp;nbsp; &amp;nbsp;In general since you are writing the code just remember what you wrote.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let print_noprint = noprint;
proc sql &amp;amp;print_noprint;
...&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Procedures are written to preform what they perform.&amp;nbsp; There is no concept of telling you want they are doing.&amp;nbsp; You tell them what to do.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is some metadata available for LIBREF and FILEREF values by querying the DICTIONARY tables, but they do not normally have all of the options.&amp;nbsp; But you should be able to find out what path they are pointing to.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Apr 2020 23:46:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/What-is-the-current-value-of-a-non-global-option/m-p/644414#M192469</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-04-30T23:46:17Z</dc:date>
    </item>
  </channel>
</rss>

