<?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: Batch submission: -LS ignored or reset in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Batch-submission-LS-ignored-or-reset/m-p/572253#M161483</link>
    <description>&lt;P&gt;What's in your config file?&lt;/P&gt;
&lt;P&gt;Why does the config file have a .sas extension?&lt;/P&gt;
&lt;P&gt;Have you tried adding an = sign?&lt;/P&gt;</description>
    <pubDate>Tue, 09 Jul 2019 22:20:43 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2019-07-09T22:20:43Z</dc:date>
    <item>
      <title>Batch submission: -LS ignored or reset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Batch-submission-LS-ignored-or-reset/m-p/571923#M161358</link>
      <description>&lt;P&gt;I submit the following, which I have edited to obscure the paths:&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;NOTE: CALL EXECUTE generated line.
1    + x '"C:\Program Files\SASHome\SASFoundation\9.4\sas.exe" -ls 120 -CONFIG "C:\Program Files\SASHome\SASFoundation\9.4\nls\en\sasv9.cfg" -NOSPLASH -NOSTATUSWIN -SASUSER !userprofile -ls 120 -SYSIN "
2    + ~\SAS\f02.sas" -NOLOG -ALTLOG "~\LOG\f02.log" -PRINT "
3    + ~\LST\f02.lst" ' ;&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;The log includes:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE: AUTOEXEC processing completed.&lt;/P&gt;
&lt;P&gt;1 /****************************************************&lt;BR /&gt;1 ! ***********************************************&lt;BR /&gt;2 * Program Name :&lt;BR /&gt;2 ! ~\SAS\f02.sas&lt;BR /&gt;3 * Program Type : Tables, Main&lt;BR /&gt;4 * Brief Description : This program&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As a test, I include the following just have this header:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;46         proc options
47            option = ls ;
48         run ;

    SAS (r) Proprietary Software Release 9.4  TS1M5

 LINESIZE=64       Specifies the line size for the SAS log and 
                   for SAS procedure output for the LISTING 
                   destination.&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The autoexec.sas include the LS = 256, too.&amp;nbsp; I am working on Windows 10 Professional and SAS 9.4.&amp;nbsp; Until the program specified by&lt;/P&gt;
&lt;P&gt;-SYSIN executes its OPTIONS statement with LS = 256, the log is too narrow.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would appreciate any advice or references.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kevin&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2019 23:45:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Batch-submission-LS-ignored-or-reset/m-p/571923#M161358</guid>
      <dc:creator>KevinViel</dc:creator>
      <dc:date>2019-07-08T23:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: Batch submission: -LS ignored or reset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Batch-submission-LS-ignored-or-reset/m-p/572253#M161483</link>
      <description>&lt;P&gt;What's in your config file?&lt;/P&gt;
&lt;P&gt;Why does the config file have a .sas extension?&lt;/P&gt;
&lt;P&gt;Have you tried adding an = sign?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2019 22:20:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Batch-submission-LS-ignored-or-reset/m-p/572253#M161483</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-07-09T22:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: Batch submission: -LS ignored or reset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Batch-submission-LS-ignored-or-reset/m-p/573473#M161908</link>
      <description>&lt;P&gt;With apologies, the config file is the standard file, that I modified.&amp;nbsp; It, indeed, has a .cfg extension.&amp;nbsp; I erred editing the code to remove "sensitive" folder names when I posted.&amp;nbsp; When I deleted, I completely erased the config file and presented the argument to -SYSIN.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have discovered that several SAS System Options, like MARGINs, affect LS.&amp;nbsp; I may have solved some of my issues by issuing my LS after I set margins and fonts.&amp;nbsp; Simply:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;options ls = 256 ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kevin&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2019 12:48:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Batch-submission-LS-ignored-or-reset/m-p/573473#M161908</guid>
      <dc:creator>KevinViel</dc:creator>
      <dc:date>2019-07-15T12:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: Batch submission: -LS ignored or reset</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Batch-submission-LS-ignored-or-reset/m-p/573707#M162018</link>
      <description>Glad you worked it out!</description>
      <pubDate>Mon, 15 Jul 2019 21:55:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Batch-submission-LS-ignored-or-reset/m-p/573707#M162018</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-07-15T21:55:12Z</dc:date>
    </item>
  </channel>
</rss>

