<?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 Folder in XYTHOS in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Create-Folder-in-XYTHOS/m-p/57358#M15998</link>
    <description>From what I understand you just need to compose and issue the right system commands.&lt;BR /&gt;
&lt;BR /&gt;
There is more than a way to issue a system commando through SAS, one of which, being the X statement,&lt;BR /&gt;
&lt;BR /&gt;
See here:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/lrdict/62618/HTML/default/a000212624.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/lrdict/62618/HTML/default/a000212624.htm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
From there, you can run any system command that you wish.&lt;BR /&gt;
&lt;BR /&gt;
Cheers from Portugal.&lt;BR /&gt;
&lt;BR /&gt;
Daniel Santos @ &lt;A href="http://www.cgd.pt" target="_blank"&gt;www.cgd.pt&lt;/A&gt;</description>
    <pubDate>Mon, 15 Feb 2010 17:38:16 GMT</pubDate>
    <dc:creator>DanielSantos</dc:creator>
    <dc:date>2010-02-15T17:38:16Z</dc:date>
    <item>
      <title>Create Folder in XYTHOS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Create-Folder-in-XYTHOS/m-p/57355#M15995</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
I have a set of PDF Files with the following format &lt;BR /&gt;
RD007_123.pdf, &lt;BR /&gt;
RD006_123.pdf,&lt;BR /&gt;
RD007_234.pdf,&lt;BR /&gt;
RD001_235.pdf&lt;BR /&gt;
where the value 123,234, 235 etc are the unit numbers, there are 1000 Unis and new can be added dynamically. &lt;BR /&gt;
&lt;BR /&gt;
My requirement is to have a folder 123,234,235 created dynamically in Xythos using SAS or any other tool and then inside this XYTHOS Folder move the files &lt;BR /&gt;
RD007_123.pdf, &lt;BR /&gt;
RD006_123.pdf,&lt;BR /&gt;
RD007_234.pdf,&lt;BR /&gt;
RD001_235.pdf to their respective unit folder.&lt;BR /&gt;
&lt;BR /&gt;
Please suggest.&lt;BR /&gt;
&lt;BR /&gt;
OS: AIX&lt;BR /&gt;
SAS Version: SAD 9.1.3&lt;BR /&gt;
&lt;BR /&gt;
Regards&lt;BR /&gt;
Russell</description>
      <pubDate>Mon, 15 Feb 2010 13:27:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Create-Folder-in-XYTHOS/m-p/57355#M15995</guid>
      <dc:creator>RussellAlmeida</dc:creator>
      <dc:date>2010-02-15T13:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: Create Folder in XYTHOS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Create-Folder-in-XYTHOS/m-p/57356#M15996</link>
      <description>I dont think there's a direct way to read PDF files into SAS.&lt;BR /&gt;
Please go through this discussion where using a 3rd party tool people were able to load PDF data into SAS.&lt;BR /&gt;
&lt;A href="http://groups.google.com/group/comp.soft-sys.sas/browse_thread/thread/01bf795c710e3013/bf2442313e4c0eff?lnk=raot" target="_blank"&gt;http://groups.google.com/group/comp.soft-sys.sas/browse_thread/thread/01bf795c710e3013/bf2442313e4c0eff?lnk=raot&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Once data is in SAS, we can use the FILE statement with the MOD option to dynamically add multiple datasets to a single file.&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/hostwin/61924/HTML/default/chfoptfmain.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/hostwin/61924/HTML/default/chfoptfmain.htm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
SAPPER</description>
      <pubDate>Mon, 15 Feb 2010 14:58:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Create-Folder-in-XYTHOS/m-p/57356#M15996</guid>
      <dc:creator>SAPPER</dc:creator>
      <dc:date>2010-02-15T14:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: Create Folder in XYTHOS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Create-Folder-in-XYTHOS/m-p/57357#M15997</link>
      <description>You're looking at using SAS FILENAME with the "PIPE" engine in order to read up the OS directory information and generate suitable command invocations against your files and directories.&lt;BR /&gt;
&lt;BR /&gt;
Suggest reviewing the SAS Companion for AIX as well as the SAS functions related to files and directories for your OS, documented in the SAS Language guide. &lt;BR /&gt;
&lt;BR /&gt;
Also, there are supplemental technical/conference paper references on the SAS support &lt;A href="http://support.sas.com/" target="_blank"&gt;http://support.sas.com/&lt;/A&gt;  website available.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Mon, 15 Feb 2010 16:05:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Create-Folder-in-XYTHOS/m-p/57357#M15997</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2010-02-15T16:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: Create Folder in XYTHOS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Create-Folder-in-XYTHOS/m-p/57358#M15998</link>
      <description>From what I understand you just need to compose and issue the right system commands.&lt;BR /&gt;
&lt;BR /&gt;
There is more than a way to issue a system commando through SAS, one of which, being the X statement,&lt;BR /&gt;
&lt;BR /&gt;
See here:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/lrdict/62618/HTML/default/a000212624.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/lrdict/62618/HTML/default/a000212624.htm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
From there, you can run any system command that you wish.&lt;BR /&gt;
&lt;BR /&gt;
Cheers from Portugal.&lt;BR /&gt;
&lt;BR /&gt;
Daniel Santos @ &lt;A href="http://www.cgd.pt" target="_blank"&gt;www.cgd.pt&lt;/A&gt;</description>
      <pubDate>Mon, 15 Feb 2010 17:38:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Create-Folder-in-XYTHOS/m-p/57358#M15998</guid>
      <dc:creator>DanielSantos</dc:creator>
      <dc:date>2010-02-15T17:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: Create Folder in XYTHOS</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Create-Folder-in-XYTHOS/m-p/57359#M15999</link>
      <description>Hi:&lt;BR /&gt;
  It was my understanding that you used XYTHOS with the SAS Enterprise Intelligence Platform web-tier or "middle-tier". I thought that the XYTHOS folders were administered and created and managed with the XYTHOS software. For example, when you write Web Report Studio reports to XYTHOS folders, the folders need to be in existence. I'm not sure about creating/using/administering the XYTHOS folders in batch mode. That might be a question for Tech Support.&lt;BR /&gt;
 &lt;BR /&gt;
  Here are some documents and references:&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/itech/doc9/admin_oma/security/security_accessdav_ex.html" target="_blank"&gt;http://support.sas.com/rnd/itech/doc9/admin_oma/security/security_accessdav_ex.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/techsup/technote/ts776.pdf" target="_blank"&gt;http://support.sas.com/techsup/technote/ts776.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://www2.sas.com/proceedings/forum2008/392-2008.pdf" target="_blank"&gt;http://www2.sas.com/proceedings/forum2008/392-2008.pdf&lt;/A&gt;&lt;BR /&gt;
&lt;A href="http://support.sas.com/resources/papers/proceedings09/006-2009.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/proceedings09/006-2009.pdf&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Tue, 16 Feb 2010 01:39:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Create-Folder-in-XYTHOS/m-p/57359#M15999</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-02-16T01:39:55Z</dc:date>
    </item>
  </channel>
</rss>

