<?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: create standard folder structure for your study in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/create-standard-folder-structure-for-your-study/m-p/550800#M8859</link>
    <description>&lt;P&gt;You comments about "server" and "users" bring up several concerns about permissions and access that may be external to SAS or your SAS system. Also will your users know how to place a path on the server correctly?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 12 Apr 2019 22:27:52 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2019-04-12T22:27:52Z</dc:date>
    <item>
      <title>create standard folder structure for your study</title>
      <link>https://communities.sas.com/t5/New-SAS-User/create-standard-folder-structure-for-your-study/m-p/550791#M8855</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi SAS Experts,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I need help with this problem.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Suppose you are study lead and have been given a task to create standard folder structure for your study.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have to create a macro that will take path as input&amp;nbsp;..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;DATA&lt;/STRONG&gt;&lt;BR /&gt;--sdtm&lt;BR /&gt;--adam&lt;BR /&gt;--raw&lt;BR /&gt;&lt;STRONG&gt;PROGRAM&lt;/STRONG&gt;&lt;BR /&gt;--sdtm&lt;BR /&gt;--adam&lt;BR /&gt;--tlg&lt;BR /&gt;&lt;STRONG&gt;QCPROGRAM&lt;/STRONG&gt;&lt;BR /&gt;--sdtm&lt;BR /&gt;----output&lt;BR /&gt;--adam&lt;BR /&gt;-----output&lt;BR /&gt;--tlg&lt;BR /&gt;----output&lt;BR /&gt;&lt;STRONG&gt;OUTPUT&lt;/STRONG&gt;&lt;BR /&gt;--tlg&lt;BR /&gt;&lt;STRONG&gt;DOC&lt;/STRONG&gt;&lt;BR /&gt;--email&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;(Requirements:&amp;nbsp;&amp;nbsp;check whether path parameter is non missing (Required or mandatory), if its missing then send user generated error message and exit out&lt;BR /&gt;else if Check whether the path passed by the users exist on the server, if not the send user generated error message and exit out of the macro.&lt;BR /&gt;&lt;BR /&gt;then you create folder structure.)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Apr 2019 21:23:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/create-standard-folder-structure-for-your-study/m-p/550791#M8855</guid>
      <dc:creator>Ragineejoshi</dc:creator>
      <dc:date>2019-04-12T21:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: create standard folder structure for your study</title>
      <link>https://communities.sas.com/t5/New-SAS-User/create-standard-folder-structure-for-your-study/m-p/550794#M8858</link>
      <description>&lt;P&gt;1. Check if the folder/directory exists using DINFO() function&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/hostwin/69955/HTML/default/viewer.htm#p0qzctpnc6pi8sn1qcuv81rls13c.htm#n10k6grg16q25dn17wxmhlf1bfv4" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/hostwin/69955/HTML/default/viewer.htm#p0qzctpnc6pi8sn1qcuv81rls13c.htm#n10k6grg16q25dn17wxmhlf1bfv4&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Create folders using DCREATE()&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=lefunctionsref&amp;amp;docsetTarget=p1aj29pf4cxnirn15q5hmf0tv438.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en"&gt;https://documentation.sas.com/?docsetId=lefunctionsref&amp;amp;docsetTarget=p1aj29pf4cxnirn15q5hmf0tv438.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;If you're new to SAS you may want to first make sure this works without macro logic and then implement the macro logic.&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/240873"&gt;@Ragineejoshi&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;Hi SAS Experts,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I need help with this problem.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Suppose you are study lead and have been given a task to create standard folder structure for your study.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I have to create a macro that will take path as input&amp;nbsp;..&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;DATA&lt;/STRONG&gt;&lt;BR /&gt;--sdtm&lt;BR /&gt;--adam&lt;BR /&gt;--raw&lt;BR /&gt;&lt;STRONG&gt;PROGRAM&lt;/STRONG&gt;&lt;BR /&gt;--sdtm&lt;BR /&gt;--adam&lt;BR /&gt;--tlg&lt;BR /&gt;&lt;STRONG&gt;QCPROGRAM&lt;/STRONG&gt;&lt;BR /&gt;--sdtm&lt;BR /&gt;----output&lt;BR /&gt;--adam&lt;BR /&gt;-----output&lt;BR /&gt;--tlg&lt;BR /&gt;----output&lt;BR /&gt;&lt;STRONG&gt;OUTPUT&lt;/STRONG&gt;&lt;BR /&gt;--tlg&lt;BR /&gt;&lt;STRONG&gt;DOC&lt;/STRONG&gt;&lt;BR /&gt;--email&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;(Requirements:&amp;nbsp;&amp;nbsp;check whether path parameter is non missing (Required or mandatory), if its missing then send user generated error message and exit out&lt;BR /&gt;else if Check whether the path passed by the users exist on the server, if not the send user generated error message and exit out of the macro.&lt;BR /&gt;&lt;BR /&gt;then you create folder structure.)&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Apr 2019 21:55:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/create-standard-folder-structure-for-your-study/m-p/550794#M8858</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-04-12T21:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: create standard folder structure for your study</title>
      <link>https://communities.sas.com/t5/New-SAS-User/create-standard-folder-structure-for-your-study/m-p/550800#M8859</link>
      <description>&lt;P&gt;You comments about "server" and "users" bring up several concerns about permissions and access that may be external to SAS or your SAS system. Also will your users know how to place a path on the server correctly?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Apr 2019 22:27:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/create-standard-folder-structure-for-your-study/m-p/550800#M8859</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-04-12T22:27:52Z</dc:date>
    </item>
  </channel>
</rss>

