<?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: Send excel attachment through WRS in SAS Web Report Studio</title>
    <link>https://communities.sas.com/t5/SAS-Web-Report-Studio/Send-excel-attachment-through-WRS/m-p/245227#M2107</link>
    <description>&lt;P&gt;This topic in the SAS Web Report Studio User's Guide explains your options for exporting to Excel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/citug/65926/HTML/default/viewer.htm#p1rwzvqm7l9f9dn1hx7wacvtpowd.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/citug/65926/HTML/default/viewer.htm#p1rwzvqm7l9f9dn1hx7wacvtpowd.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You cannot directly email a report as an Excel file. You can email a link to a report snapshot, or you can distribute the report as a PDF.&lt;/P&gt;</description>
    <pubDate>Thu, 21 Jan 2016 16:53:53 GMT</pubDate>
    <dc:creator>Madelyn_SAS</dc:creator>
    <dc:date>2016-01-21T16:53:53Z</dc:date>
    <item>
      <title>Send excel attachment through WRS</title>
      <link>https://communities.sas.com/t5/SAS-Web-Report-Studio/Send-excel-attachment-through-WRS/m-p/239899#M2082</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Plese help how i will send excel attachment using WRS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Prashant Tomar&lt;/P&gt;</description>
      <pubDate>Fri, 18 Dec 2015 01:59:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Web-Report-Studio/Send-excel-attachment-through-WRS/m-p/239899#M2082</guid>
      <dc:creator>prashant_tomar</dc:creator>
      <dc:date>2015-12-18T01:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Send excel attachment through WRS</title>
      <link>https://communities.sas.com/t5/SAS-Web-Report-Studio/Send-excel-attachment-through-WRS/m-p/241642#M2086</link>
      <description>&lt;P&gt;Hi Prashant,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First let me nderstand what you are looking for&lt;/P&gt;&lt;P&gt;1. Do you need Web report to be sent as attachment?&lt;/P&gt;&lt;P&gt;2. Or Do you want when report run excel file should be e-mailed with attachment?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. this can be done by scheduling report&lt;/P&gt;&lt;P&gt;2. This can be done by calling stored process in web report and which will send email.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;this will be stored process with sas code to send email.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know what you are looking for and i can certainly help you on this&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jan 2016 13:49:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Web-Report-Studio/Send-excel-attachment-through-WRS/m-p/241642#M2086</guid>
      <dc:creator>umeshMahajan</dc:creator>
      <dc:date>2016-01-04T13:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: Send excel attachment through WRS</title>
      <link>https://communities.sas.com/t5/SAS-Web-Report-Studio/Send-excel-attachment-through-WRS/m-p/241963#M2087</link>
      <description>&lt;DIV&gt;How I will perform this by stored process&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;2. This can be done by calling stored process in web report and which will send email.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;this will be stored process with sas code to send email.&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jan 2016 02:04:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Web-Report-Studio/Send-excel-attachment-through-WRS/m-p/241963#M2087</guid>
      <dc:creator>prashant_tomar</dc:creator>
      <dc:date>2016-01-06T02:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: Send excel attachment through WRS</title>
      <link>https://communities.sas.com/t5/SAS-Web-Report-Studio/Send-excel-attachment-through-WRS/m-p/242237#M2088</link>
      <description>Here is sample code to send attachment via email FILENAME MailBox EMAIL 'Erik.Tilanus@planet.nl' SUBJECT='Mail message with RTF attachment'; FILENAME rtffile 'e:\testlist.rtf'; ODS LISTING CLOSE; ODS RTF FILE=rtffile; DATA _NULL_; FILE PRINT; PUT "This is my report"; RUN; ODS RTF CLOSE; ODS LISTING; DATA _NULL_; attachment=FINFO(FOPEN('rtffile'),'File Name'); FILE MailBox; PUT "attached you find the report"; PUT '!EM_ATTACH!' attachment; RUN; use this code to create sas stored process to create sas stored process follow this &lt;A href="http://support.sas.com/resources/papers/proceedings13/148-2013.pdf" target="_blank"&gt;http://support.sas.com/resources/papers/proceedings13/148-2013.pdf&lt;/A&gt; and to incluse stp in web report studio follow this &lt;A href="https://support.sas.com/documentation/cdl/en/citug/61084/HTML/default/viewer.htm#n1j00mg53d0evfn1t08p1muw4nbv.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/citug/61084/HTML/default/viewer.htm#n1j00mg53d0evfn1t08p1muw4nbv.htm&lt;/A&gt; and you are done &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Thu, 07 Jan 2016 17:50:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Web-Report-Studio/Send-excel-attachment-through-WRS/m-p/242237#M2088</guid>
      <dc:creator>umeshMahajan</dc:creator>
      <dc:date>2016-01-07T17:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: Send excel attachment through WRS</title>
      <link>https://communities.sas.com/t5/SAS-Web-Report-Studio/Send-excel-attachment-through-WRS/m-p/242306#M2089</link>
      <description>&lt;P&gt;Report was already creadted in WRS and wana send report with excel attachment&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2016 01:28:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Web-Report-Studio/Send-excel-attachment-through-WRS/m-p/242306#M2089</guid>
      <dc:creator>prashant_tomar</dc:creator>
      <dc:date>2016-01-08T01:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: Send excel attachment through WRS</title>
      <link>https://communities.sas.com/t5/SAS-Web-Report-Studio/Send-excel-attachment-through-WRS/m-p/245227#M2107</link>
      <description>&lt;P&gt;This topic in the SAS Web Report Studio User's Guide explains your options for exporting to Excel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/citug/65926/HTML/default/viewer.htm#p1rwzvqm7l9f9dn1hx7wacvtpowd.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/citug/65926/HTML/default/viewer.htm#p1rwzvqm7l9f9dn1hx7wacvtpowd.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You cannot directly email a report as an Excel file. You can email a link to a report snapshot, or you can distribute the report as a PDF.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jan 2016 16:53:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Web-Report-Studio/Send-excel-attachment-through-WRS/m-p/245227#M2107</guid>
      <dc:creator>Madelyn_SAS</dc:creator>
      <dc:date>2016-01-21T16:53:53Z</dc:date>
    </item>
  </channel>
</rss>

