<?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: How to link two stored process in Developers</title>
    <link>https://communities.sas.com/t5/Developers/How-to-link-two-stored-process/m-p/63935#M3264</link>
    <description>Hi!&lt;BR /&gt;
I have made a macrolibrary to make dynamic prompting in sas 9.1.3.&lt;BR /&gt;
I use these macros in my stored processes.&lt;BR /&gt;
&lt;BR /&gt;
It uses a free javascript library: &lt;A href="http://www.mattkruse.com/javascript/dynamicoptionlist/" target="_blank"&gt;http://www.mattkruse.com/javascript/dynamicoptionlist/&lt;/A&gt;&lt;BR /&gt;
I put JS-code with data _null_; file _webout......&lt;BR /&gt;
&lt;BR /&gt;
My library is for sale, but I think that you can make it with a little cpoy&amp;amp;paste from Kruse...&lt;BR /&gt;
&lt;BR /&gt;
Good luck!&lt;BR /&gt;
//Fredrik</description>
    <pubDate>Wed, 17 Dec 2008 13:25:10 GMT</pubDate>
    <dc:creator>FredrikE</dc:creator>
    <dc:date>2008-12-17T13:25:10Z</dc:date>
    <item>
      <title>How to link two stored process</title>
      <link>https://communities.sas.com/t5/Developers/How-to-link-two-stored-process/m-p/63931#M3260</link>
      <description>I wanted to create dynamic prompting in my report &lt;BR /&gt;
(means : in user prompt if i select a country, the next prompt should contain the states of that country and further on seleting a state the next prompt should filter out the cities in that state.)&lt;BR /&gt;
&lt;BR /&gt;
but i found that SAS 9.1 lacks dynamic prompting.&lt;BR /&gt;
i found that it may be possible by linking stored processes together (executing one stored process calls other) but could sort it out.&lt;BR /&gt;
&lt;BR /&gt;
anybody please assist...&lt;BR /&gt;
&lt;BR /&gt;
if possible, please tell any other way out for the problem described above...</description>
      <pubDate>Wed, 03 Dec 2008 06:19:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/How-to-link-two-stored-process/m-p/63931#M3260</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-12-03T06:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to link two stored process</title>
      <link>https://communities.sas.com/t5/Developers/How-to-link-two-stored-process/m-p/63932#M3261</link>
      <description>Your reference to "user prompt" is presumed to be a web application and a browser/user interaction?  I performed a SEARCH at the SAS support website  &lt;A href="http://support.sas.com/" target="_blank"&gt;http://support.sas.com/&lt;/A&gt;  and there technical discussion about this topic (see link below), I believe, that may be of interest.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.&lt;BR /&gt;
&lt;BR /&gt;
SAS 9.1.3 Integration Technologies » Developer's Guide&lt;BR /&gt;
&lt;BR /&gt;
SAS Stored Processes&lt;BR /&gt;
--------------------------------------------------------------------------------&lt;BR /&gt;
Web Application Input&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/itech/doc9/dev_guide/stprocess/webinput.html" target="_blank"&gt;http://support.sas.com/rnd/itech/doc9/dev_guide/stprocess/webinput.html&lt;/A&gt;</description>
      <pubDate>Wed, 03 Dec 2008 14:27:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/How-to-link-two-stored-process/m-p/63932#M3261</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2008-12-03T14:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to link two stored process</title>
      <link>https://communities.sas.com/t5/Developers/How-to-link-two-stored-process/m-p/63933#M3262</link>
      <description>I'll be covering this amongst other things in my upcoming presentation at SAS Global Forum. There are many ways to do this. One I have used recently is to generate HTML from a stored process by writing it to _webout. You can then generate a series of HTML lists which use javascript to achieve what you want.&lt;BR /&gt;
Another way would be that when you select a country (for example) the stored process is called again, passing the country in to it, you then generate the next list box with states, and so on. We built a very flexible dataviewer using this technqiue.</description>
      <pubDate>Tue, 16 Dec 2008 12:07:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/How-to-link-two-stored-process/m-p/63933#M3262</guid>
      <dc:creator>PhilMason</dc:creator>
      <dc:date>2008-12-16T12:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to link two stored process</title>
      <link>https://communities.sas.com/t5/Developers/How-to-link-two-stored-process/m-p/63934#M3263</link>
      <description>Also, in SAS 9.2, this kind of dynamic and cascading prompt should be possible with your stored processes (without writing any custom code).&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Tue, 16 Dec 2008 19:22:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/How-to-link-two-stored-process/m-p/63934#M3263</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-12-16T19:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to link two stored process</title>
      <link>https://communities.sas.com/t5/Developers/How-to-link-two-stored-process/m-p/63935#M3264</link>
      <description>Hi!&lt;BR /&gt;
I have made a macrolibrary to make dynamic prompting in sas 9.1.3.&lt;BR /&gt;
I use these macros in my stored processes.&lt;BR /&gt;
&lt;BR /&gt;
It uses a free javascript library: &lt;A href="http://www.mattkruse.com/javascript/dynamicoptionlist/" target="_blank"&gt;http://www.mattkruse.com/javascript/dynamicoptionlist/&lt;/A&gt;&lt;BR /&gt;
I put JS-code with data _null_; file _webout......&lt;BR /&gt;
&lt;BR /&gt;
My library is for sale, but I think that you can make it with a little cpoy&amp;amp;paste from Kruse...&lt;BR /&gt;
&lt;BR /&gt;
Good luck!&lt;BR /&gt;
//Fredrik</description>
      <pubDate>Wed, 17 Dec 2008 13:25:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/How-to-link-two-stored-process/m-p/63935#M3264</guid>
      <dc:creator>FredrikE</dc:creator>
      <dc:date>2008-12-17T13:25:10Z</dc:date>
    </item>
  </channel>
</rss>

