<?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 get rid of WARNING - pipe delimited infile read option in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/565033#M11134</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/277357"&gt;@pdata&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I tried with all the possible Encoding options:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I use Encoding = 'UTF-8'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I have error as follows&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"A byte order mark indicates that the data is encoded in "utf-16le". This conflicts with the "utf-8" encoding that was specified for the fileref&lt;/P&gt;
&lt;P&gt;"#LN00124".&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Changing the encoding that you ask SAS to use when reading the file probably will not help you.&amp;nbsp; If the file contains a character that cannot be mapped into WLATIN1 (which is a single byte encoding) then you will get that error.&lt;/P&gt;</description>
    <pubDate>Mon, 10 Jun 2019 20:09:46 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2019-06-10T20:09:46Z</dc:date>
    <item>
      <title>How to get rid of WARNING - pipe delimited infile read option</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/564946#M11122</link>
      <description>&lt;DIV&gt;Hi SAS,&lt;/DIV&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data readocr;
INFILE '\\sample_src_files\infile_read.txt'
        LRECL=32767 
        encoding='utf-16le'
        TERMSTR=CRLF
        DLM='|'
/*        MISSOVER*/
        DSD firstobs=1 ;
    input
           test_id : $char20.
           test_question_id : $char20.
           test_question_description : $char300.
           test_answer_id : $char10.
           test_answer_description : $char200.
           test_response_value : $char4000.
           test_response_type : $char200.
 
;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;DIV&gt;I have an instance to read the raw data file.&lt;/DIV&gt;&lt;DIV&gt;No matter what I try with different encoding options... I still get to see the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#38761d"&gt;WARNING: A character that could not be transcoded was encountered.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Could you please suggest how to get rid of this warning.&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Sample Data and code are attached.&lt;/DIV&gt;</description>
      <pubDate>Mon, 10 Jun 2019 16:26:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/564946#M11122</guid>
      <dc:creator>pdata</dc:creator>
      <dc:date>2019-06-10T16:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to get rid of WARNING - pipe delimited infile read option</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/564952#M11123</link>
      <description>&lt;P&gt;What encoding is your SAS session using?&amp;nbsp; If you are using a single byte encoding like LATIN1 then there are only 256 possible character codes that SAS can attempt to transcode the characters into.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Make sure to run the code with a SAS session that is using UTF-8 encoding.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 16:33:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/564952#M11123</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-06-10T16:33:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to get rid of WARNING - pipe delimited infile read option</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/564953#M11124</link>
      <description>&lt;P&gt;my SAS Session is using edcoding as "WLATIN1"&lt;/P&gt;&lt;PRE class="codeFragment"&gt;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 16:36:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/564953#M11124</guid>
      <dc:creator>pdata</dc:creator>
      <dc:date>2019-06-10T16:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to get rid of WARNING - pipe delimited infile read option</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/564954#M11125</link>
      <description>&lt;P&gt;I tried with all the possible Encoding options:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I use Encoding = 'UTF-8'&lt;/P&gt;&lt;P&gt;&amp;nbsp;I have error as follows&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"A byte order mark indicates that the data is encoded in "utf-16le". This conflicts with the "utf-8" encoding that was specified for the fileref&lt;/P&gt;&lt;P&gt;"#LN00124".&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 16:40:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/564954#M11125</guid>
      <dc:creator>pdata</dc:creator>
      <dc:date>2019-06-10T16:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to get rid of WARNING - pipe delimited infile read option</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/564957#M11126</link>
      <description>So start SAS in a different way so that you are using an UTF-8 encoding instead.&lt;BR /&gt;How are you running SAS? Are you using SAS Display Manager to run SAS interactively?  Just running background/batch jobs? Are you using some other interface like Enterprise Guide or SAS/Studio?  Depending on how you are running SAS the instructions for how to open a session that is using UTF-8 is different.&lt;BR /&gt;</description>
      <pubDate>Mon, 10 Jun 2019 16:52:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/564957#M11126</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-06-10T16:52:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to get rid of WARNING - pipe delimited infile read option</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/564975#M11128</link>
      <description>&lt;P&gt;I am using SAS Enterprise Guide to execute the code&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 17:38:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/564975#M11128</guid>
      <dc:creator>pdata</dc:creator>
      <dc:date>2019-06-10T17:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to get rid of WARNING - pipe delimited infile read option</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/565031#M11133</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/277357"&gt;@pdata&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I am using SAS Enterprise Guide to execute the code&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;In Enterprise Guide you have to tell it what server you are connecting to.&amp;nbsp; If your shop has setup SAS properly you should be able to just select a different server to connect to that is using UTF-8 encoding.&amp;nbsp; Then you will have a better chance of being able to read the file.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 20:07:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/565031#M11133</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-06-10T20:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to get rid of WARNING - pipe delimited infile read option</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/565033#M11134</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/277357"&gt;@pdata&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I tried with all the possible Encoding options:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I use Encoding = 'UTF-8'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I have error as follows&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"A byte order mark indicates that the data is encoded in "utf-16le". This conflicts with the "utf-8" encoding that was specified for the fileref&lt;/P&gt;
