<?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 for BI Dashboards in Developers</title>
    <link>https://communities.sas.com/t5/Developers/Stored-Process-for-BI-Dashboards/m-p/89533#M3586</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey bream_bn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Were you able to get this resolved? I am having similar problems, where I get an error in BI Dashboard saying "The value of a fixed prompt cannot be changed: _result". I am not modifying the value of the _result prompt anywhere in the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Apr 2013 22:02:54 GMT</pubDate>
    <dc:creator>SameerSAS</dc:creator>
    <dc:date>2013-04-24T22:02:54Z</dc:date>
    <item>
      <title>Stored Process for BI Dashboards</title>
      <link>https://communities.sas.com/t5/Developers/Stored-Process-for-BI-Dashboards/m-p/89531#M3584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I created and deployed a simple stored process but I am unable to load this into a BI Dashboard. Are there others settings I need to put on the stored process aside from make the return type a package? When I attempt to use the stored process for the dashboard it does not show me any tables to use. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%global _ARCHIVE_PATH _ARCHIVE_NAME;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro checkrc(text);&lt;/P&gt;&lt;P&gt;&amp;nbsp; if rc ne 0 then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp; msg=sysmsg();&lt;/P&gt;&lt;P&gt;&amp;nbsp; put msg=;&lt;/P&gt;&lt;P&gt;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp; else&lt;/P&gt;&lt;P&gt;&amp;nbsp; put "&amp;amp;text succeeded";&lt;/P&gt;&lt;P&gt;%mend checkrc;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _NULL_;&lt;/P&gt;&lt;P&gt;&amp;nbsp; rc=0;pid=0;desc="";&lt;/P&gt;&lt;P&gt;&amp;nbsp; call package_begin(pid,desc,nameV,rc);&lt;/P&gt;&lt;P&gt;&amp;nbsp; %checkrc(Package Init);&lt;/P&gt;&lt;P&gt;&amp;nbsp; call insert_dataset(pid,"sashelp","cars","Car Types",'',rc);&lt;/P&gt;&lt;P&gt;&amp;nbsp; %checkrc(Package Dataset);&lt;/P&gt;&lt;P&gt;&amp;nbsp; length fullpath $4096;&lt;/P&gt;&lt;P&gt;&amp;nbsp; call package_publish(pid,"TO_ARCHIVE",rc,"archive_path,archive_name,archive_fullpath","&amp;amp;_ARCHIVE_PATH","&amp;amp;_ARCHIVE_NAME",fullpath);&lt;/P&gt;&lt;P&gt;&amp;nbsp; %checkrc(Package Publish);&lt;/P&gt;&lt;P&gt;&amp;nbsp; putlog fullpath;&lt;/P&gt;&lt;P&gt;&amp;nbsp; call symput('_ARCHIVE_FULLPATH',fullpath);&lt;/P&gt;&lt;P&gt;&amp;nbsp; call package_end(pid,rc);&lt;/P&gt;&lt;P&gt;&amp;nbsp; %checkrc(Package Term);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2012 19:34:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Stored-Process-for-BI-Dashboards/m-p/89531#M3584</guid>
      <dc:creator>bream_bn</dc:creator>
      <dc:date>2012-06-21T19:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Stored Process for BI Dashboards</title>
      <link>https://communities.sas.com/t5/Developers/Stored-Process-for-BI-Dashboards/m-p/89532#M3585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bream,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you tell what exact msg you are getting when you executed stored process from EG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are getting msg like Package created with no tables .Then Solution for that is turn off The Stored process Macros from Include codes from SAS EG modifed Stored process .%stpbegin and %stpend;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Zeelan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jun 2012 05:08:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Stored-Process-for-BI-Dashboards/m-p/89532#M3585</guid>
      <dc:creator>zeelan</dc:creator>
      <dc:date>2012-06-25T05:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: Stored Process for BI Dashboards</title>
      <link>https://communities.sas.com/t5/Developers/Stored-Process-for-BI-Dashboards/m-p/89533#M3586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey bream_bn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Were you able to get this resolved? I am having similar problems, where I get an error in BI Dashboard saying "The value of a fixed prompt cannot be changed: _result". I am not modifying the value of the _result prompt anywhere in the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Apr 2013 22:02:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/Stored-Process-for-BI-Dashboards/m-p/89533#M3586</guid>
      <dc:creator>SameerSAS</dc:creator>
      <dc:date>2013-04-24T22:02:54Z</dc:date>
    </item>
  </channel>
</rss>

