<?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: Prompts in Base 9.4 (DMS)? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Prompts-in-Base-9-4-DMS/m-p/322524#M71355</link>
    <description>But typically %WINDOW will not work with EG installations. So if the developer has SAS DMS, but the end users have EG, then %WINDOW might not be the best choice.&lt;BR /&gt; &lt;BR /&gt;cynthia</description>
    <pubDate>Wed, 04 Jan 2017 22:30:34 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2017-01-04T22:30:34Z</dc:date>
    <item>
      <title>Prompts in Base 9.4 (DMS)?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Prompts-in-Base-9-4-DMS/m-p/321918#M71152</link>
      <description>&lt;P&gt;Can we create prompts in SAS 9.4 as we do in SAS enetrprise guide&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jan 2017 11:05:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Prompts-in-Base-9-4-DMS/m-p/321918#M71152</guid>
      <dc:creator>Rohit12</dc:creator>
      <dc:date>2017-01-03T11:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Prompts-in-Base-9-4-DMS/m-p/321922#M71155</link>
      <description>&lt;P&gt;SAS 9.4 is a version, while SAS EG is a tool to access SAS.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS EG can use SAS 9.4.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you referring to SAS Studio? Or Base SAS?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jan 2017 09:29:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Prompts-in-Base-9-4-DMS/m-p/321922#M71155</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-01-02T09:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Prompts-in-Base-9-4-DMS/m-p/321923#M71156</link>
      <description>&lt;P&gt;I am refering to base SAS . I need to create prompts in SAS 9.4 tool&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jan 2017 09:32:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Prompts-in-Base-9-4-DMS/m-p/321923#M71156</guid>
      <dc:creator>Rohit12</dc:creator>
      <dc:date>2017-01-02T09:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Prompts-in-Base-9-4-DMS/m-p/321924#M71157</link>
      <description>&lt;P&gt;SAS 9.4 doesn't have prompts the same way EG does. You can look at %Windows for Base SAS. There is a multitude of papers on lexjansen.com with sample code.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jan 2017 09:39:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Prompts-in-Base-9-4-DMS/m-p/321924#M71157</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-01-02T09:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Prompts-in-Base-9-4-DMS/m-p/321957#M71161</link>
      <description>DMS (Display Manager System) or in everyday language Base SAS (UI) is no longer developed, so I would recommend not to develop any UI on top of it.</description>
      <pubDate>Mon, 02 Jan 2017 16:05:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Prompts-in-Base-9-4-DMS/m-p/321957#M71161</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2017-01-02T16:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.4</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Prompts-in-Base-9-4-DMS/m-p/321980#M71167</link>
      <description>Hi:&lt;BR /&gt;  Typically, if you are creating stored processes, with the intent of using the Prompting interface, then any macro variables you use in your program can be defined as prompts when you register the stored process. However, the Display Manager interface does not have a way to define prompts. The Enterprise Guide interface allows you to define prompts that can be used through the entire project and EG also has the prompting interface as an interface layer on top of SAS. Once you have defined your prompts in EG (based on macro variables), then if/when you create a stored process from that project, your prompt is automatically carried over to the stored process.&lt;BR /&gt;&lt;BR /&gt;The bottom line answer to your question is that SAS Display Manager does not have a prompting interface like EG. But you can still use Macro variables in your code. You just can't prompt users for the values when you run the program without using some other interface, such as SAS/AF or the %WINDOW facility.&lt;BR /&gt;&lt;BR /&gt;cynthia</description>
      <pubDate>Mon, 02 Jan 2017 17:50:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Prompts-in-Base-9-4-DMS/m-p/321980#M71167</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2017-01-02T17:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: Prompts in Base 9.4 (DMS)?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Prompts-in-Base-9-4-DMS/m-p/322362#M71319</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you can use %window macro to interact with the user, through the window prompt.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you can see below paper for more example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www2.sas.com/proceedings/sugi27/p192-27.pdf" target="_self"&gt;http://www2.sas.com/proceedings/sugi27/p192-27.pdf&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2017 10:13:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Prompts-in-Base-9-4-DMS/m-p/322362#M71319</guid>
      <dc:creator>mnjtrana</dc:creator>
      <dc:date>2017-01-04T10:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: Prompts in Base 9.4 (DMS)?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Prompts-in-Base-9-4-DMS/m-p/322524#M71355</link>
      <description>But typically %WINDOW will not work with EG installations. So if the developer has SAS DMS, but the end users have EG, then %WINDOW might not be the best choice.&lt;BR /&gt; &lt;BR /&gt;cynthia</description>
      <pubDate>Wed, 04 Jan 2017 22:30:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Prompts-in-Base-9-4-DMS/m-p/322524#M71355</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2017-01-04T22:30:34Z</dc:date>
    </item>
  </channel>
</rss>

