<?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 Not able to execute Infile statement in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448554#M29014</link>
    <description>&lt;P&gt;/*Not able to execute Infile statement */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not able to execute one simple code,&lt;/P&gt;&lt;P&gt;what is wrong happening here I don't know...&lt;/P&gt;&lt;P&gt;The code is&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data Work.Test;
	LENGTH
        IN_SCOPE         $ 11
        REPORT_NAME      $ 48
        FORMATTED_DATA_ELEMENT_NAME $ 100
        KIND_OF_ELEMENT  $ 140
        DATA_ELEMENT_NAME $ 50
        DATA_ELEMENT_NAME_DESCRIPTION $ 103
        ACCHERID_EC_ID   $ 10
        KPI              $ 1000
        SOURCE_DEL       $ 69
        TABLE_NAME       $ 50
        COLUMN_NAME      $ 50
        REMARKS          $ 1000
        JIRA_NUMBER      $ 8
        DATE_OF_ENTRY    $ 50
        NAME             $ 8
        IN_PROD          $ 8 
		;
	LABEL
        KIND_OF_ELEMENT  = "KIND OF ELEMENT"
        JIRA_NUMBER      = "JIRA NUMBER"
        IN_PROD          = "IN PROD" 
		;
	Infile "/var/opt/data/data_project/sas94/bire/redwh/data/tmp/Book2.xlsx"
	Missover
	DSD
	;
	INPUT
        IN_SCOPE         : $CHAR11.
        REPORT_NAME      : $CHAR48.
        FORMATTED_DATA_ELEMENT_NAME : $CHAR100.
        KIND_OF_ELEMENT  : $CHAR140.
        DATA_ELEMENT_NAME : $CHAR50.
        DATA_ELEMENT_NAME_DESCRIPTION : $CHAR103.
        ACCHERID_EC_ID   : $CHAR10.
        KPI              : $CHAR1000.
        SOURCE_DEL       : $CHAR69.
        TABLE_NAME       : $CHAR50.
        COLUMN_NAME      : $CHAR50.
        REMARKS          : $CHAR1000.
        JIRA_NUMBER      : $CHAR8.
        DATE_OF_ENTRY    : $CHAR50.
        NAME             : $CHAR8.
        IN_PROD          : $CHAR8.
   ;
Run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;After executing this code I am getting output like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="output.JPG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/19437i6B01E97459BB017A/image-size/large?v=v2&amp;amp;px=999" role="button" title="output.JPG" alt="output.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Why it is happening I really don't know, previously I have executed same code, got outputs, now it is not working, I am using SAS EG 7.13.&lt;/P&gt;&lt;P&gt;More points,&lt;/P&gt;&lt;P&gt;Please suggest how to import .xlsb using the same code. Please mention one option to specify the sheet name, I tried with sheetname option but that is not working.&lt;/P&gt;&lt;P&gt;I am attaching the sample dataset also for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sourav&lt;/P&gt;</description>
    <pubDate>Mon, 26 Mar 2018 04:58:07 GMT</pubDate>
    <dc:creator>Sourav_sas</dc:creator>
    <dc:date>2018-03-26T04:58:07Z</dc:date>
    <item>
      <title>Not able to execute Infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448554#M29014</link>
      <description>&lt;P&gt;/*Not able to execute Infile statement */&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not able to execute one simple code,&lt;/P&gt;&lt;P&gt;what is wrong happening here I don't know...&lt;/P&gt;&lt;P&gt;The code is&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data Work.Test;
	LENGTH
        IN_SCOPE         $ 11
        REPORT_NAME      $ 48
        FORMATTED_DATA_ELEMENT_NAME $ 100
        KIND_OF_ELEMENT  $ 140
        DATA_ELEMENT_NAME $ 50
        DATA_ELEMENT_NAME_DESCRIPTION $ 103
        ACCHERID_EC_ID   $ 10
        KPI              $ 1000
        SOURCE_DEL       $ 69
        TABLE_NAME       $ 50
        COLUMN_NAME      $ 50
        REMARKS          $ 1000
        JIRA_NUMBER      $ 8
        DATE_OF_ENTRY    $ 50
        NAME             $ 8
        IN_PROD          $ 8 
		;
	LABEL
        KIND_OF_ELEMENT  = "KIND OF ELEMENT"
        JIRA_NUMBER      = "JIRA NUMBER"
        IN_PROD          = "IN PROD" 
		;
	Infile "/var/opt/data/data_project/sas94/bire/redwh/data/tmp/Book2.xlsx"
	Missover
	DSD
	;
	INPUT
        IN_SCOPE         : $CHAR11.
        REPORT_NAME      : $CHAR48.
        FORMATTED_DATA_ELEMENT_NAME : $CHAR100.
        KIND_OF_ELEMENT  : $CHAR140.
        DATA_ELEMENT_NAME : $CHAR50.
        DATA_ELEMENT_NAME_DESCRIPTION : $CHAR103.
        ACCHERID_EC_ID   : $CHAR10.
        KPI              : $CHAR1000.
        SOURCE_DEL       : $CHAR69.
        TABLE_NAME       : $CHAR50.
        COLUMN_NAME      : $CHAR50.
        REMARKS          : $CHAR1000.
        JIRA_NUMBER      : $CHAR8.
        DATE_OF_ENTRY    : $CHAR50.
        NAME             : $CHAR8.
        IN_PROD          : $CHAR8.
   ;
