<?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: Avoiding broken lines when output to file in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130056#M26555</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for helping Tom.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually I don't want to create a new variable into my new_table: I want to call and execute the code (if/then clauses) written into myprogram.txt for an existing mysample table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Oct 2013 15:57:12 GMT</pubDate>
    <dc:creator>ntro</dc:creator>
    <dc:date>2013-10-31T15:57:12Z</dc:date>
    <item>
      <title>Avoiding broken lines when output to file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130052#M26551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am generating&amp;nbsp; "if/then" clauses by concatening different variables from a dataset. I end with a variable named&amp;nbsp; X whose the longest record has 928 characters. Then I export this variable X into a TXT file so I can call this file whenever I need in a data-set step:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_;&lt;/P&gt;&lt;P&gt;set mytable;&lt;/P&gt;&lt;P&gt;FILE&amp;nbsp; "C:\myprogram.txt" ; &lt;/P&gt;&lt;P&gt;PUT X; &lt;/P&gt;&lt;P&gt;run ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data mysample;&lt;/P&gt;&lt;P&gt;set mysample;&lt;/P&gt;&lt;P&gt;infile&amp;nbsp; "C:\myprogram.txt" ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem is that the export to the TXT file has broken lines after 255 characters, causing errors in the data-set step.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone knows how to avoid this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;ntro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Oct 2013 11:44:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130052#M26551</guid>
      <dc:creator>ntro</dc:creator>
      <dc:date>2013-10-31T11:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: Avoiding broken lines when output to file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130053#M26552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the LRECL option on the FILE statement to use a longer line length.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Oct 2013 11:49:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130053#M26552</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-10-31T11:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: Avoiding broken lines when output to file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130054#M26553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much Tom. I feel like a newbie (which I am not but since I am a self-taught SASer, I miss some basics)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am now using the TXT file in the data-set step:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data mysample;&lt;/P&gt;&lt;P&gt;set mysample;&lt;/P&gt;&lt;P&gt;put "C:\myprogram.txt" ; /* I wrote "infile" in my 1st post which I think is not correct */&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it doesn't seem to work. The log shows thousands of "C:\myprogram.txt" lines; there is no error but the result is not what I expect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I missing something (again)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Oct 2013 15:18:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130054#M26553</guid>
      <dc:creator>ntro</dc:creator>
      <dc:date>2013-10-31T15:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Avoiding broken lines when output to file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130055#M26554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the step that is WRITING the text file.&amp;nbsp; Make the LRECL longer than any possible value that you want to write on any one line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;data _null_;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; set mytable;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; FILE&amp;nbsp; "C:\myprogram.txt" lrecl=30000;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; PUT X;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;If you want to read it back in again make sure to also include LRECL on the INFILE statement to prevent SAS from truncating the lines on the way in.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;data new_table;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; INF&lt;/SPAN&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;ILE&amp;nbsp; "C:\myprogram.txt" lrecl=30000 truncover;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; INPUT X $1000. ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run ;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Oct 2013 15:28:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130055#M26554</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-10-31T15:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: Avoiding broken lines when output to file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130056#M26555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for helping Tom.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually I don't want to create a new variable into my new_table: I want to call and execute the code (if/then clauses) written into myprogram.txt for an existing mysample table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Oct 2013 15:57:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130056#M26555</guid>
      <dc:creator>ntro</dc:creator>
      <dc:date>2013-10-31T15:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: Avoiding broken lines when output to file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130057#M26556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use %INCLUDE statement to pull in code from an existing text file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%include "c:\myprogram.txt" ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The file should contain complete statements.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Oct 2013 16:11:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130057#M26556</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-10-31T16:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: Avoiding broken lines when output to file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130058#M26557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We're getting closer!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had some (red) errors in the log so I tried &lt;/P&gt;&lt;P&gt;%include "c:\myprogram.txt" /S2=30000;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the only warning I have is "truncated record" (it is in french so I cannot guarantee how it looks like in english).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Oct 2013 17:13:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130058#M26557</guid>
      <dc:creator>ntro</dc:creator>
      <dc:date>2013-10-31T17:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Avoiding broken lines when output to file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130059#M26558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the real solution is to fix the logic that is generating the code.&lt;/P&gt;&lt;P&gt;Personally I like to use a SAS data step to generate code as I can then take advantage of the power of the put statement.&lt;/P&gt;&lt;P&gt;For example try this little example of generating code to re-create the AGE variable from the NAME variable in SASHELP.CLASS.&amp;nbsp; (it is a contrived example I know).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;filename code temp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;data _null_;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; set sashelp.class end=eof ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; file code ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; if _n_=1 then put 'select (name);' ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; put @3 'when (' name :$quote. ') ' age= ';' ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; if eof then put @3 'otherwise age=.;' / 'end;' ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;data want ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; set sashelp.class (drop=age);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;%inc code / source2;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;proc compare data=want compare=sashelp.class;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1472&amp;nbsp;&amp;nbsp; data want ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1473&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set sashelp.class (drop=age);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1474&amp;nbsp;&amp;nbsp; %inc code / source2;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;NOTE: %INCLUDE (level 1) file CODE is file .../#LN00236.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1475&amp;nbsp; +select (name);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1476&amp;nbsp; +&amp;nbsp; when ("Alfred" ) Age=14 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1477&amp;nbsp; +&amp;nbsp; when ("Alice" ) Age=13 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1478&amp;nbsp; +&amp;nbsp; when ("Barbara" ) Age=13 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1479&amp;nbsp; +&amp;nbsp; when ("Carol" ) Age=14 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1480&amp;nbsp; +&amp;nbsp; when ("Henry" ) Age=14 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1481&amp;nbsp; +&amp;nbsp; when ("James" ) Age=12 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1482&amp;nbsp; +&amp;nbsp; when ("Jane" ) Age=12 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1483&amp;nbsp; +&amp;nbsp; when ("Janet" ) Age=15 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1484&amp;nbsp; +&amp;nbsp; when ("Jeffrey" ) Age=13 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1485&amp;nbsp; +&amp;nbsp; when ("John" ) Age=12 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1486&amp;nbsp; +&amp;nbsp; when ("Joyce" ) Age=11 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1487&amp;nbsp; +&amp;nbsp; when ("Judy" ) Age=14 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1488&amp;nbsp; +&amp;nbsp; when ("Louise" ) Age=12 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1489&amp;nbsp; +&amp;nbsp; when ("Mary" ) Age=15 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1490&amp;nbsp; +&amp;nbsp; when ("Philip" ) Age=16 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1491&amp;nbsp; +&amp;nbsp; when ("Robert" ) Age=12 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1492&amp;nbsp; +&amp;nbsp; when ("Ronald" ) Age=15 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1493&amp;nbsp; +&amp;nbsp; when ("Thomas" ) Age=11 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1494&amp;nbsp; +&amp;nbsp; when ("William" ) Age=15 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1495&amp;nbsp; +&amp;nbsp; otherwise age=.;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1496&amp;nbsp; +end;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;NOTE: %INCLUDE (level 1) ending.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;1497&amp;nbsp;&amp;nbsp; run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: There were 19 observations read from the data set SASHELP.CLASS.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WANT has 19 observations and 5 variables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Oct 2013 18:04:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130059#M26558</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-10-31T18:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: Avoiding broken lines when output to file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130060#M26559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tom,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I added the LRECL option (%include /LRECL=2000) and it works now perfectly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your patience.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Nov 2013 09:17:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Avoiding-broken-lines-when-output-to-file/m-p/130060#M26559</guid>
      <dc:creator>ntro</dc:creator>
      <dc:date>2013-11-04T09:17:09Z</dc:date>
    </item>
  </channel>
</rss>

