<?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 ODS to multiple destinations in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-to-multiple-destinations/m-p/539310#M22457</link>
    <description>&lt;P&gt;I am creating a report that writes out to odf and csv simultaneously using proc report.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it possible to tailor the output, insomuch that I want to include some additional variables when writing to csv?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Thu, 28 Feb 2019 14:36:30 GMT</pubDate>
    <dc:creator>kimdukes77</dc:creator>
    <dc:date>2019-02-28T14:36:30Z</dc:date>
    <item>
      <title>ODS to multiple destinations</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-to-multiple-destinations/m-p/539310#M22457</link>
      <description>&lt;P&gt;I am creating a report that writes out to odf and csv simultaneously using proc report.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it possible to tailor the output, insomuch that I want to include some additional variables when writing to csv?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 14:36:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-to-multiple-destinations/m-p/539310#M22457</guid>
      <dc:creator>kimdukes77</dc:creator>
      <dc:date>2019-02-28T14:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: ODS to multiple destinations</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-to-multiple-destinations/m-p/539316#M22458</link>
      <description>&lt;P&gt;And how are you doing this?&amp;nbsp; We cannot see your code.&amp;nbsp; If your writing "simulataneously" to multiple ods destinations, then by its definition, the output for each will be the same, as its the same code.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 14:42:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-to-multiple-destinations/m-p/539316#M22458</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2019-02-28T14:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: ODS to multiple destinations</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-to-multiple-destinations/m-p/539321#M22459</link>
      <description>&lt;P&gt;Yes I thought so much, just trying to avoid having to write out the code a second time for csv destination.&amp;nbsp; Thanks anyway.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 14:47:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-to-multiple-destinations/m-p/539321#M22459</guid>
      <dc:creator>kimdukes77</dc:creator>
      <dc:date>2019-02-28T14:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: ODS to multiple destinations</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-to-multiple-destinations/m-p/539323#M22460</link>
      <description>&lt;P&gt;Again it depends on your code which I can't see, but CSV files can be created very easily with:&lt;/P&gt;
&lt;PRE&gt;proc export data=have outfile="...want.csv" dbms=csv;
run;&lt;/PRE&gt;
&lt;P&gt;You don't need to create any code for that, just that step.&lt;/P&gt;
&lt;P&gt;ODF (I assume you mean the format used by LIbreOffice) is different, I assume your creating an Excel type file, using tagsets.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 14:49:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-to-multiple-destinations/m-p/539323#M22460</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2019-02-28T14:49:33Z</dc:date>
    </item>
    <item>
      <title>Re: ODS to multiple destinations</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-to-multiple-destinations/m-p/539337#M22461</link>
      <description>&lt;P&gt;Explore using ODS &amp;lt;destination&amp;gt; (ID=xx) ....;&amp;nbsp; &amp;nbsp;-- where you declare each of your targets, each with a unique ID-value and follow that with your desired PROC (or otherwise) invocation.&amp;nbsp; And remember to follow-up with a suitable ODS....CLOSE; for each destination or _ALL_ otherwise.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Scott Barry&lt;BR /&gt;SBBWorks, Inc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 15:31:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-to-multiple-destinations/m-p/539337#M22461</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2019-02-28T15:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: ODS to multiple destinations</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-to-multiple-destinations/m-p/539562#M22465</link>
      <description>&lt;P&gt;I think the OP was asking to have different content of outputs from the same procedure, not how to output to different destinations.&amp;nbsp; Without some major macro code, I don't see how one proc report can create two different outputs - i.e. in this case a different set of variables on the two different outputs.&amp;nbsp; Hence there would need to be two different output steps.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2019 09:01:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-to-multiple-destinations/m-p/539562#M22465</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2019-03-01T09:01:45Z</dc:date>
    </item>
  </channel>
</rss>