Run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;After executing this code I am getting output like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="output.JPG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/19437i6B01E97459BB017A/image-size/large?v=v2&amp;amp;px=999" role="button" title="output.JPG" alt="output.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Why it is happening I really don't know, previously I have executed same code, got outputs, now it is not working, I am using SAS EG 7.13.&lt;/P&gt;&lt;P&gt;More points,&lt;/P&gt;&lt;P&gt;Please suggest how to import .xlsb using the same code. Please mention one option to specify the sheet name, I tried with sheetname option but that is not working.&lt;/P&gt;&lt;P&gt;I am attaching the sample dataset also for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sourav&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 04:58:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448554#M29014</guid>
      <dc:creator>Sourav_sas</dc:creator>
      <dc:date>2018-03-26T04:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to execute Infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448555#M29015</link>
      <description>&lt;P&gt;You can't import a spreadsheet via a DATA step like it was a text file. Best way is to FILE SAVE AS to a CSV file in Excel then your code will most likely work.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 05:04:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448555#M29015</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-03-26T05:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to execute Infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448563#M29016</link>
      <description>&lt;P&gt;Thanks for the help, can you just help me with other options I asked for. below my post.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 06:39:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448563#M29016</guid>
      <dc:creator>Sourav_sas</dc:creator>
      <dc:date>2018-03-26T06:39:45Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to execute Infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448564#M29017</link>
      <description>&lt;P&gt;Any Excel-type workbook cannot be read the way you are trying - XLS, XLSB, XLSX. The INFILE statement requires a text file as input with data in fixed or delimited columns. You need to convert your Excel file using FILE SAVE AS in Excel to a delimited-column file to use the code you have.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 07:13:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448564#M29017</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-03-26T07:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to execute Infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448573#M29019</link>
      <description>&lt;P&gt;This code is most probably code you have taken from a Enterprise Guide Import task.&lt;/P&gt;
