<?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: SAS Export table to SharePoint in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Export-table-to-SharePoint/m-p/226804#M16557</link>
    <description>&lt;P&gt;This SAS Note may help point you in the right direction:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/kb/42/054.html" target="_blank"&gt;http://support.sas.com/kb/42/054.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your Sharepoint admin should be able to provide a UNC path.&lt;/P&gt;</description>
    <pubDate>Tue, 22 Sep 2015 20:24:41 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2015-09-22T20:24:41Z</dc:date>
    <item>
      <title>SAS Export table to SharePoint</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Export-table-to-SharePoint/m-p/226781#M16551</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;Today i'm trying to export some&amp;nbsp;files to SharePoint.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC EXPORT DATA= SCHEDULE 
OUTFILE= "https://MySharePoint/Forms/text.txt" 
DBMS=TAB REPLACE;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The code above, is the only way i've tried to export, But there is an error as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#ff0000"&gt;&lt;STRONG&gt;ERROR: Physical file does not exist,&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#ff0000"&gt;&lt;STRONG&gt;/sas/sas/config/Lev1/SASPApp/https://MySharePoint/Forms/text.txt&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need a way to export without installing any other SAS or Windows applications, because here it is quite limited access.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just to specify:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I can't use system commands like&amp;nbsp;in general UNIX commands&amp;nbsp;in SAS Programs, neither windows commands&lt;/LI&gt;&lt;LI&gt;I can't install any other application&lt;/LI&gt;&lt;LI&gt;I've found this script:&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename request temp;
filename response "Path\output.xml";

data _null_;
   file request;
   input;
   put _infile_;
   datalines4;

&amp;lt;soapenv:Envelope xmlns:rep="http://www.sas.com/xml/schema/sas-svcs/reportrepository-9.2" 
                  xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"&amp;gt;
  &amp;lt;soapenv:Header&amp;gt;
      &amp;lt;Action
xmlns="http://schemas.xmlsoap.org/ws/2004/08/addressing"&amp;gt;
       http://www.sas.com/xml/schema/sas-svcs/reportrepository-9.2/DirectoryServiceInterface/isDirectory&amp;lt;/Action&amp;gt;
  &amp;lt;/soapenv:Header&amp;gt;
  &amp;lt;soapenv:Body&amp;gt;
     &amp;lt;rep:isDirectoryDirectoryServiceInterfaceRequest&amp;gt;
        &amp;lt;rep:dirPathUrl&amp;gt;SBIP:path-name&amp;lt;/rep:dirPathUrl&amp;gt;
     &amp;lt;/rep:isDirectoryDirectoryServiceInterfaceRequest&amp;gt;
  &amp;lt;/soapenv:Body&amp;gt;
&amp;lt;/soapenv:Envelope&amp;gt;
;;;;
run;

proc soap in=request out=response service="ReportRepositoryService"
soapaction="http://machine-name:port-number/SASWIPSoapServices/services/ReportRepositoryService"
                 envfile="http://file-server-name.abc.xyz.com/sas-environment.xml"
                 environment="test";
                 wssusername="user-name"
                 wsspassword="password";
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I don't know how to perfom it&lt;/LI&gt;&lt;LI&gt;I need to understand how it works&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Most important, is this possible ?&lt;/P&gt;&lt;P&gt;If so, How ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks before anything&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2015 17:15:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Export-table-to-SharePoint/m-p/226781#M16551</guid>
      <dc:creator>DartRodrigo</dc:creator>
      <dc:date>2015-09-22T17:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Export table to SharePoint</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Export-table-to-SharePoint/m-p/226790#M16552</link>
      <description>&lt;P&gt;The only way that I have found to move files from Unix host (which from your error message it looks like you are using) to SharePoint is to use curl. &amp;nbsp;&lt;A href="http://stackoverflow.com/questions/28341625/performing-multiple-requests-using-curl-with-different-options" target="_blank"&gt;http://stackoverflow.com/questions/28341625/performing-multiple-requests-using-curl-with-different-options&lt;/A&gt;&lt;/P&gt;&lt;P&gt;But if you cannot call system commands then you might not be able to do that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The attempt you posted looks like it is attempting to connect to some SAS service rather than a SharePoint service. &amp;nbsp;Do you have a SAS interface to SharePoint that you can use to write to SharePoint?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2015 18:08:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Export-table-to-SharePoint/m-p/226790#M16552</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2015-09-22T18:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Export table to SharePoint</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Export-table-to-SharePoint/m-p/226793#M16553</link>
      <description>&lt;P&gt;SAS Web Parts ? No i do not have any other web based applications.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2015 18:17:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Export-table-to-SharePoint/m-p/226793#M16553</guid>
      <dc:creator>DartRodrigo</dc:creator>
      <dc:date>2015-09-22T18:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Export table to SharePoint</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Export-table-to-SharePoint/m-p/226804#M16557</link>
      <description>&lt;P&gt;This SAS Note may help point you in the right direction:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/kb/42/054.html" target="_blank"&gt;http://support.sas.com/kb/42/054.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your Sharepoint admin should be able to provide a UNC path.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2015 20:24:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Export-table-to-SharePoint/m-p/226804#M16557</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2015-09-22T20:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Export table to SharePoint</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Export-table-to-SharePoint/m-p/227196#M16581</link>
      <description>&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/lestmtsref/68024/HTML/default/viewer.htm#n0l1vivxo238din1jt3sip83eugu.htm" target="_blank"&gt;FILENAME Statement, WebDAV Access Method &lt;/A&gt;&amp;nbsp;&amp;nbsp;and/or&amp;nbsp; &lt;A href="http://www.sas.com/content/dam/SAS/en_ca/User%20Group%20Presentations/Winnipeg-User-Group/HarryDroogendyk-SharepointListData-Fall2012.pdf" target="_blank"&gt;http://www.sas.com/content/dam/SAS/en_ca/User%20Group%20Presentations/Winnipeg-User-Group/HarryDroogendyk-SharepointListData-Fall2012.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The error message:&lt;/P&gt;&lt;P&gt;&lt;FONT color="#ff0000"&gt;&lt;STRONG&gt;ERROR: Physical file does not exist,&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#ff0000"&gt;&lt;STRONG&gt;/sas/sas/config/Lev1/SASPApp/https://MySharePoint/​Forms/text.txt&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;is caused by a wrong current directory. It is failure of SAS having it let that way. &lt;A href="http://support.sas.com/kb/50/345.html" target="_blank"&gt;http://support.sas.com/kb/50/345.html&lt;/A&gt;&amp;nbsp;Ask your admin to correct that. And when he is not that obstinate aks for the risks of xcmd. When&amp;nbsp;not: "&amp;nbsp;bla bla ",&amp;nbsp;have that granted for you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Sep 2015 22:04:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/SAS-Export-table-to-SharePoint/m-p/227196#M16581</guid>
      <dc:creator>jakarman</dc:creator>
      <dc:date>2015-09-24T22:04:05Z</dc:date>
    </item>
  </channel>
</rss>

