<?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: Dynamic Parameters in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Dynamic-Parameters/m-p/462065#M29793</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10988"&gt;@sfmeier&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I have built a&amp;nbsp; SAS project for a client and they want the end date of the previous month to be automatically input in the list of parameters when they open the program. Is there any way to do that in SAS EG 7.13 HF7 (7.100.3.5524) (32-Bit)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards,&lt;/P&gt;
&lt;P&gt;Stefan&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Depending on exactly how an organization runs you might find that you need to write this, and possibly other, values into a data set. Your project would then begin by reading that data set, when present and setting the appropriate value, again when actually in the data set. Then the ending value would have to be updated&amp;nbsp;in&amp;nbsp;the data set&amp;nbsp;very soon after establishing the value.&lt;/P&gt;</description>
    <pubDate>Mon, 14 May 2018 14:43:14 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2018-05-14T14:43:14Z</dc:date>
    <item>
      <title>Dynamic Parameters</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Dynamic-Parameters/m-p/461935#M29779</link>
      <description>&lt;P&gt;I have built a&amp;nbsp; SAS project for a client and they want the end date of the previous month to be automatically input in the list of parameters when they open the program. Is there any way to do that in SAS EG 7.13 HF7 (7.100.3.5524) (32-Bit)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards,&lt;/P&gt;
&lt;P&gt;Stefan&lt;/P&gt;</description>
      <pubDate>Mon, 14 May 2018 07:09:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Dynamic-Parameters/m-p/461935#M29779</guid>
      <dc:creator>sfmeier</dc:creator>
      <dc:date>2018-05-14T07:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Parameters</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Dynamic-Parameters/m-p/461961#M29783</link>
      <description>&lt;P&gt;Pass a parameter by creating a macro variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data _null_;&lt;/P&gt;
&lt;P&gt;call symput('prev_month_end',put(intnx('month', today(), -1,'e'), date9.)); /*replace date9. format with your required format. */&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 14 May 2018 09:23:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Dynamic-Parameters/m-p/461961#M29783</guid>
      <dc:creator>Vish33</dc:creator>
      <dc:date>2018-05-14T09:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Parameters</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Dynamic-Parameters/m-p/461999#M29787</link>
      <description>I know how to generate the value. I just want to know how i can dynamically populate the eG Parameter selection interface with it?</description>
      <pubDate>Mon, 14 May 2018 12:01:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Dynamic-Parameters/m-p/461999#M29787</guid>
      <dc:creator>sfmeier</dc:creator>
      <dc:date>2018-05-14T12:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Parameters</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Dynamic-Parameters/m-p/462028#M29791</link>
      <description>&lt;P&gt;you have to create stored process&amp;nbsp; with input parameters as you required.&amp;nbsp; Refer to stored process guide&lt;/P&gt;</description>
      <pubDate>Mon, 14 May 2018 12:58:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Dynamic-Parameters/m-p/462028#M29791</guid>
      <dc:creator>Vish33</dc:creator>
      <dc:date>2018-05-14T12:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Parameters</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Dynamic-Parameters/m-p/462065#M29793</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10988"&gt;@sfmeier&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I have built a&amp;nbsp; SAS project for a client and they want the end date of the previous month to be automatically input in the list of parameters when they open the program. Is there any way to do that in SAS EG 7.13 HF7 (7.100.3.5524) (32-Bit)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards,&lt;/P&gt;
&lt;P&gt;Stefan&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Depending on exactly how an organization runs you might find that you need to write this, and possibly other, values into a data set. Your project would then begin by reading that data set, when present and setting the appropriate value, again when actually in the data set. Then the ending value would have to be updated&amp;nbsp;in&amp;nbsp;the data set&amp;nbsp;very soon after establishing the value.&lt;/P&gt;</description>
      <pubDate>Mon, 14 May 2018 14:43:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Dynamic-Parameters/m-p/462065#M29793</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-05-14T14:43:14Z</dc:date>
    </item>
  </channel>
</rss>

