<?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: A problem in defining library for a course. in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/637261#M21442</link>
    <description>&lt;P&gt;None of those look like they could work because they are not under the required mapped folder:&lt;/P&gt;
&lt;PRE&gt;/folders/myfolders/&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/36367"&gt;@VinayCV&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I none of below is working,&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;libname STAT1 "folders/Users/vv/Downloads/coursedata/ECST142";&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&amp;nbsp;libname STAT1 "\folders\Users\vv\Downloads\coursedata\ECST142"; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;libname STAT1 "C:/Users/vv/Downloads/coursedata/ECST142";&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;libname STAT1 "C:\Users\vv\Downloads\coursedata\ECST142";&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;libname STAT1 "C:/Users/vv/Downloads/coursedata/ECST142";&lt;/FONT&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The first one is using a relative path.&amp;nbsp; That will NEVER work with UE since the current working directory is pointing to a directory that you cannot modify in any way.&lt;/P&gt;
&lt;P&gt;The second one cannot work since it is using the Unix escape character, \, instead of the path separator, / . So it is also a relative path.&lt;/P&gt;
&lt;P&gt;The last three cannot work since they are using Window/DOS filenames.&lt;/P&gt;</description>
    <pubDate>Fri, 03 Apr 2020 13:25:39 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2020-04-03T13:25:39Z</dc:date>
    <item>
      <title>A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/537442#M6768</link>
      <description>&lt;P&gt;Hello All,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i am new user to the SAS software and was following the setup instructions for SAS University Edition: SAS Studio.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On TASK 2: step number number , it says that "&amp;nbsp;&lt;SPAN&gt;In the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Server Files and Folders&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;pane, expand the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;ECST142&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;folder. Right-click the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;folder and select&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Properties&lt;/STRONG&gt;&lt;SPAN&gt;. Highlight the filepath shown in&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Location&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;and copy it. Close the Properties window."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ECST142 does not display on server files and folders pane. and when i try to copy the path from the original folderon my PC, I recieve an error message&amp;nbsp;says:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasSource"&gt;"1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;73 %let homefolder=C:\Users\brujnab1\Documents\SASUniversityEdition\myfolders\ECST142;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 libname STAT1 "&amp;amp;homefolder";&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Library STAT1 does not exist.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77 options fmtsearch=(stat1.myfmts);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;78&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;79 proc format library=stat1.myfmts;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: Library STAT1 does not exist.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;80 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: RUN statement ignored due to previous errors. Submit QUIT; to terminate the procedure.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE FORMAT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Can any body help me to resolve this issue?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 15:45:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/537442#M6768</guid>
      <dc:creator>jeannabil</dc:creator>
      <dc:date>2019-02-21T15:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/537451#M6771</link>
      <description>&lt;P&gt;You're following the wrong instructions or set it up incorrectly. For SASUE your path should be something like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/folders/myfolders/ECST142&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You do not reference the C drive directly since SAS cannot access it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/251192"&gt;@jeannabil&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello All,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i am new user to the SAS software and was following the setup instructions for SAS University Edition: SAS Studio.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On TASK 2: step number number , it says that "&amp;nbsp;&lt;SPAN&gt;In the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Server Files and Folders&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;pane, expand the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;ECST142&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;folder. Right-click the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;folder and select&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Properties&lt;/STRONG&gt;&lt;SPAN&gt;. Highlight the filepath shown in&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Location&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;and copy it. Close the Properties window."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;ECST142 does not display on server files and folders pane. and when i try to copy the path from the original folderon my PC, I recieve an error message&amp;nbsp;says:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="sasSource"&gt;"1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;73 %let homefolder=C:\Users\brujnab1\Documents\SASUniversityEdition\myfolders\ECST142;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;74&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;75 libname STAT1 "&amp;amp;homefolder";&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;NOTE: Library STAT1 does not exist.&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;76&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;77 options fmtsearch=(stat1.myfmts);&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;78&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;79 proc format library=stat1.myfmts;&lt;/DIV&gt;
