<?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: HOWTO: reading/writing (or copy) Excel file through Filename URL in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/HOWTO-reading-writing-or-copy-Excel-file-through-Filename-URL/m-p/43494#M5793</link>
    <description>Hi:&lt;BR /&gt;
  This is probably a question for Tech Support. You show the code that you use for reading the file, but you do not show the code you used for writing the file that generated the error message. Tech Support can look at your file and your code and help you figure out whether you can do what you want to do.&lt;BR /&gt;
 &lt;BR /&gt;
  The doc for the URL method is here:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/lrdict/63026/HTML/default/viewer.htm#/documentation/cdl/en/lrdict/63026/HTML/default/a000223242.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/lrdict/63026/HTML/default/viewer.htm#/documentation/cdl/en/lrdict/63026/HTML/default/a000223242.htm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
To open a track with Tech Support, go to:&lt;BR /&gt;
&lt;A href="http://support.sas.com/ctx/supportform/createForm" target="_blank"&gt;http://support.sas.com/ctx/supportform/createForm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
    <pubDate>Fri, 02 Jul 2010 13:43:15 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2010-07-02T13:43:15Z</dc:date>
    <item>
      <title>HOWTO: reading/writing (or copy) Excel file through Filename URL</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/HOWTO-reading-writing-or-copy-Excel-file-through-Filename-URL/m-p/43493#M5792</link>
      <description>Hi all&lt;BR /&gt;
&lt;BR /&gt;
I have no problems reading/copy an Excel file through Filename URL, like&lt;BR /&gt;
[pre]&lt;BR /&gt;
   filename dav URL "&amp;amp;input" debug recfm=s;&lt;BR /&gt;
   filename target "&amp;amp;target" recfm=n;&lt;BR /&gt;
&lt;BR /&gt;
   data _null_;&lt;BR /&gt;
     length x $32000 char $1;&lt;BR /&gt;
	  infile dav length=len lrecl=32767 nbyte=nbyt;&lt;BR /&gt;
	  nbyt = -1;&lt;BR /&gt;
	  input;&lt;BR /&gt;
	  file target lrecl=32767;&lt;BR /&gt;
	  do i = 1 to len;&lt;BR /&gt;
		 char = substr(_infile_,i,1);&lt;BR /&gt;
		 put char $char1. @@;&lt;BR /&gt;
	  end;&lt;BR /&gt;
	run;&lt;BR /&gt;
[/pre]&lt;BR /&gt;
But when I try to write/copy an Excel file through Filename URL, I keep getting the error "&lt;I&gt;URL/HTTP Access Method does not support Random mode&lt;/I&gt;".&lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;Question is&lt;/B&gt;: How do I write(copy) an Excel file through Filename URL using data step ?</description>
      <pubDate>Fri, 02 Jul 2010 13:22:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/HOWTO-reading-writing-or-copy-Excel-file-through-Filename-URL/m-p/43493#M5792</guid>
      <dc:creator>GertNissen</dc:creator>
      <dc:date>2010-07-02T13:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: HOWTO: reading/writing (or copy) Excel file through Filename URL</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/HOWTO-reading-writing-or-copy-Excel-file-through-Filename-URL/m-p/43494#M5793</link>
      <description>Hi:&lt;BR /&gt;
  This is probably a question for Tech Support. You show the code that you use for reading the file, but you do not show the code you used for writing the file that generated the error message. Tech Support can look at your file and your code and help you figure out whether you can do what you want to do.&lt;BR /&gt;
 &lt;BR /&gt;
  The doc for the URL method is here:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/lrdict/63026/HTML/default/viewer.htm#/documentation/cdl/en/lrdict/63026/HTML/default/a000223242.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/lrdict/63026/HTML/default/viewer.htm#/documentation/cdl/en/lrdict/63026/HTML/default/a000223242.htm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
To open a track with Tech Support, go to:&lt;BR /&gt;
&lt;A href="http://support.sas.com/ctx/supportform/createForm" target="_blank"&gt;http://support.sas.com/ctx/supportform/createForm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
      <pubDate>Fri, 02 Jul 2010 13:43:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/HOWTO-reading-writing-or-copy-Excel-file-through-Filename-URL/m-p/43494#M5793</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-07-02T13:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: HOWTO: reading/writing (or copy) Excel file through Filename URL</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/HOWTO-reading-writing-or-copy-Excel-file-through-Filename-URL/m-p/43495#M5794</link>
      <description>I have moved my question to a more appropriate forum (SAS Macro Facility, Data Step and SAS Language Elements)&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/forums/thread.jspa?messageID=39197餝" target="_blank"&gt;http://support.sas.com/forums/thread.jspa?messageID=39197餝&lt;/A&gt;</description>
      <pubDate>Wed, 07 Jul 2010 22:02:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/HOWTO-reading-writing-or-copy-Excel-file-through-Filename-URL/m-p/43495#M5794</guid>
      <dc:creator>GertNissen</dc:creator>
      <dc:date>2010-07-07T22:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: HOWTO: reading/writing (or copy) Excel file through Filename URL</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/HOWTO-reading-writing-or-copy-Excel-file-through-Filename-URL/m-p/43496#M5795</link>
      <description>Hi:&lt;BR /&gt;
  I saw your posting in that forum. I still think the quickest response would come from Tech Support. SAS has a publishing framework that would let you publish directly to a WebDAV repository, depending on the suite of products that you have available to you.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 08 Jul 2010 02:33:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/HOWTO-reading-writing-or-copy-Excel-file-through-Filename-URL/m-p/43496#M5795</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2010-07-08T02:33:14Z</dc:date>
    </item>
  </channel>
</rss>