&lt;P&gt;Enterprise Guide converts the Excel file locally to a standardized text format, sends that text to the server, and executes the data step there.&lt;/P&gt;
&lt;P&gt;Without the EG conversion, you can't read the Excel file in a data step.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One workaround is to achieve the conversion to text by saving to csv from Excel, but be aware that the resulting file will look diferently from what EG created, so you will have to adapt the data step code to that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another workaround is to use proc import with dbms=xlsx, which needs a SAS ACCESS to PC Files license; with that license, you can also use libname xlsx to treat the Excel workbook like a SAS library. Both of those methods are not suitable for any kind of production use, as they force SAS to make guesses about the contents, which will lead to structurally different datasets with each execution for a new input.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bottom line: use a textual format for data transfer between applications, it is the only way where you keep control of the process.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 08:50:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448573#M29019</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-03-26T08:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to execute Infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448575#M29020</link>
      <description>&lt;P&gt;Hi Sourav_sas,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your question.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i will attempt to assist you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My Understanding:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You wish to import an excel file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Suggested Solution:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Title&lt;STRONG&gt; "&lt;/STRONG&gt;PutAtitleHere&lt;STRONG&gt;"&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp; proc import out = Output;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Datafile= '\\PlacePath Where File can be found\.xls';&lt;/P&gt;&lt;P&gt;&amp;nbsp; DBMS=Excel2010 Replace;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Sheet='Sheet1';&lt;/P&gt;&lt;P&gt;&amp;nbsp; GETNAMES=YES;&lt;/P&gt;&lt;P&gt;&amp;nbsp; MIXED=NO;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Notes&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;It is best to convert your excel file to csv. Do this by using the Save As option in excel.&lt;/P&gt;&lt;P&gt;Excel tends to tamper with the data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;New_2_this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 09:00:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448575#M29020</guid>
      <dc:creator>New_2_this</dc:creator>
      <dc:date>2018-03-26T09:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to execute Infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448580#M29021</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/148042"&gt;@Sourav_sas&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;Just adding to what &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;&amp;nbsp;writes:&lt;/P&gt;
&lt;P&gt;1. If this is an ad-hoc task and the data in your Excel changes then just keep things as they were when you've used the import wizard. Leave this wizard in the code and if the Excel changes just drop it onto the same place in your local environment and execute the EG task again.&lt;/P&gt;
&lt;P&gt;2. If you just use EG to generate the code but the Excel will later on reside on the SAS Server side: That's not going to work! As explained SAS EG does locally the conversion&amp;nbsp;for you (client side)&amp;nbsp;and then sends a text file to the SAS Server. The generated SAS data step is for this converted text file. ...and you're getting this "weird" path in the code as this is the path pointing to this temporarily created text file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Excel files are not simple text files. If you want to get some insights what .xlsx and .xlsb really are: Use a tool like WinZip and try to open the .xlsx. That will show you that this is actually an archive with lots of XML files in it.&lt;/P&gt;
&lt;P&gt;.XLSB is different. The ...b stands for "binary" so here you need Microsoft Excel components to access anything.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 09:31:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448580#M29021</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2018-03-26T09:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to execute Infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448707#M29036</link>
      <description>&lt;P&gt;Thanks Patrick and Kurt and others also,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Right now this following code is working&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA Work.META_FINREP_REG_5_FORMSCOLUMN;
    LENGTH
        REPORT_KEY       $ 50
        REPORT_VARIANT   $ 50
        COLUMN_TEXT      $ 500
        PAGE             $ 2
        ROW1             $ 4
        COLUMN1          $ 4
        VALID_FROM         8
        VALID_TO           8
        LOAD_TIMESTAMP     8 ;
    FORMAT
        REPORT_KEY       $CHAR50.
        REPORT_VARIANT   $CHAR50.
        COLUMN_TEXT      $CHAR500.
        PAGE             $CHAR2.
        ROW1             $CHAR4.
        COLUMN1          $CHAR4.
        VALID_FROM       DATETIME20.
        VALID_TO         DATETIME20.
        LOAD_TIMESTAMP   DATETIME20. ;
    INFORMAT
        REPORT_KEY       $CHAR50.
        REPORT_VARIANT   $CHAR50.
        COLUMN_TEXT      $CHAR500.
        PAGE             $CHAR2.
        ROW1             $CHAR4.
        COLUMN1          $CHAR4.
        VALID_FROM       DATETIME20.
        VALID_TO         DATETIME20.
        LOAD_TIMESTAMP   DATETIME20. ;
    INFILE "/var/opt/data/data_project/sas94/bire/redwh/data/tmp/Record.csv"
        MISSOVER
		TRUNCOVER
        DSD 
		FIRSTOBS = 2
		;
    INPUT
        REPORT_KEY       : $CHAR50.
        REPORT_VARIANT   : $CHAR50.
        COLUMN_TEXT      : $CHAR500.
        PAGE             : $CHAR2.
        ROW1             : $CHAR4.
        COLUMN1          : $CHAR4.
        VALID_FROM       : DATETIME20.
        VALID_TO         : DATETIME20.
        LOAD_TIMESTAMP   : DATETIME20. 