&lt;DIV class="sasError"&gt;ERROR: Library STAT1 does not exist.&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;80 run;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasWarning"&gt;WARNING: RUN statement ignored due to previous errors. Submit QUIT; to terminate the procedure.&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE FORMAT used (Total process time):&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;cpu time 0.00 seconds&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Can any body help me to resolve this issue?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 16:34:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/537451#M6771</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-21T16:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/537621#M6797</link>
      <description>Thank you for your reply, I followed your instructions but i think the error as the following:&lt;BR /&gt;"ERROR: Library STAT1 does not exist"&lt;BR /&gt;&lt;BR /&gt;STAT1 exists i libraries pane but not server files and folders.&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Feb 2019 08:37:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/537621#M6797</guid>
      <dc:creator>jeannabil</dc:creator>
      <dc:date>2019-02-22T08:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/537672#M6799</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/251192"&gt;@jeannabil&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Thank you for your reply, I followed your instructions but i think the error as the following:&lt;BR /&gt;"ERROR: Library STAT1 does not exist"&lt;BR /&gt;&lt;BR /&gt;STAT1 exists i libraries pane but not server files and folders.&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please post the code you executed.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 13:44:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/537672#M6799</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-02-22T13:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/537673#M6800</link>
      <description>&lt;PRE&gt;myfolders\ECST142&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 Feb 2019 13:46:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/537673#M6800</guid>
      <dc:creator>jeannabil</dc:creator>
      <dc:date>2019-02-22T13:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/537675#M6802</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/251192"&gt;@jeannabil&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;PRE&gt;myfolders\ECST142&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This can't be the code you tried to execute.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When using SAS UE you have to use the Linux/Unix path separator, so replacing \ with / is a good start.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 13:51:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/537675#M6802</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-02-22T13:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/537687#M6803</link>
      <description>&lt;P&gt;thanks for your reply... i changed it, but the same error.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="dijitBorderContainer-child dijitBorderContainer-dijitTitlePane dijitBorderContainerPane dijitAlignTop dijitTitlePane dijitTitlePaneHover dijitHover dijitTitlePaneFocused dijitTitlePaneHoverFocused dijitHoverFocused dijitFocused"&gt;&lt;DIV class="dijitTitlePaneContentOuter sasLogTOC sasTOCDropDown"&gt;&lt;DIV class="dijitReset"&gt;&lt;DIV class="dijitTitlePaneContentInner"&gt;&lt;DIV class="dojoDndContainerOver dijitTree dijitTreeHover dijitHover dijitTreeFocused dijitTreeHoverFocused dijitHoverFocused dijitFocused"&gt;&lt;DIV class="dijitTreeContainer"&gt;&lt;DIV class="dijitTreeIsRoot dijitTreeNode dijitTreeNodeLoaded dijitLoaded dijitTreeNodeFocused dijitTreeNodeLoadedFocused dijitLoadedFocused dijitFocused"&gt;&lt;DIV class="dijitTreeNodeContainer"&gt;&lt;DIV class="dijitTreeIsRoot dijitTreeNode dijitTreeNodeLoaded dijitLoaded dijitTreeNodeFocused dijitTreeNodeLoadedFocused dijitLoadedFocused dijitFocused"&gt;&lt;DIV class="dijitTreeRow"&gt;&lt;SPAN class="dijitTreeContent dijitTreeContentExpanded"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="dijitTreeLabel"&gt;Errors (1)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="dijitTreeNodeContainer"&gt;&lt;DIV class="dijitTreeIsLast dijitTreeNode dijitTreeNodeNotLoaded dijitNotLoaded dijitTreeNodeFocused dijitTreeNodeNotLoadedFocused dijitNotLoadedFocused dijitFocused"&gt;&lt;DIV class="dijitTreeRow"&gt;&lt;FONT color="#FF0000"&gt;&lt;SPAN class="dijitTreeContent"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="dijitTreeLabel sasError"&gt;ERROR: Library STAT1 does not exist.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="dijitTreeIsRoot dijitTreeNode dijitTreeNodeLoaded dijitLoaded"&gt;&lt;DIV class="dijitTreeRow dijitTreeRowSelected"&gt;&lt;SPAN class="dijitTreeContent"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="dijitTreeLabel"&gt;Warnings (1)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="dijitTreeIsRoot dijitTreeNode dijitTreeNodeLoaded dijitLoaded"&gt;&lt;DIV class="dijitTreeRow"&gt;&lt;SPAN class="dijitTreeContent"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="dijitTreeLabel"&gt;Notes (3)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="dijitBorderContainer dijitContainer dijitBorderContainer-child dijitBorderContainer-dijitBorderContainer dijitBorderContainerPane dijitAlignCenter dijitLayoutContainer"&gt;&lt;DIV class="dijitContentPane dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignCenter"&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;73 %let homefolder=myfolders/ECST142;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 libname STAT1 "&amp;amp;homefolder";&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Library STAT1 does not exist.&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Feb 2019 14:10:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/537687#M6803</guid>
      <dc:creator>jeannabil</dc:creator>
      <dc:date>2019-02-22T14:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/537742#M6809</link>
      <description>Look at my answer again. Use it EXACTLY as posted and post the log.</description>
      <pubDate>Fri, 22 Feb 2019 16:13:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/537742#M6809</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-22T16:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/637134#M21425</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Not sure how this problem was solved.&lt;/P&gt;&lt;P&gt;I am facing the same issue that&amp;nbsp;&lt;SPAN style="color: #0000ff; font-family: Consolas, Courier, 'Courier New'; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: pre; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;&amp;nbsp;NOTE: Library STAT1 does not exist.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I tried using / instead of \ - same error&lt;/P&gt;&lt;P&gt;Is there anything we need to set up for the first time using SAS Studio and browser and VM?&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 02:31:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/637134#M21425</guid>
      <dc:creator>VinayCV</dc:creator>
      <dc:date>2020-04-03T02:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/637137#M21426</link>
      <description>&lt;P&gt;Did you create the myfolders folder as part of the set up?&lt;/P&gt;
