<?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 How to write run date/time into .rtf file in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-run-date-time-into-rtf-file/m-p/9421#M507</link>
    <description>I am using the options date on the .rtf report to display the report creation date/time. But when I open the report later on, the date/time changes to the date/time of report opening, not of report creation. &lt;BR /&gt;
&lt;BR /&gt;
How can I write the date/time to the .rtf file and make it stay, instead of dynamically change?&lt;BR /&gt;
&lt;BR /&gt;
Please help</description>
    <pubDate>Thu, 29 Oct 2009 19:10:54 GMT</pubDate>
    <dc:creator>odmhx</dc:creator>
    <dc:date>2009-10-29T19:10:54Z</dc:date>
    <item>
      <title>How to write run date/time into .rtf file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-run-date-time-into-rtf-file/m-p/9421#M507</link>
      <description>I am using the options date on the .rtf report to display the report creation date/time. But when I open the report later on, the date/time changes to the date/time of report opening, not of report creation. &lt;BR /&gt;
&lt;BR /&gt;
How can I write the date/time to the .rtf file and make it stay, instead of dynamically change?&lt;BR /&gt;
&lt;BR /&gt;
Please help</description>
      <pubDate>Thu, 29 Oct 2009 19:10:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-run-date-time-into-rtf-file/m-p/9421#M507</guid>
      <dc:creator>odmhx</dc:creator>
      <dc:date>2009-10-29T19:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to write run date/time into .rtf file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-run-date-time-into-rtf-file/m-p/9422#M508</link>
      <description>What code is generating the "date"? There are many possible techniques, so it's best that you share your particular SAS code.&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Thu, 29 Oct 2009 19:47:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-run-date-time-into-rtf-file/m-p/9422#M508</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-10-29T19:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to write run date/time into .rtf file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-run-date-time-into-rtf-file/m-p/9423#M509</link>
      <description>If you use &lt;BR /&gt;
OPTIONS DATE;&lt;BR /&gt;
to put the date in the title line in the RTF destination, it uses the RTF "current date" function.  Argh!  It's a "feature" that I really dislike.&lt;BR /&gt;
&lt;BR /&gt;
To get the actual date in the title or footer, use the &amp;amp;sysdate macro variable in the TITLE or FOOTER and &lt;BR /&gt;
OPTIONS NODATE;</description>
      <pubDate>Thu, 29 Oct 2009 20:11:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-run-date-time-into-rtf-file/m-p/9423#M509</guid>
      <dc:creator>Doc_Duke</dc:creator>
      <dc:date>2009-10-29T20:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to write run date/time into .rtf file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-run-date-time-into-rtf-file/m-p/9424#M510</link>
      <description>I was using Default Options, i.e, Options Date.</description>
      <pubDate>Fri, 30 Oct 2009 10:59:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-run-date-time-into-rtf-file/m-p/9424#M510</guid>
      <dc:creator>odmhx</dc:creator>
      <dc:date>2009-10-30T10:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to write run date/time into .rtf file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-run-date-time-into-rtf-file/m-p/9425#M511</link>
      <description>&amp;gt; If you use &lt;BR /&gt;
&amp;gt; OPTIONS DATE;&lt;BR /&gt;
&amp;gt; to put the date in the title line in the RTF&lt;BR /&gt;
&amp;gt; destination, it uses the RTF "current date" function.&lt;BR /&gt;
&amp;gt;  Argh!  It's a "feature" that I really dislike.&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; To get the actual date in the title or footer, use&lt;BR /&gt;
&amp;gt; the &amp;amp;sysdate macro variable in the TITLE or FOOTER&lt;BR /&gt;
&amp;gt; and &lt;BR /&gt;
&amp;gt; OPTIONS NODATE;&lt;BR /&gt;
&lt;BR /&gt;
Thank you very much for your message. I'll use the &amp;amp;sysdate.</description>
      <pubDate>Fri, 30 Oct 2009 11:01:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-run-date-time-into-rtf-file/m-p/9425#M511</guid>
      <dc:creator>odmhx</dc:creator>
      <dc:date>2009-10-30T11:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to write run date/time into .rtf file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-run-date-time-into-rtf-file/m-p/9426#M512</link>
      <description>Hi:&lt;BR /&gt;
   You also might want to check out the SASDATE option for the ODS RTF destination:&lt;BR /&gt;
&lt;A href="http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002233360.htm#a003137833" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/odsug/61723/HTML/default/a002233360.htm#a003137833&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Fri, 30 Oct 2009 14:39:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-run-date-time-into-rtf-file/m-p/9426#M512</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-10-30T14:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to write run date/time into .rtf file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-write-run-date-time-into-rtf-file/m-p/9427#M513</link>
      <description>&amp;gt; Hi:&lt;BR /&gt;
&amp;gt; You also might want to check out the SASDATE&lt;BR /&gt;
&amp;gt;  option for the ODS RTF destination:&lt;BR /&gt;
&amp;gt; ttp://support.sas.com/documentation/cdl/en/odsug/61723&lt;BR /&gt;
&amp;gt; /HTML/default/a002233360.htm#a003137833&lt;BR /&gt;
&amp;gt;  &lt;BR /&gt;
&amp;gt; ynthia&lt;BR /&gt;
&lt;BR /&gt;
Thank you very much, Synthia, for the link.</description>
      <pubDate>Fri, 30 Oct 2009 14:42:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-write-run-date-time-into-rtf-file/m-p/9427#M513</guid>
      <dc:creator>odmhx</dc:creator>
      <dc:date>2009-10-30T14:42:57Z</dc:date>
    </item>
  </channel>
</rss>

