<?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: Create a stored process in SAS and execute it from Excel and do not create any excel sheets as o in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-a-stored-process-in-SAS-and-execute-it-from-Excel-and-do/m-p/856698#M42148</link>
    <description>&lt;P&gt;This step does not create any&amp;nbsp;&lt;EM&gt;output&lt;/EM&gt;, it just creates a dataset. There must be something else in the STP which sends the data to Excel.&lt;/P&gt;</description>
    <pubDate>Wed, 01 Feb 2023 17:58:49 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2023-02-01T17:58:49Z</dc:date>
    <item>
      <title>Create a stored process in SAS and execute it from Excel and do not create any excel sheets as outpu</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-a-stored-process-in-SAS-and-execute-it-from-Excel-and-do/m-p/856600#M42143</link>
      <description>&lt;P&gt;I have a stored process with this code;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC SQL;&lt;/P&gt;
&lt;P&gt;CREATE TABLE DDC.OUTPUTQ AS&lt;/P&gt;
&lt;P&gt;SELECT DOS&lt;/P&gt;
&lt;P&gt;FROM WORK.THINGS;&lt;/P&gt;
&lt;P&gt;QUIT;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I execute the stored process from excel through the sas addin, it generates a sheet with the content of the DDC.OUTPUTQ table, how can I do so that it does not generate any table in the excel file without passing the DDC.OUTPUTQ table to a temp table? It is mandatory that the table is created in the DDC library and that when executing the stored process in excel it does not create a sheet with the content of this table&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2023 09:43:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-a-stored-process-in-SAS-and-execute-it-from-Excel-and-do/m-p/856600#M42143</guid>
      <dc:creator>Abelp9</dc:creator>
      <dc:date>2023-02-01T09:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: Create a stored process in SAS and execute it from Excel and do not create any excel sheets as o</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-a-stored-process-in-SAS-and-execute-it-from-Excel-and-do/m-p/856690#M42145</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SQL noprint;
CREATE TABLE DDC.OUTPUTQ AS
SELECT DOS
FROM WORK.THINGS;
QUIT;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 01 Feb 2023 17:13:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-a-stored-process-in-SAS-and-execute-it-from-Excel-and-do/m-p/856690#M42145</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2023-02-01T17:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: Create a stored process in SAS and execute it from Excel and do not create any excel sheets as o</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-a-stored-process-in-SAS-and-execute-it-from-Excel-and-do/m-p/856696#M42147</link>
      <description>&lt;P&gt;I have tried but "noprint" does is that it doesn't appear as output in SAS but in the file it keeps coming out. Thanks for your answer&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2023 17:46:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-a-stored-process-in-SAS-and-execute-it-from-Excel-and-do/m-p/856696#M42147</guid>
      <dc:creator>Abelp9</dc:creator>
      <dc:date>2023-02-01T17:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Create a stored process in SAS and execute it from Excel and do not create any excel sheets as o</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-a-stored-process-in-SAS-and-execute-it-from-Excel-and-do/m-p/856698#M42148</link>
      <description>&lt;P&gt;This step does not create any&amp;nbsp;&lt;EM&gt;output&lt;/EM&gt;, it just creates a dataset. There must be something else in the STP which sends the data to Excel.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2023 17:58:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-a-stored-process-in-SAS-and-execute-it-from-Excel-and-do/m-p/856698#M42148</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2023-02-01T17:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: Create a stored process in SAS and execute it from Excel and do not create any excel sheets as o</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-a-stored-process-in-SAS-and-execute-it-from-Excel-and-do/m-p/856737#M42161</link>
      <description>&lt;P&gt;Hello &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/415512"&gt;@Abelp9&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Here is a test stored process that you can create and run in Excel (AMO installed)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname mylib "/home/myuid";
proc sql noprint;
create table mylib.mytable as
select * from sashelp.class;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;It will only create the table mytable in /'home/myuid'.The only thing you would see in excel is "Stored_process_name" executed at&amp;nbsp; date:time.&lt;BR /&gt;There will be no other output in your excel.&lt;BR /&gt;You should be able to execute this stored process with Rest-API too.&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt; has pointed out there must be something in your code that is sending data to excel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2023 20:30:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Create-a-stored-process-in-SAS-and-execute-it-from-Excel-and-do/m-p/856737#M42161</guid>
      <dc:creator>Sajid01</dc:creator>
      <dc:date>2023-02-01T20:30:38Z</dc:date>
    </item>
  </channel>
</rss>