&lt;P&gt;Show the code you used and your log.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/36367"&gt;@VinayCV&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Not sure how this problem was solved.&lt;/P&gt;
&lt;P&gt;I am facing the same issue that&amp;nbsp;&lt;SPAN style="color: #0000ff; font-family: Consolas, Courier, 'Courier New'; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: pre; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;&amp;nbsp;NOTE: Library STAT1 does not exist.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;I tried using / instead of \ - same error&lt;/P&gt;
&lt;P&gt;Is there anything we need to set up for the first time using SAS Studio and browser and VM?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 02:36:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/637137#M21426</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-04-03T02:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/637153#M21428</link>
      <description>&lt;P&gt;You posted this:&lt;/P&gt;
&lt;PRE&gt;73 %let homefolder=myfolders/ECST142;&lt;/PRE&gt;
&lt;P&gt;You were instructed to use a path like:&lt;/P&gt;
&lt;PRE&gt;/folders/myfolders/ECST142&lt;/PRE&gt;
&lt;P&gt;Can you see the difference in what you typed and what you should have tried?&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 03:30:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/637153#M21428</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-04-03T03:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/637256#M21440</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I none of below is working,&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;libname STAT1 "folders/Users/vv/Downloads/coursedata/ECST142";&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;&amp;nbsp;libname STAT1 "\folders\Users\vv\Downloads\coursedata\ECST142"; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;libname STAT1 "C:/Users/vv/Downloads/coursedata/ECST142";&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;libname STAT1 "C:\Users\vv\Downloads\coursedata\ECST142";&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;libname STAT1 "C:/Users/vv/Downloads/coursedata/ECST142";&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 13:10:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/637256#M21440</guid>
      <dc:creator>VinayCV</dc:creator>
      <dc:date>2020-04-03T13:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/637261#M21442</link>
      <description>&lt;P&gt;None of those look like they could work because they are not under the required mapped folder:&lt;/P&gt;
&lt;PRE&gt;/folders/myfolders/&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/36367"&gt;@VinayCV&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I none of below is working,&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;libname STAT1 "folders/Users/vv/Downloads/coursedata/ECST142";&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&amp;nbsp;libname STAT1 "\folders\Users\vv\Downloads\coursedata\ECST142"; &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;libname STAT1 "C:/Users/vv/Downloads/coursedata/ECST142";&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;libname STAT1 "C:\Users\vv\Downloads\coursedata\ECST142";&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;libname STAT1 "C:/Users/vv/Downloads/coursedata/ECST142";&lt;/FONT&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The first one is using a relative path.&amp;nbsp; That will NEVER work with UE since the current working directory is pointing to a directory that you cannot modify in any way.&lt;/P&gt;
&lt;P&gt;The second one cannot work since it is using the Unix escape character, \, instead of the path separator, / . So it is also a relative path.&lt;/P&gt;
&lt;P&gt;The last three cannot work since they are using Window/DOS filenames.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 13:25:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/637261#M21442</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-04-03T13:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/637273#M21445</link>
      <description>&lt;P&gt;Even this is not working &lt;FONT&gt;%let homefolder=/folders/myfolders/coursedata/ECST142/data;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;73 %let homefolder=/folders/myfolders/coursedata/ECST142/data;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;74&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 libname STAT1 "&amp;amp;homefolder";&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Library STAT1 does not exist.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77 options fmtsearch=(stat1.myfmts);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;78&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;79 proc format library=stat1.myfmts;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: Library STAT1 does not exist.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;80 run;&lt;/DIV&gt;&lt;/DIV&gt;&lt;PRE class="sasLog"&gt;&amp;nbsp;&lt;/PRE&gt;</description>
      <pubDate>Fri, 03 Apr 2020 14:12:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/637273#M21445</guid>
      <dc:creator>VinayCV</dc:creator>
      <dc:date>2020-04-03T14:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/637277#M21446</link>
      <description>&lt;P&gt;I am not currently running SAS UE, but the look/feel of SAS/Studio is the same no matter where the SAS server is.&lt;/P&gt;
