<?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: SAS AMO - Silent Execution of Stored Process in Microsoft Integration with SAS</title>
    <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/SAS-AMO-Silent-Execution-of-Stored-Process/m-p/569577#M2371</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/52595"&gt;@Scott_Mitchell&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was correct. Unfortunately, no option currently exists to suppress the SAS panel that opens automatically when results are rendered. But I have opened a software feature request to ask for this option in a future release of the SAS Add-in for Microsoft Office.&lt;/P&gt;</description>
    <pubDate>Thu, 27 Jun 2019 18:22:24 GMT</pubDate>
    <dc:creator>fifthand57th</dc:creator>
    <dc:date>2019-06-27T18:22:24Z</dc:date>
    <item>
      <title>SAS AMO - Silent Execution of Stored Process</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/SAS-AMO-Silent-Execution-of-Stored-Process/m-p/569312#M2369</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have created a stored process which I want to execute silently i.e. without the "Executing SAS Analysis" Popup or the Information window appearing on the right hand side of the screen as per below.&amp;nbsp; Is there an option that can stop these things occurring either from the interface or via VBA?&amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you in advance.&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="image.png" style="width: 274px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/30587i5A63B98FDBE3B455/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&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="image.png" style="width: 403px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/30586i90F59874928EDC21/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2019 00:35:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/SAS-AMO-Silent-Execution-of-Stored-Process/m-p/569312#M2369</guid>
      <dc:creator>Scott_Mitchell</dc:creator>
      <dc:date>2019-06-27T00:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: SAS AMO - Silent Execution of Stored Process</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/SAS-AMO-Silent-Execution-of-Stored-Process/m-p/569507#M2370</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/52595"&gt;@Scott_Mitchell&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this sample VBA code (modify for your stored process):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Sub InsertStoredProcess()

    Dim sas As SASExcelAddIn
    Set sas = Application.COMAddIns.Item("SAS.ExcelAddIn").Object
    sas.Options.AutoInsertResultsIntoDocument = True

    Application.DisplayAlerts = False

    Dim stp As SASStoredProcess
    Set stp = sas.InsertStoredProcess("/Shared Data/Stored Processes/Bar chart prdsale", Sheet1.Range("A1"))
    
    Application.DisplayAlerts = True
    
End Sub&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately, I do not think there is a way to suppress the new SAS Panel on the right, but I am checking with R&amp;amp;D to be certain.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2019 15:56:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/SAS-AMO-Silent-Execution-of-Stored-Process/m-p/569507#M2370</guid>
      <dc:creator>fifthand57th</dc:creator>
      <dc:date>2019-06-27T15:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: SAS AMO - Silent Execution of Stored Process</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/SAS-AMO-Silent-Execution-of-Stored-Process/m-p/569577#M2371</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/52595"&gt;@Scott_Mitchell&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was correct. Unfortunately, no option currently exists to suppress the SAS panel that opens automatically when results are rendered. But I have opened a software feature request to ask for this option in a future release of the SAS Add-in for Microsoft Office.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2019 18:22:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/SAS-AMO-Silent-Execution-of-Stored-Process/m-p/569577#M2371</guid>
      <dc:creator>fifthand57th</dc:creator>
      <dc:date>2019-06-27T18:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: SAS AMO - Silent Execution of Stored Process</title>
      <link>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/SAS-AMO-Silent-Execution-of-Stored-Process/m-p/571941#M2373</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60208"&gt;@fifthand57th&lt;/a&gt;&amp;nbsp;Thank you so much for this.&amp;nbsp; Greatly appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2019 02:25:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Microsoft-Integration-with-SAS/SAS-AMO-Silent-Execution-of-Stored-Process/m-p/571941#M2373</guid>
      <dc:creator>Scott_Mitchell</dc:creator>
      <dc:date>2019-07-09T02:25:06Z</dc:date>
    </item>
  </channel>
</rss>

