<?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>Ninan Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>Ninan Tracker</description>
    <pubDate>Tue, 12 May 2026 03:26:47 GMT</pubDate>
    <dc:date>2026-05-12T03:26:47Z</dc:date>
    <item>
      <title>Re: macro CALL EXECUTE- ERROR: More positional parameters found than defined</title>
      <link>https://communities.sas.com/t5/New-SAS-User/macro-CALL-EXECUTE-ERROR-More-positional-parameters-found-than/m-p/741244#M29122</link>
      <description>Responses below from Astounding and Kurt are solutions &lt;BR /&gt;Response from Tom about using nested functions be considered as extension of what we have discussed here, &lt;BR /&gt;&lt;BR /&gt;now this thread has many use-cases to explore for SAS MACRO learner!!&lt;BR /&gt;Thanks everyone for all your replies.&lt;BR /&gt;</description>
      <pubDate>Thu, 13 May 2021 19:19:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/macro-CALL-EXECUTE-ERROR-More-positional-parameters-found-than/m-p/741244#M29122</guid>
      <dc:creator>Ninan</dc:creator>
      <dc:date>2021-05-13T19:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: macro CALL EXECUTE- ERROR: More positional parameters found than defined</title>
      <link>https://communities.sas.com/t5/New-SAS-User/macro-CALL-EXECUTE-ERROR-More-positional-parameters-found-than/m-p/741116#M29121</link>
      <description>Thank you for your response, this is an alternate solution to avoid the complexities of concatenating different parameter while calling the macro.</description>
      <pubDate>Thu, 13 May 2021 13:55:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/macro-CALL-EXECUTE-ERROR-More-positional-parameters-found-than/m-p/741116#M29121</guid>
      <dc:creator>Ninan</dc:creator>
      <dc:date>2021-05-13T13:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: macro CALL EXECUTE- ERROR: More positional parameters found than defined</title>
      <link>https://communities.sas.com/t5/New-SAS-User/macro-CALL-EXECUTE-ERROR-More-positional-parameters-found-than/m-p/741085#M29115</link>
      <description>&lt;P&gt;I have tried %NRSTR in multiple combinations before but it was throwing different errors, may be because of unbalanced quotes, commas, and brackets&lt;/P&gt;
&lt;P&gt;But rethinking with fresh mind it is working now -&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;call execute('%get_dbdata(%NRSTR(' || strip(mbr_list) || '))'&amp;nbsp; );;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you Kurt&lt;/P&gt;</description>
      <pubDate>Thu, 13 May 2021 12:49:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/macro-CALL-EXECUTE-ERROR-More-positional-parameters-found-than/m-p/741085#M29115</guid>
      <dc:creator>Ninan</dc:creator>
      <dc:date>2021-05-13T12:49:48Z</dc:date>
    </item>
    <item>
      <title>macro CALL EXECUTE- ERROR: More positional parameters found than defined</title>
      <link>https://communities.sas.com/t5/New-SAS-User/macro-CALL-EXECUTE-ERROR-More-positional-parameters-found-than/m-p/741023#M29103</link>
      <description>&lt;P&gt;I wanted to iteratively pass list of variables in quotes separated by commas to a SQL WHERE “IN” &amp;nbsp;clause&lt;/P&gt;
