<?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: Hide some dataset output from Process Flow window in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Hide-some-dataset-output-from-Process-Flow-window/m-p/30964#M4142</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could always put in the proc datasets step ready to delete all the datasets when you are happy with the process and put in a line at the start of your code&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %let g_Debug=Cancel;&lt;/P&gt;&lt;P&gt;then have your proc datasets be something like&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc datasets lib=work nolist;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; delete mytable;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; run &amp;amp;g_debug;&lt;/P&gt;&lt;P&gt;this way while you are testing the tables will be left behind but when you change g_Debug to be blank then the datasets will get deleted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also similar question at &lt;A _jive_internal="true" href="https://communities.sas.com/message/184224#184224"&gt;https://communities.sas.com/message/184224#184224&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Oct 2013 15:19:30 GMT</pubDate>
    <dc:creator>TimCampbell</dc:creator>
    <dc:date>2013-10-15T15:19:30Z</dc:date>
    <item>
      <title>Hide some dataset output from Process Flow window</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Hide-some-dataset-output-from-Process-Flow-window/m-p/30962#M4140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gday,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have lots of code I want to quickly move to Enterprise Guide.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I like that several SAS jobs can be put onto a process flow and have links to each other.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A pit fall of this is that when I run a job which creates lots of datasets, the process flow window is cluttered and the links become very difficult to see.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a long term solution to this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have read that I could prefix all the datasets with &lt;EM&gt;_to&lt;/EM&gt; (&lt;A href="http://blogs.sas.com/sasdummy/index.php?/archives/248-Undocumented-features-theres-a-reason-they-are-not-documented.html"&gt;http://blogs.sas.com/sasdummy/index.php?/archives/248-Undocumented-features-theres-a-reason-they-are-not-documented.html&lt;/A&gt;) but this won't work forever and I wouldn't really want to prefix all my datasets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using PROC DATASETS and clearing the files isn't desirable from my point of view, I want to have those datasets there in case I've stuffed up somewhere.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually now that I think about it, there's an option to suppress the number of output datasets added to a project, am not sure yet if this will do what I want though. (doing this makes it tricky to perform a task on an output dataset).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2011 22:41:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Hide-some-dataset-output-from-Process-Flow-window/m-p/30962#M4140</guid>
      <dc:creator>JohnT</dc:creator>
      <dc:date>2011-10-18T22:41:11Z</dc:date>
    </item>
    <item>
      <title>Hide some dataset output from Process Flow window</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Hide-some-dataset-output-from-Process-Flow-window/m-p/30963#M4141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The clutter is the price you pay for not using PROC DATASETS.&amp;nbsp; Mybe you could add the DATASETS after you are sure things are working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2011 02:05:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Hide-some-dataset-output-from-Process-Flow-window/m-p/30963#M4141</guid>
      <dc:creator>Doc_Duke</dc:creator>
      <dc:date>2011-10-19T02:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: Hide some dataset output from Process Flow window</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Hide-some-dataset-output-from-Process-Flow-window/m-p/30964#M4142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could always put in the proc datasets step ready to delete all the datasets when you are happy with the process and put in a line at the start of your code&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; %let g_Debug=Cancel;&lt;/P&gt;&lt;P&gt;then have your proc datasets be something like&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; proc datasets lib=work nolist;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; delete mytable;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; run &amp;amp;g_debug;&lt;/P&gt;&lt;P&gt;this way while you are testing the tables will be left behind but when you change g_Debug to be blank then the datasets will get deleted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also similar question at &lt;A _jive_internal="true" href="https://communities.sas.com/message/184224#184224"&gt;https://communities.sas.com/message/184224#184224&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Oct 2013 15:19:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Hide-some-dataset-output-from-Process-Flow-window/m-p/30964#M4142</guid>
      <dc:creator>TimCampbell</dc:creator>
      <dc:date>2013-10-15T15:19:30Z</dc:date>
    </item>
    <item>
      <title>Re: Hide some dataset output from Process Flow window</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Hide-some-dataset-output-from-Process-Flow-window/m-p/30965#M4143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have found it useful to change the limit on the number of datasets to add to the Process Flow to 0 as suggested by Quentin in Tim's link above. All datasets are still created but they are not added to the Process Flow. You do get a warning saying the limit has been reached on every flow run, but I can live with that. I think this also helps improve EG performance because it reduces Process Flow maintenance. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Oct 2013 18:59:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Hide-some-dataset-output-from-Process-Flow-window/m-p/30965#M4143</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2013-10-16T18:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: Hide some dataset output from Process Flow window</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Hide-some-dataset-output-from-Process-Flow-window/m-p/256656#M17983</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976"&gt;@SASKiwi﻿&lt;/a&gt;&lt;/P&gt;&lt;P&gt;I know this is an old post, but I am running into the same problem. How do you &lt;SPAN&gt;change the limit on the number of datasets to add to the Process Flow?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2016 22:16:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Hide-some-dataset-output-from-Process-Flow-window/m-p/256656#M17983</guid>
      <dc:creator>JediApprentice</dc:creator>
      <dc:date>2016-03-14T22:16:40Z</dc:date>
    </item>
  </channel>
</rss>

