<?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: ERROR: ZIP entry duplicate name: _rels/.rels in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ERROR-ZIP-entry-duplicate-name-rels-rels/m-p/201600#M13435</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rels in Open Office speak is a distinct list of values, its M$ way of trying to shrink file size.&amp;nbsp; It suggests to me that something isn't being written correctly.&amp;nbsp; Can you try a simple proc report with a sashelp table.&amp;nbsp; If that writes fine then there is something in your other code causing it.&amp;nbsp; Just add each item until you find it.&amp;nbsp; If nothing writes then maybe tech support as ods excel is not production yet as far as I am aware.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Apr 2015 16:39:20 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2015-04-22T16:39:20Z</dc:date>
    <item>
      <title>ERROR: ZIP entry duplicate name: _rels/.rels</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ERROR-ZIP-entry-duplicate-name-rels-rels/m-p/201599#M13434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone ever received this error message in their log before? What does it mean?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am doing a very basic Excel output. My program is very large so I won't copy and paste, but here is my simple syntax for the ODS:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ods html close;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ods excel file='\\c\users\elbills\output\test.xlsx';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;....&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;..&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;......&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ods excel close;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I get this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NOTE: Writing package &lt;A href="https://communities.sas.com/"&gt;\\c\users\elbills\output\test.xlsx&lt;/A&gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ERROR: ZIP entry duplicate name: _rels/.rels.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 15:43:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ERROR-ZIP-entry-duplicate-name-rels-rels/m-p/201599#M13434</guid>
      <dc:creator>ebills</dc:creator>
      <dc:date>2015-04-22T15:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: ZIP entry duplicate name: _rels/.rels</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ERROR-ZIP-entry-duplicate-name-rels-rels/m-p/201600#M13435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rels in Open Office speak is a distinct list of values, its M$ way of trying to shrink file size.&amp;nbsp; It suggests to me that something isn't being written correctly.&amp;nbsp; Can you try a simple proc report with a sashelp table.&amp;nbsp; If that writes fine then there is something in your other code causing it.&amp;nbsp; Just add each item until you find it.&amp;nbsp; If nothing writes then maybe tech support as ods excel is not production yet as far as I am aware.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 16:39:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ERROR-ZIP-entry-duplicate-name-rels-rels/m-p/201600#M13435</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-04-22T16:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: ZIP entry duplicate name: _rels/.rels</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ERROR-ZIP-entry-duplicate-name-rels-rels/m-p/201601#M13436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Every time I've seen this message it's because I have (usually inadvertently) opened multiple destinations for Excel at the same time. Something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods excel file="a.xlsx";&lt;/P&gt;&lt;P&gt;ods excel file="b.xlsx";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can open multiple destinations for Excel simultaneously, but you have to add an ID option:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;ods excel(1) file="a.xlsx";&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;ods excel(2) file="b.xlsx";&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 17:01:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ERROR-ZIP-entry-duplicate-name-rels-rels/m-p/201601#M13436</guid>
      <dc:creator>Tim_SAS</dc:creator>
      <dc:date>2015-04-22T17:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: ZIP entry duplicate name: _rels/.rels</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ERROR-ZIP-entry-duplicate-name-rels-rels/m-p/201602#M13437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm hoping it's a fluke with the ods Excel production and not my code, but thanks for your input! I'll try dissecting it when I get a chance; the output, itself, is fine once opened -- I'm just curious as to the error message.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 23:55:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ERROR-ZIP-entry-duplicate-name-rels-rels/m-p/201602#M13437</guid>
      <dc:creator>ebills</dc:creator>
      <dc:date>2015-04-22T23:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: ZIP entry duplicate name: _rels/.rels</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ERROR-ZIP-entry-duplicate-name-rels-rels/m-p/201603#M13438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tried that, as well. I even thought maybe I ran so many ODS that something wasn't closed completely, so I restarted SAS...still did the error on my first 'submit'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Tim!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 23:56:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ERROR-ZIP-entry-duplicate-name-rels-rels/m-p/201603#M13438</guid>
      <dc:creator>ebills</dc:creator>
      <dc:date>2015-04-22T23:56:55Z</dc:date>
    </item>
  </channel>
</rss>