&lt;P&gt;You can find the path that SAS uses for your folders from the Server Files and Folders area on the left side of the screen.&amp;nbsp; Right click (or whatever the Mac equivalent of right click is) on a folder or file and select properties.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 356px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/37754i3382F1DE8D23CE0E/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Then you can see the path that SAS is using for that file or folder.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Use that path in your SAS code.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 14:25:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/637277#M21446</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-04-03T14:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/637325#M21451</link>
      <description>&lt;P&gt;Thanks for the help.&lt;/P&gt;&lt;P&gt;I re installed VM and SAS , its working now.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 18:01:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/637325#M21451</guid>
      <dc:creator>VinayCV</dc:creator>
      <dc:date>2020-04-03T18:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/719769#M27684</link>
      <description>i have the same problem , if you found the answer can you help me</description>
      <pubDate>Wed, 17 Feb 2021 00:32:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/719769#M27684</guid>
      <dc:creator>Asmaa_Saber</dc:creator>
      <dc:date>2021-02-17T00:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/731008#M28414</link>
      <description>&lt;P&gt;Upload the files and folders into SAS &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Apr 2021 17:30:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/731008#M28414</guid>
      <dc:creator>Louise_R</dc:creator>
      <dc:date>2021-04-02T17:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/731166#M28416</link>
      <description>&lt;P&gt;Hi:&lt;BR /&gt;Please go into SAS Studio. Then, go into the &lt;STRONG&gt;Server Files and Folder&lt;/STRONG&gt;s pane. It seems you are using SAS University Edition. Look for the &lt;STRONG&gt;My Folders&lt;/STRONG&gt; top node and expand that. Under &lt;STRONG&gt;My Folders&lt;/STRONG&gt; you should see your &lt;STRONG&gt;ECST142&lt;/STRONG&gt; folder. It looks like you may have introduced an extra level "coursedata" into your folder path. This is not what we expect in our setup program. We expect the &lt;STRONG&gt;ECST142&lt;/STRONG&gt; folder to be DIRECTLY underneath the &lt;STRONG&gt;My Folders&lt;/STRONG&gt; top node in SAS Studio.. Under &lt;STRONG&gt;ECST142&lt;/STRONG&gt;, you should then have a &lt;STRONG&gt;data&lt;/STRONG&gt; subfolder, if you followed all the instructions for the setup.&lt;BR /&gt;&lt;BR /&gt;SAS Studio has a never fail, perfect way for you to find the path you need for your %LET statement. Inside the &lt;STRONG&gt;Server Files and Folders&lt;/STRONG&gt; pane, navigate down under &lt;STRONG&gt;My Folders&lt;/STRONG&gt;. Click to expand &lt;STRONG&gt;ECST142&lt;/STRONG&gt;. You should see the &lt;STRONG&gt;data&lt;/STRONG&gt; subfolder. Right click on the &lt;STRONG&gt;data&lt;/STRONG&gt; subfolder. Choose &lt;STRONG&gt;Properties&lt;/STRONG&gt; in the popup window. When the &lt;STRONG&gt;Properties&lt;/STRONG&gt; window opens, there is a &lt;STRONG&gt;Location&lt;/STRONG&gt; field in the window. That &lt;STRONG&gt;Location&lt;/STRONG&gt; field shows the EXACT physical path you need to use.&lt;BR /&gt;&lt;BR /&gt;Note that the University Edition virtual machine with SAS inside is a UNIX machine. So that means &lt;STRONG&gt;C:&lt;/STRONG&gt; drive locations and Windows slashes (&lt;STRONG&gt;\&lt;/STRONG&gt;) will NOT work. If you have &lt;STRONG&gt;ECST142&lt;/STRONG&gt; directly under &lt;STRONG&gt;My Folders&lt;/STRONG&gt;, then you should see THIS location in the Properties window for the &lt;STRONG&gt;data&lt;/STRONG&gt; subfolder:&lt;BR /&gt;&lt;STRONG&gt;/folders/myfolders/ECST142/data&lt;/STRONG&gt; &amp;lt;---- note the UNIX slashes and the leading slash before the path. You MUST use this leading slash in the physical path.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Sat, 03 Apr 2021 17:40:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/731166#M28416</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2021-04-03T17:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: A problem in defining library for a course.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/731171#M28417</link>
      <description>&lt;P&gt;Please post your complete log (definition of any macro variables and the LIBNAME. Use this button to post the log:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/54552i914D97BE1B0F21E5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" alt="Bildschirmfoto 2020-04-07 um 08.32.59.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Apr 2021 19:22:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/A-problem-in-defining-library-for-a-course/m-p/731171#M28417</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-04-03T19:22:29Z</dc:date>
    </item>
  </channel>
</rss>

