<?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: Is there a way to tell which procs you have in Enterprise Guide in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761508#M39309</link>
    <description>I do that a lot. It is how I found out I could not run the simulation book I bought since we did not have PROC IML</description>
    <pubDate>Fri, 13 Aug 2021 22:04:18 GMT</pubDate>
    <dc:creator>noetsi</dc:creator>
    <dc:date>2021-08-13T22:04:18Z</dc:date>
    <item>
      <title>Is there a way to tell which procs you have in Enterprise Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761332#M39294</link>
      <description>&lt;P&gt;I often want to find out if a specific proc is in our enterprise guide or not. Is there any easy way to do this. I know this is the same as finding if you have it in "regular" SAS whatever they call that &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; but I use EG almost entirely.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 02:53:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761332#M39294</guid>
      <dc:creator>noetsi</dc:creator>
      <dc:date>2021-08-13T02:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to tell which procs you have in Enterprise Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761334#M39295</link>
      <description>&lt;P&gt;The easiest way is just to try it:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;34         proc NotFound;
ERROR: Procedure NOTFOUND not found.
35         run;&lt;/PRE&gt;</description>
      <pubDate>Fri, 13 Aug 2021 03:02:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761334#M39295</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-08-13T03:02:35Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to tell which procs you have in Enterprise Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761341#M39296</link>
      <description>&lt;P&gt;It depends on what you mean. If you want to know if it works, use SASKiwi's approach. if you want to find it in the project. I just unzip it and then do a regex search for it. I have a web service that unwinds an EG solution to a temp dir, then scans it using regex for all proc/data step boundaries. It kind of depends on what you want.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 04:07:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761341#M39296</guid>
      <dc:creator>AlanC</dc:creator>
      <dc:date>2021-08-13T04:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to tell which procs you have in Enterprise Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761348#M39297</link>
      <description>&lt;P&gt;Enterprise Guide is your client connecting to a SAS Server where SAS executes. What Proc's are available to you depends on what SAS modules are licensed and installed on the SAS Server.&lt;/P&gt;
&lt;P&gt;proc setinit; will tell you what's licensed, proc&amp;nbsp;&lt;SPAN&gt;product_status; tells you what's installed and the documentation per product then gives you the list of proc's.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Found also this blog &lt;A href="https://blogs.sas.com/content/sgf/2012/11/12/how-to-find-your-sas-version-and-components-list/" target="_self"&gt;here&lt;/A&gt;&amp;nbsp;which you might find interesting.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 04:36:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761348#M39297</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2021-08-13T04:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to tell which procs you have in Enterprise Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761399#M39298</link>
      <description>&lt;P&gt;SAS procs are bundled in "products". For example, PROC MEANS and PROC SGPLOT are part of Base SAS (everyone has it). PROC LOGISTIC is part of SAS/STAT (most people have that), PROC ESM is part of SAS/ETS (time-series/forecasting, special product that not everyone has). If you have a question about a specific proc then you need to know which product it's in, and that can be found in the documentation for that procedure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This code will reveal what &lt;STRONG&gt;products&lt;/STRONG&gt; you have licensed and installed:&lt;/P&gt;
&lt;LI-CODE lang="sas"&gt;proc product_status;
run;&lt;/LI-CODE&gt;
&lt;P&gt;In SAS Enterprise Guide you can also check the server properties-&amp;gt;Software. There's a&amp;nbsp;&lt;STRONG&gt;View SAS Server Products&lt;/STRONG&gt; button:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChrisHemedinger_0-1628856947307.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/62552iE1711E75CCD0FE52/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ChrisHemedinger_0-1628856947307.png" alt="ChrisHemedinger_0-1628856947307.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Click it to see a list like this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ChrisHemedinger_1-1628856973662.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/62553i558E8A3B387B885E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ChrisHemedinger_1-1628856973662.png" alt="ChrisHemedinger_1-1628856973662.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 12:19:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761399#M39298</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2021-08-13T12:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to tell which procs you have in Enterprise Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761507#M39308</link>
      <description>i don't see what you reference. I have libraries and files and the OLAP but nothing called SASAP_WFA . i tried to past a picture of mine, but it won't let me.&lt;BR /&gt;But a more pertinent issue is I don't know what procs are in what products. Is there a list of this somewhere. I have the following products&lt;BR /&gt;&lt;BR /&gt;For Base SAS Software ...&lt;BR /&gt;   Custom version information: 9.4_M6&lt;BR /&gt;   Image version information: 9.04.01M6P110718&lt;BR /&gt;For SAS/STAT ...&lt;BR /&gt;   Custom version information: 15.1&lt;BR /&gt;For SAS/GRAPH ...&lt;BR /&gt;   Custom version information: 9.4_M6&lt;BR /&gt;For SAS/ETS ...&lt;BR /&gt;   Custom version information: 15.1&lt;BR /&gt;For SAS/QC ...&lt;BR /&gt;   Custom version information: 15.1&lt;BR /&gt;For High Performance Suite ...&lt;BR /&gt;   Custom version information: 2.2_M7&lt;BR /&gt;For SAS/ACCESS Interface to PC Files ...&lt;BR /&gt;   Custom version information: 9.4_M6&lt;BR /&gt;For SAS/ACCESS Interface to ODBC ...&lt;BR /&gt;   Custom version information: 9.4_M6&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Aug 2021 22:01:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761507#M39308</guid>
      <dc:creator>noetsi</dc:creator>
      <dc:date>2021-08-13T22:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to tell which procs you have in Enterprise Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761508#M39309</link>
      <description>I do that a lot. It is how I found out I could not run the simulation book I bought since we did not have PROC IML</description>
      <pubDate>Fri, 13 Aug 2021 22:04:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761508#M39309</guid>
      <dc:creator>noetsi</dc:creator>
      <dc:date>2021-08-13T22:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to tell which procs you have in Enterprise Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761519#M39310</link>
      <description>&lt;P&gt;To insert pictures you need to upload them first using the camera icon. Look at the properties of SASApp or what ever is the first server name in your EG server list.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 23:11:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761519#M39310</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-08-13T23:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to tell which procs you have in Enterprise Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761589#M39316</link>
      <description>&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/allprodsproc/p1vzipzy6l8so0n1gbbh3ae63czb.htm" target="_blank"&gt;SAS Help Center: SAS Procedures by Product&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Aug 2021 16:52:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Is-there-a-way-to-tell-which-procs-you-have-in-Enterprise-Guide/m-p/761589#M39316</guid>
      <dc:creator>AlanC</dc:creator>
      <dc:date>2021-08-14T16:52:46Z</dc:date>
    </item>
  </channel>
</rss>