&lt;P&gt;"#LN00124".&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Changing the encoding that you ask SAS to use when reading the file probably will not help you.&amp;nbsp; If the file contains a character that cannot be mapped into WLATIN1 (which is a single byte encoding) then you will get that error.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 20:09:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/565033#M11134</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-06-10T20:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to get rid of WARNING - pipe delimited infile read option</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/565052#M11137</link>
      <description>&lt;P&gt;do we have an option to read including special characters etc?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My organisation uses only BASE SAS.. I use SAS EG just because I can save my work as project and I can also use EG features.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What so ever, though I am using EG... I don't have any servers or Metadata defined.&lt;/P&gt;&lt;P&gt;I am working on a SAS Datawarehouse project... All my target tables are in the form of SAS Datasets and are accessed though Libnames.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What best I can do to get rid of the WARNING:?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is there a way to read the sample record from .txt file that I provided with out Warning?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 20:40:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/565052#M11137</guid>
      <dc:creator>pdata</dc:creator>
      <dc:date>2019-06-10T20:40:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to get rid of WARNING - pipe delimited infile read option</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/565062#M11138</link>
      <description>&lt;P&gt;So if you are running SAS locally then make sure to start it with Unicode support. On my PC there are multiple start menu options to start SAS with different settings.&amp;nbsp; If you are using EG to run SAS on your PC then you should also be able to do that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could also just try setting ENCODING=ANY and see what type of gibberish is in the file.&amp;nbsp; In the 16 bit encoding that the BOM (Byte Order Mark) at the beginning of your file says it is using each character takes two bytes (16 bits).&amp;nbsp; So read it in two byte chunks and see what are the goofy characters and where are they.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Normal 7-bit ASCII codes will always have '00' as the second by in that encoding.&amp;nbsp; So here is a data step that will show what it is that is confusing SAS.&amp;nbsp; The first thing it lists is the BOM itself.&amp;nbsp; So it looks like the code 'FCFF'x is what is causing the trouble.&amp;nbsp; I don't think that is a valid character in any encoding.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;58    data _null_;
59     infile "&amp;amp;path/infile_read.txt" recfm=f lrecl=2 encoding=any ;
60     input x $char2.;
61     if substr(x,2) ne '00'x then
62     put _n_= 3. +1 x= $2. +1 x $hex4. ;
63    run;

NOTE: The infile ".../infile_read.txt" is:
      Filename=...\infile_read.txt,
      RECFM=F,LRECL=2,File Size (bytes)=288,
      Last Modified=10Jun2019:11:48:31,
      Create Time=10Jun2019:11:47:31

