<?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: Recommender System test (Physical file does not exist) in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/552057#M9099</link>
    <description>&lt;P&gt;If this is part of a course then I think you will need to contact the course organisers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this is something that SAS provide then I think you might have to contact SAS Technical Support.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alternatively you could try asking the question on another forum, e.g. Stack Overflow (&lt;A href="https://stackoverflow.com/" target="_blank"&gt;https://stackoverflow.com/&lt;/A&gt;) to see if anyone there can help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amir.&lt;/P&gt;</description>
    <pubDate>Thu, 18 Apr 2019 11:27:40 GMT</pubDate>
    <dc:creator>Amir</dc:creator>
    <dc:date>2019-04-18T11:27:40Z</dc:date>
    <item>
      <title>Recommender System test (Physical file does not exist)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/551000#M8892</link>
      <description>&lt;P&gt;Hello SAS community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm a new user in SAS platform, I actually want to test the Recommender System that I found &lt;A href="https://documentation.sas.com/?docsetId=casanpg&amp;amp;docsetTarget=n1n8e3sbrqaetun123y60d8vli7g.htm&amp;amp;docsetVersion=8.3&amp;amp;locale=en" target="_self"&gt;Here&lt;/A&gt; for my project that consists of recommending some documents from&amp;nbsp;a&amp;nbsp;&lt;SPAN&gt;database containing some issues faced by operators in their production line.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I'm now using a trial version of&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;SAS Visual Analytics environment&amp;nbsp;&lt;/STRONG&gt;to test the Recommender System but i'm facing the frequent problem "Physical file does not exist".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I tried very times to find a solution from similar problems posted in the community but I didn't find a solution because I'm just beginning to work with SAS.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please tell me first if I chose the best way to work on my project &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; .&lt;BR /&gt;Second: Why SAS did not recognize the file while it is loaded into the&amp;nbsp;&lt;STRONG&gt;sasserver.demo.sas.com.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This is my first part of the code:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;cas casauto host="sasserver.demo.sas.com" port=5570;

libname mycas cas;

/* Loading data */

filename books '/Users/chaabolla30@gmail.com/My Folder/Data/BX-books.csv' encoding="wlatin1" lrecl=32767;

data mycas.books(drop='Image'n:);
  infile books firstobs = 2 dsd delimiter = ';';
  /* Read the whole line. */
  input @;
  /* Convert HTML entities (such as &amp;amp;amp;) to single characters. */
  _infile_ = htmldecode(_infile_);
  /* Convert backslash and quotation mark to double quotation marks. */
  _infile_ = tranwrd(_infile_, '\"', '""');

  length tmpisbn $13.;
  length ISBN $10. Title Author Publisher varchar(*);
  length Image_URL_S Image_URL_M Image_URL_L $96.;

  input tmpisbn Title Author Year_Of_Publication
    Publisher $ Image_URL_S $ Image_URL_M $ Image_URL_L $;

  /* Restrict the data to books with a 10 digit ISBN only. */
  if (length(tmpisbn)) ne 10 then delete;
  isbn = tmpisbn;
  drop tmpisbn;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;Please check the screenshots below and help me and I'll be grateful :')).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="log.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28697iA5E212CAA28BD7C0/image-size/large?v=v2&amp;amp;px=999" role="button" title="log.PNG" alt="log.PNG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="code.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28696i7892C37AF7D7211E/image-size/large?v=v2&amp;amp;px=999" role="button" title="code.PNG" alt="code.PNG" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 11:16:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/551000#M8892</guid>
      <dc:creator>Thierry95</dc:creator>
      <dc:date>2019-04-15T11:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: Recommender System test (Physical file does not exist)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/551054#M8903</link>
      <description>&lt;P&gt;Pleaase answer me :((&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 14:06:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/551054#M8903</guid>
      <dc:creator>Thierry95</dc:creator>
      <dc:date>2019-04-15T14:06:27Z</dc:date>
    </item>
    <item>
      <title>Re: Recommender System test (Physical file does not exist)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/551055#M8904</link>
      <description>&lt;P&gt;I think the error message is relatively clear. The file you name does not exist.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have to go into your operating system and determine the exact complete proper name of the file of interest, and make sure you are using it.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 14:08:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/551055#M8904</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-04-15T14:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: Recommender System test (Physical file does not exist)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/551057#M8905</link>
      <description>&lt;P&gt;This trial version did not accept a path from windows because it is running under a Linux System.&lt;/P&gt;&lt;P&gt;I tried to import my file like described in this screenshot:&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="11.PNG" style="width: 557px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28698iF27AB14FE8F6EBC0/image-size/large?v=v2&amp;amp;px=999" role="button" title="11.PNG" alt="11.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Is this a bad solution ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you Mr&amp;nbsp;&lt;SPAN&gt;Paige Miller&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Apr 2019 14:17:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/551057#M8905</guid>
      <dc:creator>Thierry95</dc:creator>
      <dc:date>2019-04-15T14:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: Recommender System test (Physical file does not exist)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/551318#M8958</link>
      <description>&lt;P&gt;Is these anyone can help me ?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 07:42:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/551318#M8958</guid>
      <dc:creator>Thierry95</dc:creator>
      <dc:date>2019-04-16T07:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: Recommender System test (Physical file does not exist)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/551355#M8964</link>
      <description>&lt;P&gt;Not really sure what the problem is. If you try to right-click on the file in the file exploring window you've shown, does it give you an option to see the full file path, e.g. under "Properties" or a similar option?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it does show you the full file path, try seeing if it is the same as the one you're using or better still, try using the path that it shows you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amir.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 12:10:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/551355#M8964</guid>
      <dc:creator>Amir</dc:creator>
      <dc:date>2019-04-16T12:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Recommender System test (Physical file does not exist)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/551618#M9028</link>
      <description>&lt;P&gt;Hello and thank you for your reply,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes I am actually using the same path shown in "Properties" as it is described below.&lt;/P&gt;&lt;P&gt;When I upload the file to the server it creates that path that will not be considered existing when trying to work with.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename books '/Users/chaabolla30@gmail.com/My Folder/Data/BX-books.csv' encoding="wlatin1" lrecl=32767;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Thierry&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 08:01:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/551618#M9028</guid>
      <dc:creator>Thierry95</dc:creator>
      <dc:date>2019-04-17T08:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: Recommender System test (Physical file does not exist)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/551704#M9038</link>
      <description>&lt;P&gt;I assume you have made sure that letters are all in the correct case where they need to be, i.e. upper / lower case?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 13:17:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/551704#M9038</guid>
      <dc:creator>Amir</dc:creator>
      <dc:date>2019-04-17T13:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Recommender System test (Physical file does not exist)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/551737#M9040</link>
      <description>&lt;P&gt;I am copying the path as it it is shown in "Properties" and I verified that al letters in the path are all in the correct case.&lt;/P&gt;&lt;P&gt;I am wondering that it is not possible to recognize the physical because of the version I use ( SAS Visual Analytics). The README of the example is shown below:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Recommender.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28750i6FAB960C9E4DF079/image-size/large?v=v2&amp;amp;px=999" role="button" title="Recommender.PNG" alt="Recommender.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 14:04:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/551737#M9040</guid>
      <dc:creator>Thierry95</dc:creator>
      <dc:date>2019-04-17T14:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: Recommender System test (Physical file does not exist)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/552017#M9094</link>
      <description>&lt;P&gt;is there any solution ?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 07:34:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/552017#M9094</guid>
      <dc:creator>Thierry95</dc:creator>
      <dc:date>2019-04-18T07:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Recommender System test (Physical file does not exist)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/552057#M9099</link>
      <description>&lt;P&gt;If this is part of a course then I think you will need to contact the course organisers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this is something that SAS provide then I think you might have to contact SAS Technical Support.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alternatively you could try asking the question on another forum, e.g. Stack Overflow (&lt;A href="https://stackoverflow.com/" target="_blank"&gt;https://stackoverflow.com/&lt;/A&gt;) to see if anyone there can help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amir.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2019 11:27:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/552057#M9099</guid>
      <dc:creator>Amir</dc:creator>
      <dc:date>2019-04-18T11:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: Recommender System test (Physical file does not exist)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/553594#M9395</link>
      <description>&lt;P&gt;For any one who faced this problem, you will faced this problem you will find here the &lt;A href="https://communities.sas.com/t5/Developers/SAS-Cloud-Analytic-Services-CAS-Problem-importin-in-trial/m-p/551787#M323" target="_self"&gt;Solution&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thank you very much&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/214450"&gt;@joeFurbee&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2019 12:00:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/553594#M9395</guid>
      <dc:creator>Thierry95</dc:creator>
      <dc:date>2019-04-24T12:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: Recommender System test (Physical file does not exist)</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/553608#M9397</link>
      <description>&lt;P&gt;Well done on pursuing it &amp;amp; receiving an answer, and thanks for updating this question with the solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Amir.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2019 12:51:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Recommender-System-test-Physical-file-does-not-exist/m-p/553608#M9397</guid>
      <dc:creator>Amir</dc:creator>
      <dc:date>2019-04-24T12:51:51Z</dc:date>
    </item>
  </channel>
</rss>