;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But I have another challenge&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my raw dataset&lt;/P&gt;&lt;P&gt;one column is there named "COLUMN_TEXT". In this column I have some data like "übernommene VG". This one is germen format.&lt;/P&gt;&lt;P&gt;When I am importing this one, in SAS output it is coming as &lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="disc.JPG" style="width: 273px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/19450iD18E8C22FAC1760E/image-size/large?v=v2&amp;amp;px=999" role="button" title="disc.JPG" alt="disc.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;How can I solve this one. I am trying with different formats but it is not working.&lt;/P&gt;&lt;P&gt;Can you help me on this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sourav&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 16:40:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448707#M29036</guid>
      <dc:creator>Sourav_sas</dc:creator>
      <dc:date>2018-03-26T16:40:37Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to execute Infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448725#M29037</link>
      <description>&lt;P&gt;If the text is not appearing correctly then you have an issue with the ENCODING.&amp;nbsp; Most likely you are running SAS with a single byte encoding and the data file is use multi-byte UTF-8 encoding.&amp;nbsp; In that case you need to start sas using UTF-8 encoding.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is a small possibility that the source file is using a different single byte encoding than your SAS session. In that case you can try the ENCODING option on the INFILE statement to tell it what encoding to use when reading the file.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 17:21:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448725#M29037</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2018-03-26T17:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to execute Infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448750#M29040</link>
      <description>&lt;P&gt;Thanks SASKiwi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I came to know about a different option is SAS, But I have tried with&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;INFILE "/var/opt/data/data_project/sas94/bire/redwh/data/tmp/Record.csv"
        MISSOVER
		TRUNCOVER
        DSD 
		ENCODING = "utf-8"
		FIRSTOBS = 2
		;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This option&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Still the output is coming as the previous one. I am using SAS EG 7.13&lt;/P&gt;&lt;P&gt;and the format I have in that column as germen.&lt;/P&gt;&lt;P&gt;Can you help me with some different option here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sourav&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 17:40:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448750#M29040</guid>
      <dc:creator>Sourav_sas</dc:creator>
      <dc:date>2018-03-26T17:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to execute Infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448772#M29043</link>
      <description>&lt;P&gt;Try&lt;/P&gt;
&lt;PRE&gt;encoding=wlatin1&lt;/PRE&gt;
&lt;P&gt;wlatin1 is typical for Western Europe.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 18:20:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448772#M29043</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-03-26T18:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to execute Infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448773#M29044</link>
      <description>&lt;P&gt;Finally got..&lt;/P&gt;&lt;P&gt;Thanks Kurt for helping..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sourav&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 18:23:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448773#M29044</guid>
      <dc:creator>Sourav_sas</dc:creator>
      <dc:date>2018-03-26T18:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: Not able to execute Infile statement</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448774#M29045</link>
      <description>&lt;P&gt;Thanks Tom for your help me complete the import program.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sourav&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 18:25:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Not-able-to-execute-Infile-statement/m-p/448774#M29045</guid>
      <dc:creator>Sourav_sas</dc:creator>
      <dc:date>2018-03-26T18:25:57Z</dc:date>
    </item>
  </channel>
</rss>

