<?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: Stored Process as a Data Source for BI Dashboard 4.3 in Developers</title>
    <link>https://communities.sas.com/t5/Developers/Stored-Process-as-a-Data-Source-for-BI-Dashboard-4-3/m-p/53614#M2990</link>
    <description>Thanks for the reply.&lt;BR /&gt;
&lt;BR /&gt;
My Question was how to use the stored process as a data source for the Dashboard, not how to use the sas dataset.&lt;BR /&gt;
&lt;BR /&gt;
For your Ref : &lt;BR /&gt;
Section : Stored Process indicator Data in&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/bidbrdug/63081/PDF/default/bidbrdug.pdf" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/bidbrdug/63081/PDF/default/bidbrdug.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
However My Issue was resolved , All I have to do is turnoff the STP Macros (%STPBEGIN, %STPEND) in my Stored Process.  and remove the explicit PATH.</description>
    <pubDate>Mon, 25 Apr 2011 12:26:25 GMT</pubDate>
    <dc:creator>RSB</dc:creator>
    <dc:date>2011-04-25T12:26:25Z</dc:date>
    <item>
      <title>Stored Process as a Data Source for BI Dashboard 4.3</title>
      <link>https://communities.sas.com/t5/Developers/Stored-Process-as-a-Data-Source-for-BI-Dashboard-4-3/m-p/53612#M2988</link>
      <description>I am trying to figure out how to use a Stored process as a datasource for my Dashboard 4.3. I am publishing the output of the sas dataset to a package.&lt;BR /&gt;
&lt;BR /&gt;
So far my Stp code looks like this.&lt;BR /&gt;
&lt;BR /&gt;
%let _ARCHIVE_PATH = /Temp/;&lt;BR /&gt;
%let _ARCHIVE_NAME = results;&lt;BR /&gt;
&lt;BR /&gt;
data _null_;&lt;BR /&gt;
rc = 0;&lt;BR /&gt;
pid = 0;&lt;BR /&gt;
desc = "";&lt;BR /&gt;
call package_begin(pid, desc, nameV, rc);&lt;BR /&gt;
%checkrc(Package init);&lt;BR /&gt;
call insert_dataset(pid, "WORK", "MyData", "My Details",&lt;BR /&gt;
'', rc);&lt;BR /&gt;
%checkrc(Package data set);&lt;BR /&gt;
length fullpath $4096;&lt;BR /&gt;
call package_publish(pid, "TO_ARCHIVE", rc,&lt;BR /&gt;
"archive_path, archive_name, archive_fullpath",&lt;BR /&gt;
"&amp;amp;_ARCHIVE_PATH", "&amp;amp;_ARCHIVE_NAME", fullpath);&lt;BR /&gt;
%checkrc(Package publish);&lt;BR /&gt;
call symput('_ARCHIVE_FULLPATH', fullpath);&lt;BR /&gt;
call package_end(pid, rc);&lt;BR /&gt;
%checkrc(Package term);&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
I am succesful in publishing the output of the STP as an spk file(I guess it is succesful since a .spk file is being generated) in the &lt;span class="lia-unicode-emoji" title=":anguished_face:"&gt;😧&lt;/span&gt; Drive, however when i select the stored process as the Datasource it is giving me a message "The Selected Stored Process Does not create any data sets".</description>
      <pubDate>Wed, 20 Apr 2011 07:27:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Stored-Process-as-a-Data-Source-for-BI-Dashboard-4-3/m-p/53612#M2988</guid>
      <dc:creator>RSB</dc:creator>
      <dc:date>2011-04-20T07:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: Stored Process as a Data Source for BI Dashboard 4.3</title>
      <link>https://communities.sas.com/t5/Developers/Stored-Process-as-a-Data-Source-for-BI-Dashboard-4-3/m-p/53613#M2989</link>
      <description>A spk file is an archive file, so think a .zip file.&lt;BR /&gt;
&lt;BR /&gt;
The BI Dashboards needs a table as the data source (think SAS dataset).&lt;BR /&gt;
&lt;BR /&gt;
Because you are effectively zipping the table, then the BI Dashboards can't read it.</description>
      <pubDate>Sun, 24 Apr 2011 00:21:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Stored-Process-as-a-Data-Source-for-BI-Dashboard-4-3/m-p/53613#M2989</guid>
      <dc:creator>ShaneGibson_OptimalBI</dc:creator>
      <dc:date>2011-04-24T00:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: Stored Process as a Data Source for BI Dashboard 4.3</title>
      <link>https://communities.sas.com/t5/Developers/Stored-Process-as-a-Data-Source-for-BI-Dashboard-4-3/m-p/53614#M2990</link>
      <description>Thanks for the reply.&lt;BR /&gt;
&lt;BR /&gt;
My Question was how to use the stored process as a data source for the Dashboard, not how to use the sas dataset.&lt;BR /&gt;
&lt;BR /&gt;
For your Ref : &lt;BR /&gt;
Section : Stored Process indicator Data in&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/bidbrdug/63081/PDF/default/bidbrdug.pdf" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/bidbrdug/63081/PDF/default/bidbrdug.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
However My Issue was resolved , All I have to do is turnoff the STP Macros (%STPBEGIN, %STPEND) in my Stored Process.  and remove the explicit PATH.</description>
      <pubDate>Mon, 25 Apr 2011 12:26:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Stored-Process-as-a-Data-Source-for-BI-Dashboard-4-3/m-p/53614#M2990</guid>
      <dc:creator>RSB</dc:creator>
      <dc:date>2011-04-25T12:26:25Z</dc:date>
    </item>
  </channel>
</rss>

