<?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: Curious about FDELETE issue in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Curious-about-FDELETE-issue/m-p/415128#M101786</link>
    <description>&lt;P&gt;Maxim 1: Read the documentation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the &lt;A href="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000210819.htm" target="_blank"&gt;documentation of the FDELETE&lt;/A&gt; function:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In a macro (for example, in the %SYSFUNC function), &lt;SPAN class="strongEmph"&gt;fileref&lt;/SPAN&gt; is the name of a macro variable (without an ampersand) whose value contains the fileref to assign to the external file.&lt;/P&gt;</description>
    <pubDate>Tue, 21 Nov 2017 11:40:12 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2017-11-21T11:40:12Z</dc:date>
    <item>
      <title>Curious about FDELETE issue</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Curious-about-FDELETE-issue/m-p/415122#M101781</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am curious about an issue which I am getting when using&amp;nbsp;the FDELETE function via %SYSFUNC. I'd be interested in any explanation!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I inherited a macro for deleting files,&amp;nbsp;which I&amp;nbsp;tried to tidy up. The current state of the macro code is copied below. I am testing with the small program also copied below. The issue is with the line which is marked in RED. When this line is included in the macro code, everything works fine and I get the Log as shown in green. When this line is commented out, the macro does not work and I get the Log as shown in red.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anybody tell me why I need a macro variable with the name of "delfile" (the&amp;nbsp;fileref), which is also&amp;nbsp;populated with "delfile" ? I cannot see that this macro variable is actually used, but it seems that it needs to exist. Maybe I miss something obvious here?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(note: from the copy-and-pasted logs I've removed the first chunk of the printed filenames - they contain User Ids)&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running this code in SAS EG 7.1 on UNIX platform.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Antony&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Macro Code:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;%macro&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; mrmfile (filelst);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%local&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; file i rc numfiles delfile;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%let&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; numfiles=&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%sysfunc&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;(COUNTW(&amp;amp;filelst.,&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%str&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;(|)));&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%if&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; numfiles=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;0&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%then&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%goto&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; out;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;%&lt;/FONT&gt;&lt;FONT color="#008000" face="Courier New" size="3"&gt;* Scan the specified file list and delete all existing files. ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%do&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; i = &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%to&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; &amp;amp;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;numfiles.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%let&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; file = &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%scan&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;(&amp;amp;filelst.,&amp;amp;i.,&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%str&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;(|));&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%if&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%sysfunc&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;(fileexist(&amp;amp;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;file.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;)) &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%then&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%do&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;%&lt;/FONT&gt;&lt;FONT color="#008000" face="Courier New" size="3"&gt;* this macro var needs to be populated with the given fileref - not sure why!;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#ff0000"&gt;&lt;FONT face="Courier New" size="3"&gt;%&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;*let delfile = delfile;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;%&lt;/FONT&gt;&lt;FONT color="#008000" face="Courier New" size="3"&gt;* Assign a filename to the file to delete. ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%let&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; rc = &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%sysfunc&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;(filename(delfile,&amp;amp;file.));&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;%&lt;/FONT&gt;&lt;FONT color="#008000" face="Courier New" size="3"&gt;* Delete the file. ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%let&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; rc = &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%sysfunc&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;(fdelete(delfile));&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%if&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; &amp;amp;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;rc.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;0&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%then&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%put&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; &amp;gt;&amp;gt;&amp;gt; INFO: &amp;amp;SYSMACRONAME. &amp;gt;&amp;gt; &amp;amp;file. deleted (rc=&amp;amp;rc.);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%else&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%put&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; &amp;gt;&amp;gt;&amp;gt; ERROR: &amp;amp;SYSMACRONAME. &amp;gt;&amp;gt; Could not delete &amp;amp;file. (rc=&amp;amp;rc.);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;%&lt;/FONT&gt;&lt;FONT color="#008000" face="Courier New" size="3"&gt;* Deassign the filename. ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%let&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; rc = &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%sysfunc&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;(filename(delfile));&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%end&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%else&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%put&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; &amp;gt;&amp;gt;&amp;gt; INFO: &amp;amp;SYSMACRONAME. &amp;gt;&amp;gt; File &amp;amp;file. does not exist. ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%end&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%out:&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;%mend&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; mrmfile;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Test Program:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%let&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; wpath=&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;%sysfunc&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;(pathname(work));&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt; work.test1;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;a=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="3"&gt;'test1'&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="3"&gt;_null_&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;file&lt;/FONT&gt; &lt;FONT color="#800080" face="Courier New" size="3"&gt;"&amp;amp;wpath.\test2.txt"&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="3"&gt;put&lt;/FONT&gt; &lt;FONT color="#800080" face="Courier New" size="3"&gt;'test2'&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="3"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;%&lt;STRONG&gt;&lt;I&gt;mrmfile&lt;/I&gt;&lt;/STRONG&gt;(&amp;amp;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;wpath.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;\test1.sas7bdat | &amp;amp;&lt;/FONT&gt;&lt;FONT color="#008080" face="Courier New" size="3"&gt;wpath.&lt;/FONT&gt;&lt;FONT face="Courier New" size="3"&gt;\test2.txt);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Log when line is included:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#339966"&gt;37&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#339966"&gt;38 %mrmfile(&amp;amp;wpath.\test1.sas7bdat | &amp;amp;wpath.\test2.txt);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#339966"&gt;&amp;gt;&amp;gt;&amp;gt; INFO: MRMFILE &amp;gt;&amp;gt; \SEG12956\SAS Temporary Files\_TD9088_DEFRALT004871_\Prc2\test1.sas7bdat deleted (rc=0)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#339966"&gt;&amp;gt;&amp;gt;&amp;gt; INFO: MRMFILE &amp;gt;&amp;gt; \SEG12956\SAS Temporary Files\_TD9088_DEFRALT004871_\Prc2\test2.txt deleted (rc=0)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Log when line is commented:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#ff0000"&gt;37&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#ff0000"&gt;38 %mrmfile(&amp;amp;wpath.\test1.sas7bdat | &amp;amp;wpath.\test2.txt);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#ff0000"&gt;&amp;gt;&amp;gt;&amp;gt; ERROR: MRMFILE &amp;gt;&amp;gt; Could not delete \SEG12956\SAS Temporary Files\_TD9088_DEFRALT004871_\Prc2\test1.sas7bdat (rc=20004)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#ff0000"&gt;&amp;gt;&amp;gt;&amp;gt; ERROR: MRMFILE &amp;gt;&amp;gt; Could not delete \SEG12956\SAS Temporary Files\_TD9088_DEFRALT004871_\Prc2\test2.txt (rc=20004)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2017 11:16:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Curious-about-FDELETE-issue/m-p/415122#M101781</guid>
      <dc:creator>aknight1</dc:creator>
      <dc:date>2017-11-21T11:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: Curious about FDELETE issue</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Curious-about-FDELETE-issue/m-p/415128#M101786</link>
      <description>&lt;P&gt;Maxim 1: Read the documentation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the &lt;A href="http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000210819.htm" target="_blank"&gt;documentation of the FDELETE&lt;/A&gt; function:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In a macro (for example, in the %SYSFUNC function), &lt;SPAN class="strongEmph"&gt;fileref&lt;/SPAN&gt; is the name of a macro variable (without an ampersand) whose value contains the fileref to assign to the external file.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2017 11:40:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Curious-about-FDELETE-issue/m-p/415128#M101786</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-11-21T11:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: Curious about FDELETE issue</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Curious-about-FDELETE-issue/m-p/415130#M101788</link>
      <description>&lt;P&gt;Hi Mr Bremser,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Aha!&amp;nbsp; So yes, I miss something obvious here!&amp;nbsp;&amp;nbsp; &lt;img id="smileyembarrassed" class="emoticon emoticon-smileyembarrassed" src="https://communities.sas.com/i/smilies/16x16_smiley-embarrassed.png" alt="Smiley Embarassed" title="Smiley Embarassed" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your quick reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Antony&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2017 11:49:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Curious-about-FDELETE-issue/m-p/415130#M101788</guid>
      <dc:creator>aknight1</dc:creator>
      <dc:date>2017-11-21T11:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: Curious about FDELETE issue</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Curious-about-FDELETE-issue/m-p/415133#M101790</link>
      <description>&lt;P&gt;TBH, your question made me read that specific part of the doc.&lt;/P&gt;
&lt;P&gt;Since I always use the operating system's commands via filename pipe for deleting files, I didn't know that specific "quirk" of fdelete().&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2017 11:51:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Curious-about-FDELETE-issue/m-p/415133#M101790</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-11-21T11:51:57Z</dc:date>
    </item>
  </channel>
</rss>

