<?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 SAS Visual Analytics 7.5 and including a Stored Process in your report in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-Visual-Analytics-7-5-and-including-a-Stored-Process-in-your/m-p/650657#M13773</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.PNG" style="width: 723px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39967iD38A4AFA6C63A0C3/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.PNG" alt="1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I created a simple stored process which prints a number of articles, depending on how much articles the user will select.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've included this in my VA report &lt;STRONG&gt;but i'm not able to click "uitvoeren" or "execute".&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any other ways then linking to the stored process URL?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.PNG" style="width: 830px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39968i54098D0B4E4F8605/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.PNG" alt="2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want (drop=obs);  
  do obs = 1 to &amp;amp;Artikels_count.;
    Artikel = put(symget(cats('Artikels',ifc(obs=1,'',put(obs-1,2.)))),$50.);
    Groepsnaam = "&amp;amp;groepsnaam";
    output;
  end;
run;

proc print data=want;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 26 May 2020 10:37:36 GMT</pubDate>
    <dc:creator>Filipvdr</dc:creator>
    <dc:date>2020-05-26T10:37:36Z</dc:date>
    <item>
      <title>SAS Visual Analytics 7.5 and including a Stored Process in your report</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-Visual-Analytics-7-5-and-including-a-Stored-Process-in-your/m-p/650657#M13773</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.PNG" style="width: 723px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39967iD38A4AFA6C63A0C3/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.PNG" alt="1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I created a simple stored process which prints a number of articles, depending on how much articles the user will select.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've included this in my VA report &lt;STRONG&gt;but i'm not able to click "uitvoeren" or "execute".&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any other ways then linking to the stored process URL?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.PNG" style="width: 830px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/39968i54098D0B4E4F8605/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.PNG" alt="2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want (drop=obs);  
  do obs = 1 to &amp;amp;Artikels_count.;
    Artikel = put(symget(cats('Artikels',ifc(obs=1,'',put(obs-1,2.)))),$50.);
    Groepsnaam = "&amp;amp;groepsnaam";
    output;
  end;
run;

proc print data=want;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 26 May 2020 10:37:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-Visual-Analytics-7-5-and-including-a-Stored-Process-in-your/m-p/650657#M13773</guid>
      <dc:creator>Filipvdr</dc:creator>
      <dc:date>2020-05-26T10:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Visual Analytics 7.5 and including a Stored Process in your report</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-Visual-Analytics-7-5-and-including-a-Stored-Process-in-your/m-p/650768#M13778</link>
      <description>&lt;P&gt;Would this sample be of any help?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/kb/60/267.html" target="_blank"&gt;https://support.sas.com/kb/60/267.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2020 14:15:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-Visual-Analytics-7-5-and-including-a-Stored-Process-in-your/m-p/650768#M13778</guid>
      <dc:creator>Madelyn_SAS</dc:creator>
      <dc:date>2020-05-26T14:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Visual Analytics 7.5 and including a Stored Process in your report</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-Visual-Analytics-7-5-and-including-a-Stored-Process-in-your/m-p/651379#M13791</link>
      <description>thanks for the link, this will be helpfull, for now i solved it with links to external pages</description>
      <pubDate>Thu, 28 May 2020 14:09:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/SAS-Visual-Analytics-7-5-and-including-a-Stored-Process-in-your/m-p/651379#M13791</guid>
      <dc:creator>Filipvdr</dc:creator>
      <dc:date>2020-05-28T14:09:26Z</dc:date>
    </item>
  </channel>
</rss>