_N_=1  x=ÿþ  FFFE
_N_=137  x=üÿ  FCFF
NOTE: 144 records were read from the infile ".../infile_read.txt".
&lt;/PRE&gt;</description>
      <pubDate>Mon, 10 Jun 2019 21:06:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/565062#M11138</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-06-10T21:06:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to get rid of WARNING - pipe delimited infile read option</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/565064#M11139</link>
      <description>&lt;P&gt;Till now, I just got to see "?"&amp;nbsp; and "-&amp;gt;" when I read the file using import wizard... both using BASE SAS and EG.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With your code I get to see the same multiple strange special characters.&lt;/P&gt;&lt;P&gt;And also noticed that "1" line of raw datafile is read as 144 records as per the NOTE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much Tom, do you have any more suggestions for me.&lt;/P&gt;&lt;P&gt;My requirement is I keep receiving such kind of files with out cleansing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for all your effect.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 21:18:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/565064#M11139</guid>
      <dc:creator>pdata</dc:creator>
      <dc:date>2019-06-10T21:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to get rid of WARNING - pipe delimited infile read option</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/565077#M11141</link>
      <description>&lt;P&gt;Then tell them to not send files with strange characters in them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 22:40:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/565077#M11141</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-06-10T22:40:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to get rid of WARNING - pipe delimited infile read option</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/565275#M11163</link>
      <description>&lt;P&gt;Hi Tom,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way or SAS process to convert UTF-16 file format to ASCI or UTF-8 with out changing the "&lt;SPAN&gt;sasv9.cfg" file.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2019 14:43:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/565275#M11163</guid>
      <dc:creator>pdata</dc:creator>
      <dc:date>2019-06-11T14:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to get rid of WARNING - pipe delimited infile read option</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/565285#M11164</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/277357"&gt;@pdata&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Tom,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a way or SAS process to convert UTF-16 file format to ASCI or UTF-8 with out changing the "&lt;SPAN&gt;sasv9.cfg" file.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The code I posted using ENCODING=ANY on the INFILE statement will let you read in the double byte characters.&amp;nbsp; You can then role you own translation if you want.&amp;nbsp; You could try using the UNICODE() function.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=nlsref&amp;amp;docsetTarget=p1s61kmqg61m29n109i6dz4ivkbw.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en"&gt;https://documentation.sas.com/?docsetId=nlsref&amp;amp;docsetTarget=p1s61kmqg61m29n109i6dz4ivkbw.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not sure what you are going to do with codes like 'FCFF'x.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jun 2019 15:05:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/565285#M11164</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-06-11T15:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to get rid of WARNING - pipe delimited infile read option</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/566606#M11369</link>
      <description>&lt;P&gt;I have added this..not sure if its a right way to do... but it worked for me&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created a copy of the source file using windows TYPE command... thus the file is of ASCI format.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;copy the source file using windows TYPE command to CURRENT folder:&lt;/P&gt;&lt;P&gt;FLG holds the 0/1&amp;nbsp;&lt;/P&gt;&lt;P&gt;0- successful copy&lt;/P&gt;&lt;P&gt;1- error&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;options noxwait;&lt;/P&gt;&lt;P&gt;Data _null_;&lt;/P&gt;&lt;P&gt;flg = system("type &amp;amp;filepath.\&amp;amp;&amp;amp;&amp;amp;f_name&amp;amp;i. &amp;gt; &amp;amp;filepath.\Current\&amp;amp;&amp;amp;&amp;amp;f_name&amp;amp;i.");&lt;/P&gt;&lt;P&gt;put flg = ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data read_src;&lt;/P&gt;&lt;P&gt;infile "&amp;amp;filepath.\Current\&amp;amp;&amp;amp;&amp;amp;f_name&amp;amp;i."&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;lrecl=2500&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; termster=crlf&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dlm='|'&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; missover&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dsd&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; firstobs=2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2019 15:08:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-to-get-rid-of-WARNING-pipe-delimited-infile-read-option/m-p/566606#M11369</guid>
      <dc:creator>pdata</dc:creator>
      <dc:date>2019-06-17T15:08:26Z</dc:date>
    </item>
  </channel>
</rss>

