<?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: How to stop creation of .lst file in batch? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-stop-creation-of-lst-file-in-batch/m-p/101202#M258133</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also ODS LISTING CLOSE; will shut off listing output, you can put it at the start of your program if you want to turn off listing output globally&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Jun 2013 13:33:40 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2013-06-10T13:33:40Z</dc:date>
    <item>
      <title>How to stop creation of .lst file in batch?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-stop-creation-of-lst-file-in-batch/m-p/101199#M258130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one macro (filename.sas) and I call this macro for the purpose of creation of SAS grpahs and tables(having proc report,sgplot,gplot etc);There are many instances when this macros is called simultaneously by one SAS program( macro_call.sas) using %include&amp;nbsp; ; To understand problem better program (macro_call.sas) is executed multiple time which inturn calls macro (filenam.sas) . during execution some intances gets error saying that macro_call.lst file is in use . Reason is that each instance uses the same file macro_call.lst to update the lisitng .Is there any way that .LST file is not created in batch mode of the exection?I do not require it for my purpose I know that I may have to modify SAS configuarion fiile so that it does not create it ; But It would be nice if I get multiple options to choose from and then decide which suits best to me ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 11:51:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-stop-creation-of-lst-file-in-batch/m-p/101199#M258130</guid>
      <dc:creator>ucvikas</dc:creator>
      <dc:date>2013-06-10T11:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop creation of .lst file in batch?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-stop-creation-of-lst-file-in-batch/m-p/101200#M258131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why do you havea .sas-prgram to make the macro calls? Is there a lot of other logic going on there a part from the macro call?&lt;/P&gt;&lt;P&gt;Haven't had this issue myself, but my guess is that some proc or something else generates listing output, try to spot these. For instance, use the NOLIST option with Proc SQL.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 12:19:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-stop-creation-of-lst-file-in-batch/m-p/101200#M258131</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2013-06-10T12:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop creation of .lst file in batch?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-stop-creation-of-lst-file-in-batch/m-p/101201#M258132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sounds like the macro is hard coded to write to that lst file. Perhaps it has a PROC PRINTTO or some other method to redirect listing output?&lt;/P&gt;&lt;P&gt;You should turn that off.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 13:10:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-stop-creation-of-lst-file-in-batch/m-p/101201#M258132</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-06-10T13:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop creation of .lst file in batch?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-stop-creation-of-lst-file-in-batch/m-p/101202#M258133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also ODS LISTING CLOSE; will shut off listing output, you can put it at the start of your program if you want to turn off listing output globally&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 13:33:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-stop-creation-of-lst-file-in-batch/m-p/101202#M258133</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2013-06-10T13:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop creation of .lst file in batch?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-stop-creation-of-lst-file-in-batch/m-p/101203#M258134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks every one for your suggestions . I found proc printto to create .lst file with different name and then clear it at the end of process ;so that I dont get locking kind of errors. For the time being it seems to be good as going via config file change route will require more effort as I am not admin. &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jun 2013 15:18:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-stop-creation-of-lst-file-in-batch/m-p/101203#M258134</guid>
      <dc:creator>ucvikas</dc:creator>
      <dc:date>2013-06-10T15:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop creation of .lst file in batch?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-stop-creation-of-lst-file-in-batch/m-p/101204#M258135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for this suggestion.&amp;nbsp; I had difficulty with batch load of datasets to LASR using cron.&amp;nbsp; No problem loading to HDFS, but when loading to LASR the program's .lst file was locking processes when multiple jobs needed to run.&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;ODS LISTING CLOSE;&lt;/SPAN&gt; suppressed the file entirely and solved the problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 17:35:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-stop-creation-of-lst-file-in-batch/m-p/101204#M258135</guid>
      <dc:creator>DominicDavis</dc:creator>
      <dc:date>2014-04-16T17:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to stop creation of .lst file in batch?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-stop-creation-of-lst-file-in-batch/m-p/101205#M258136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sounds like by not using the LASR en HDFS would also solve your problem.&lt;/P&gt;&lt;P&gt;When you need the information by .lst en .log use date/time/pid indicators as common for EIP using server log files.&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 18:01:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-stop-creation-of-lst-file-in-batch/m-p/101205#M258136</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2014-04-16T18:01:30Z</dc:date>
    </item>
  </channel>
</rss>