&lt;P&gt;WHERE IDS in ('a111','a222','a333');&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please check below working piece of SAS macro code, first approach invokes macro directly using %, it is working as expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the second approach; macro invocation using CALL EXECUTE, I am not able to pass multiple parameters without wrapping up in quotes&lt;/P&gt;
&lt;P&gt;Else it will throw ERROR: More positional parameters found than defined&lt;/P&gt;
&lt;P&gt;But as workaround I am able to remove the additional quote using a dequote inside the macro.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Can you suggest modification to CALL EXECUTE statement so that macro variable mbrlist receive values as 'a111','a222','a333' and not “'a111','a222','a333'”, &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;so that dequote statement is not needed, ie wrapping CALL executive parms or just macro parm with %NRSTR, %NRBQUOTE etc functions?&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
%macro get_dbdata(mbrlist)&amp;nbsp; ;
&amp;nbsp;&amp;nbsp;&amp;nbsp; %put &amp;amp;=mbrlist;
&amp;nbsp;&amp;nbsp;&amp;nbsp; %let mbrlist_DQ=%sysfunc(dequote(&amp;amp;mbrlist.));
&amp;nbsp;&amp;nbsp;&amp;nbsp; %put &amp;amp;=mbrlist_DQ;
%MEND;



/* 1. Call macro direct */

%let mbrlst='a111','a222','a333';
%put &amp;amp;=mbrlst;
%get_dbdata(%nrstr(&amp;amp;mbrlst));


/* 2. Call macro using Call execute */

data qq;
&amp;nbsp;&amp;nbsp;&amp;nbsp; /*&amp;nbsp;&amp;nbsp; set indata; */


&amp;nbsp;&amp;nbsp;&amp;nbsp; mbr_list="'b111','b222','b333'";
&amp;nbsp;&amp;nbsp;&amp;nbsp; put mbr_list=;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;call execute('%get_dbdata("' || strip(mbr_list) || '")'&amp;nbsp; );;

run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 13 May 2021 05:44:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/macro-CALL-EXECUTE-ERROR-More-positional-parameters-found-than/m-p/741023#M29103</guid>
      <dc:creator>Ninan</dc:creator>
      <dc:date>2021-05-13T05:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: Export Image from designer and viewer</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Export-Image-from-designer-and-viewer/m-p/181658#M1252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We still have SAS VA 6.3 in our shop and we were not able to perform print (Pre-Production),&lt;/P&gt;&lt;P&gt;While printing VA was throwing error about &lt;SPAN style="font-size: 10pt;"&gt;PrintBird stored process&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; “&lt;EM style="mso-bidi-language: AR-SA; mso-fareast-language: EN-US; color: red; font-size: 11pt; mso-ansi-language: EN-US; mso-fareast-theme-font: minor-latin; font-family: 'Courier New'; mso-fareast-font-family: Calibri;"&gt;HTTP Status 500... &lt;/EM&gt;&lt;EM style="color: red; font-family: 'Courier New';"&gt;Error encountered executing stored process”&lt;/EM&gt;&lt;SPAN style="font-size: 10pt;"&gt;, later SAS support/Admin was able to resolve this issue making the few security access in my our side.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-size: 10pt;"&gt;After resolving that, it was found that report is not generating any data, ie print just produce blank PDF and&amp;nbsp; SAS support response on this is that &lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;this problem exists in UNIX environment, and entire printing model was scrapped and rewritten from scratch and ver 7.1 no longer uses the PrintBird stored process !!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;So upgrade is the only option left for us.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Anybody using 6.3 has any workaround to do print other than taking screenshots?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Thanks..&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2015 16:57:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Export-Image-from-designer-and-viewer/m-p/181658#M1252</guid>
      <dc:creator>Ninan</dc:creator>
      <dc:date>2015-04-10T16:57:12Z</dc:date>
    </item>
    <item>
      <title>Stack container object restore while transitioning in maximized view [V6.3]</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Stack-container-object-restore-while-transitioning-in-maximized/m-p/216731#M2402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Version: SAS VA 6.3&lt;/P&gt;&lt;P&gt;I have created a VA report with multiple objects including a stack container, &lt;BR /&gt;area occupied by stack container is only quarter of the page, so I am using maximize icon to expand the view&lt;/P&gt;&lt;P&gt;But I am not able to move from one stack container object to next while the container is maximized, ie if I click the next arrow while stack container is maximized, it goes to next object but restore to original size.&lt;/P&gt;&lt;P&gt;But I have seen&amp;nbsp; in “SAS Sample Reports Cross Industry” (2nd tab: product overview, revenue per vendor stats-stack container”)&lt;BR /&gt;&lt;A href="http://www.sas.com/software/visual-analytics/demos/cross-divisional.html"&gt;http://www.sas.com/software/visual-analytics/demos/cross-divisional.html&lt;/A&gt;&lt;BR /&gt;it will goes from one stack container object to another without restoring to original,&lt;/P&gt;&lt;P&gt;is the SAS report created with ver 7.1?&lt;BR /&gt;ie Stack container object restore while transitioning in maximized view is a limitation of ver 6.3?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2015 16:24:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Stack-container-object-restore-while-transitioning-in-maximized/m-p/216731#M2402</guid>
      <dc:creator>Ninan</dc:creator>
      <dc:date>2015-04-06T16:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: Custom summarization/ Default list selection</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Custom-summarization-Default-list-selection/m-p/173486#M1090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;I was able to achieve my goal using Aggregated Measures, unlike Calculated Data Items, it summaries the data based on the group value after aggregation. &lt;/SPAN&gt;&lt;SPAN style="font-family: Calibri, sans-serif;"&gt;&lt;SPAN style="font-size: 11pt;"&gt;Ie in total column, it &lt;/SPAN&gt;&lt;SPAN style="font-size: 14.6666669845581px;"&gt;doesn't&lt;/SPAN&gt;&lt;SPAN style="font-size: 11pt;"&gt; summarize the data from it's column data, but recalculates based on the formula using final grouped numbers of other columns in the formula. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;There may be limitations in Aggregated Measures, but few of those can be overcome by prior data preparation.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;it is possible to have default selections in list control, ie once we link (interaction)&amp;nbsp; list control with an object and save with a selection,&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;then we can reopen it with same selection which will serve as the default selection.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P class="Default"&gt; note: still using VA Ver 6.3&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2015 16:41:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Custom-summarization-Default-list-selection/m-p/173486#M1090</guid>
      <dc:creator>Ninan</dc:creator>
      <dc:date>2015-03-05T16:41:12Z</dc:date>
    </item>
    <item>
      <title>Custom summarization/ Default list selection</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/Custom-summarization-Default-list-selection/m-p/173485#M1089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; In visual analytics, table crosstab object has an option to sum the column total, but is it possible have additional customization to modify the summary line like in PROC REPORT computational override? Ie instead of sum of a column, I want to a different value like weighted average and instead of literal "Total" something like "National"?&lt;/P&gt;&lt;P&gt;Ie I have data related to all 50 USA states and I want the summary at bottom, and few columns have special formula and summary national numbers are not just sum of all the individual states. &lt;/P&gt;&lt;P&gt;Considering this is not possible in my 6.3 version, I am thinking to have a workaround to have separate&amp;nbsp; row for national and values readily calculated in the data itself before presenting it and to have a “list” control to display the national value,&lt;/P&gt;&lt;P&gt;but second question I have is that is it possible to have a default list selection in list control?&amp;nbsp; &lt;/P&gt;&lt;P&gt;Ie initially I had only states values and when I open the visualization, it will show the summary of all data without any filtration, due to above mentioned first problem I included a separate summarized row for national, now the total value will be double at the initial screen, but users can select national from list to get the correct value, so is it possible to have a default national selection in the first place when the visualization is displayed?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2015 16:46:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/Custom-summarization-Default-list-selection/m-p/173485#M1089</guid>
      <dc:creator>Ninan</dc:creator>
      <dc:date>2015-02-18T16:46:07Z</dc:date>
    </item>
    <item>
      <title>VA report- filter interaction</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-report-filter-interaction/m-p/168226#M956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using SAS VA6.3; I am novice to this product&lt;/P&gt;&lt;P&gt;I want to know how to set up global filters/control in reports OR how interaction across section can be set as “filter” instead of “link”&lt;/P&gt;&lt;P&gt;I have seen other similar posts on filters and response that the new 7.1 version will have these capabilities, our shop may NOT have this new version in near future, so &lt;STRONG&gt;can anyone please suggest a workaround to achieve this?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I want to create report with 4 sections/tabs and all 4 sections will be using different data/tables (I already have summarized data in four different tables instead of single huge combined source table)&lt;/P&gt;&lt;P&gt;Say I have common column “US STATES” in all the tables and I want a STATE list OR drop-down list in the first tab and if I select this control it should reflect the selection in all other sections, ie show only the selected state data.&lt;/P&gt;&lt;P&gt;If I include all tables in to a single section/tab, then I am able to have the “filter interaction” but once I move to different section it will drop the filter interaction WARNING-&lt;EM&gt;“If you move the object (List Table 2) to a different section, you will delete all of the interactions that are associated with that object.”&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Interaction has an option like “Map data source”/link section with common columns, with this option, I am able to link to different sections using a common column, ie my case if I click on an object and then it will link to corresponding data in the next link, but linking is not related to filter or control, ie if I select two STATES from a list in the first section, I want those two selected states data only in all other sections too.&lt;/P&gt;&lt;P&gt;Note: I am creating reports and not exploration, in exploration I have seen global and local filter option but it is not available in reports and also it is not applicable to my scenario since I want users to select the filter while viewing the visualization.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2015 17:19:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/VA-report-filter-interaction/m-p/168226#M956</guid>
      <dc:creator>Ninan</dc:creator>
      <dc:date>2015-02-13T17:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: web tabs in tagset tableeditor</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/web-tabs-in-tagset-tableeditor/m-p/26112#M4255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;options(pagebreak="2" PANELROWS="2" web_tabs="TAB1111,hide,TAB222");&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;this resolved my problem&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 18:42:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/web-tabs-in-tagset-tableeditor/m-p/26112#M4255</guid>
      <dc:creator>Ninan</dc:creator>
      <dc:date>2015-01-23T18:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: web tabs in tagset tableeditor</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/web-tabs-in-tagset-tableeditor/m-p/26111#M4254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="background: white;"&gt;I have same question as above to display reports top and bottom instead of side by side in stored process output&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white;"&gt;I have 3 reports and I want rpt1&amp;amp;2 in tab1 and RPT3 in tab2, I am able to display it using &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Courier New';"&gt;ods&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt; tagsets.tableeditor &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Courier New';"&gt;file&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt;=_WEBOUT&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="background: white; color: blue; font-family: 'Courier New';"&gt;style&lt;/SPAN&gt;&lt;SPAN style="background: white; color: black; font-family: 'Courier New';"&gt;=sasweb&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white; font-family: 'Courier New';"&gt;options(PANELCOLS=&lt;SPAN style="color: purple;"&gt;"2"&lt;/SPAN&gt; web_tabs=&lt;SPAN style="color: purple;"&gt;"TAB1111,hide,TAB222"&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white;"&gt;but report one and two are on side by side&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white;"&gt;in &lt;SPAN style="color: purple;"&gt;&lt;A href="http://support.sas.com/rnd/base/ods/odsmarkup/tableeditor/tableeditor.tpl"&gt;http://support.sas.com/rnd/base/ods/odsmarkup/tableeditor/tableeditor.tpl&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white;"&gt;I found an option PANELROWS, so I replaced PANELCOLS with PANELROWS, but it didn’t help.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;note: my SAS version 9.4&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background: white;"&gt;Any help will be appreciated&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 17:37:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/web-tabs-in-tagset-tableeditor/m-p/26111#M4254</guid>
      <dc:creator>Ninan</dc:creator>
      <dc:date>2015-01-23T17:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: STP GMAP GIF image in Dashboard Indicator</title>
      <link>https://communities.sas.com/t5/Developers/STP-GMAP-GIF-image-in-Dashboard-Indicator/m-p/178675#M4295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;==response from SAS Technical Support===&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAS BI Dashboard supports only static images &lt;/P&gt;&lt;P&gt;and animated GIF files are not supported.&amp;nbsp; Thus, there is not a way for BI Dashboard to display an interactive, or drillable, map.&amp;nbsp; &lt;/P&gt;&lt;P&gt;The Information Delivery Portal includes a stored process portlet that might work well for you in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more information about custom graph indicators, see&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/bidbrdug/67143/HTML/default/viewer.htm#n07w7uoobu0eron1p3u45zz3nz12.htm"&gt;http://support.sas.com/documentation/cdl/en/bidbrdug/67143/HTML/default/viewer.htm#n07w7uoobu0eron1p3u45zz3nz12.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Addressing your question about "call package_publish", BI Dashboard consumes data tables from SAS package files.&amp;nbsp; No other package content can be read from BI Dashboard. &lt;/P&gt;&lt;P&gt;For more information, see&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/publishdg/64884/HTML/default/viewer.htm#p0t7sslcpae11kn1i3ox1tn1e0pl.htm"&gt;http://support.sas.com/documentation/cdl/en/publishdg/64884/HTML/default/viewer.htm#p0t7sslcpae11kn1i3ox1tn1e0pl.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jan 2015 15:34:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/STP-GMAP-GIF-image-in-Dashboard-Indicator/m-p/178675#M4295</guid>
      <dc:creator>Ninan</dc:creator>
      <dc:date>2015-01-22T15:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: STP GMAP GIF image in Dashboard Indicator</title>
      <link>https://communities.sas.com/t5/Developers/STP-GMAP-GIF-image-in-Dashboard-Indicator/m-p/178674#M4294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;after including &lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Courier New';"&gt;ods listing close&lt;/SPAN&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;; before ODS html&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;it is not throwing authorization error, but not producing any final output&lt;/P&gt;&lt;P&gt;“&lt;SPAN style="color: red;"&gt;The SAS program did not produce any output&lt;/SPAN&gt;.” And no error in the SAS log.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;ie as per SAS BI dashboard 4.4 UG page 57 "Create a Stored Process to Use for Indicator Data" 1.c says&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;sets the macro variable _ARCHIVE_FULLPATH to the path of the archive file that the stored process generates&lt;/P&gt;&lt;P&gt;I have result from GMAP as&lt;/P&gt;&lt;P&gt;NOTE: 29428 bytes written to /data1/saswork/SAS_workA11F00038935_xxxxxx/SAS_work873800038935_xxxxxx/gmap.gif.&lt;/P&gt;&lt;P&gt;is archive file path&amp;nbsp; " /data1/saswork/SAS_workA11F00038935_xxxxxx/SAS_work873800038935_xxxxxx/gmap.gif."?&lt;/P&gt;&lt;P&gt;%let _ARCHIVE_FULLPATH=&amp;amp;floc./gmap.gif;&amp;nbsp; ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I have also tried few code available in Paper 045-2010, Interactive Dashboards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/resources/papers/proceedings10/045-2010.pdf" title="http://support.sas.com/resources/papers/proceedings10/045-2010.pdf"&gt;http://support.sas.com/resources/papers/proceedings10/045-2010.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;does the "call package_publish" applicable to streaming gif images too or only for streaming dataset?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 17:31:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/STP-GMAP-GIF-image-in-Dashboard-Indicator/m-p/178674#M4294</guid>
      <dc:creator>Ninan</dc:creator>
      <dc:date>2015-01-12T17:31:35Z</dc:date>
    </item>
    <item>
      <title>STP GMAP GIF image in Dashboard Indicator</title>
      <link>https://communities.sas.com/t5/Developers/STP-GMAP-GIF-image-in-Dashboard-Indicator/m-p/178673#M4293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: inherit, serif; color: black; background-position: initial;"&gt;==Repost==&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: inherit, serif; color: black; background-position: initial;"&gt;I have a stored process with below details and it is showing the output as expected&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: blue; background-position: initial;"&gt;goptions&lt;/SPAN&gt; &lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: blue; background-position: initial;"&gt;device&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background-position: initial;"&gt;=gif;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: blue; background-position: initial;"&gt;goptions&lt;/SPAN&gt; &lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: blue; background-position: initial;"&gt;gsfname&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background-position: initial;"&gt;=_webout &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: blue; background-position: initial;"&gt;gsfmode&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background-position: initial;"&gt;=replace;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;proc gmap map=USMAP data=usadata all;&lt;/SPAN&gt;&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background-position: initial;"&gt;-&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: inherit, serif; color: black; background-position: initial;"&gt;But I want this image in dashboard, so I disabled “STP macro in SAS code” (already steaming and package is enabled and not using %STPBEGIN)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: inherit, serif; color: black; background-position: initial;"&gt;And now throwing &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="color: red; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;ERROR: Insufficient authorization to access /sas/config94/Lev1/YYYYYY/3225DC00-984F-11E4-A2BB-001E6787D0B2.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;note: if the device=png, it will not throw any error, but png will not have drill down facility[interactive/clickable], ie I am able to get a plain US map in dashboard&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: inherit, serif; color: black; background-position: initial;"&gt;After doing some research, I added a code as below after goption&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: blue; background-position: initial;"&gt;%let&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background-position: initial;"&gt; floc=&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: blue; background-position: initial;"&gt;%sysfunc&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background-position: initial;"&gt;(pathname(work));&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: blue; background-position: initial;"&gt;ods&lt;/SPAN&gt; &lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: blue; background-position: initial;"&gt;html&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: blue; background-position: initial;"&gt;gpath&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background-position: initial;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: purple; background-position: initial;"&gt;"&amp;amp;floc"&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: blue; background-position: initial;"&gt;file&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background-position: initial;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: purple; background-position: initial;"&gt;"&amp;amp;floc./test.html"&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: black; background-position: initial;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Helvetica, sans-serif;"&gt;And still it is throwing that error, but it wrote 22KB to work location (&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: 'Courier New'; color: purple; background-position: initial;"&gt;&amp;amp;floc&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Helvetica, sans-serif;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: black;"&gt;100 proc gmap map=USMAP data=usadata all;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Courier New'; color: blue;"&gt;NOTE: 22252 bytes written to /data1/saswork/SAS_workA38D0004281D_xxxxxx/SAS_workD5DA0004281D_xxxxxx/gmap.gif.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="color: red; font-size: 10.0pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;ERROR: Insufficient authorization to access /sas/config94/Lev1/YYYYYY/3225DC00-984F-11E4-A2BB-001E6787D0B2.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="font-size: 10pt; font-family: inherit, serif; color: black; background-position: initial;"&gt;Any help will be appreciated&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2015 15:38:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Developers/STP-GMAP-GIF-image-in-Dashboard-Indicator/m-p/178673#M4293</guid>
      <dc:creator>Ninan</dc:creator>
      <dc:date>2015-01-12T15:38:41Z</dc:date>
    </item>
    <item>
      <title>SAS portal name different than SP</title>
      <link>https://communities.sas.com/t5/SAS-Programming/SAS-portal-name-different-than-SP/m-p/180910#M303018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In SAS portal, is it possible display different name than it's corresponding stored process name?&lt;/P&gt;&lt;P&gt;ie SAS stored process name is “SP12345 Monthly sales report” but in SAS portal I just want to display it as “Monthly sales report”&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Feb 2014 19:06:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/SAS-portal-name-different-than-SP/m-p/180910#M303018</guid>
      <dc:creator>Ninan</dc:creator>
      <dc:date>2014-02-20T19:06:31Z</dc:date>
    </item>
  </channel>
</rss>

