<?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: %sysfunc(exist()) in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/sysfunc-exist/m-p/578929#M164278</link>
    <description>Are you searching for the latest version of a file?</description>
    <pubDate>Sat, 03 Aug 2019 18:16:50 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2019-08-03T18:16:50Z</dc:date>
    <item>
      <title>%sysfunc(exist())</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sysfunc-exist/m-p/578868#M164247</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me have a look what is wrong with my code ? Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Each week, I have 3 date, then I need to select the latest available file&amp;nbsp;- ga.cust_yyyymmdd from&amp;nbsp;that 3 dates.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for example wk2 I have 3 date, 20190731, 20190730, and 20190729.&lt;/P&gt;&lt;P&gt;I need to pick a date,&lt;/P&gt;&lt;P&gt;if the file is available on 20190731, then I will use 20190731.&lt;/P&gt;&lt;P&gt;if 20190731 do not have file, then I will pick 20190730&lt;/P&gt;&lt;P&gt;if 20190730 also&amp;nbsp;do not have file, then I will pick 20190729.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;below is my code :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#8000ff" size="2"&gt;%put&lt;/FONT&gt;&lt;FONT size="2"&gt; compute to testing valid date : &lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;wk2_a.&lt;/FONT&gt; &lt;FONT color="#000080" size="2"&gt;&amp;amp;wk2_b.&lt;/FONT&gt; &lt;FONT color="#000080" size="2"&gt;&amp;amp;wk2_c.&lt;/FONT&gt; &lt;FONT color="#000080" size="2"&gt;&amp;amp;wk0_a&lt;/FONT&gt; &lt;FONT color="#000080" size="2"&gt;&amp;amp;wk0_b&lt;/FONT&gt; &lt;FONT color="#000080" size="2"&gt;&amp;amp;wk0_c&lt;/FONT&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#8000ff" size="2"&gt;&lt;I&gt;%macro&lt;/I&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; date; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%if&lt;/FONT&gt;&lt;/I&gt; &lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%sysfunc&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;(exist(ga.cust_&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;wk2_a.&lt;/FONT&gt;&lt;FONT size="2"&gt;)) &lt;/FONT&gt;&lt;FONT color="#8000ff" size="2"&gt;%then&lt;/FONT&gt; &lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%do&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%let&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt; wk2_dt=&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;wk2_a&lt;/FONT&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%end&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%else&lt;/FONT&gt;&lt;/I&gt; &lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%if&lt;/FONT&gt;&lt;/I&gt; &lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%sysfunc&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;(exist(ga.cust_&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;wk2_b.&lt;/FONT&gt;&lt;FONT size="2"&gt;)) &lt;/FONT&gt;&lt;FONT color="#8000ff" size="2"&gt;%then&lt;/FONT&gt; &lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%do&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%let&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt; wk2_dt=&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;wk2_b&lt;/FONT&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%end&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%else&lt;/FONT&gt;&lt;/I&gt; &lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%if&lt;/FONT&gt;&lt;/I&gt; &lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%sysfunc&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;(exist(ga.cust_&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;wk2_c.&lt;/FONT&gt;&lt;FONT size="2"&gt;)) &lt;/FONT&gt;&lt;FONT color="#8000ff" size="2"&gt;%then&lt;/FONT&gt; &lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%do&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%let&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt; wk2_dt=&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;wk2_c&lt;/FONT&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%end&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%if&lt;/FONT&gt;&lt;/I&gt; &lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%sysfunc&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;(exist(ga.cust_&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;wk0_a.&lt;/FONT&gt;&lt;FONT size="2"&gt;)) &lt;/FONT&gt;&lt;FONT color="#8000ff" size="2"&gt;%then&lt;/FONT&gt; &lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%do&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%let&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt; wk0_dt=&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;wk0_a&lt;/FONT&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%end&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%else&lt;/FONT&gt;&lt;/I&gt; &lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%if&lt;/FONT&gt;&lt;/I&gt; &lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%sysfunc&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;(exist(ga.cust_&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;wk0_b.&lt;/FONT&gt;&lt;FONT size="2"&gt;)) &lt;/FONT&gt;&lt;FONT color="#8000ff" size="2"&gt;%then&lt;/FONT&gt; &lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%do&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%let&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt; wk0_dt=&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;wk0_b&lt;/FONT&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%end&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%else&lt;/FONT&gt;&lt;/I&gt; &lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%if&lt;/FONT&gt;&lt;/I&gt; &lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%sysfunc&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;(exist(ga.cust_&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;wk0_c.&lt;/FONT&gt;&lt;FONT size="2"&gt;)) &lt;/FONT&gt;&lt;FONT color="#8000ff" size="2"&gt;%then&lt;/FONT&gt; &lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%do&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%let&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt; wk0_dt=&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;wk0_c&lt;/FONT&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#8000ff" size="2"&gt;%end&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#8000ff" size="2"&gt;&lt;I&gt;%mend&lt;/I&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#8000ff" size="2"&gt;&lt;I&gt;%date&lt;/I&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;;&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;below is the log:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;%put compute to testing valid date : &amp;amp;wk2_a. &amp;amp;wk2_b. &amp;amp;wk2_c. &amp;amp;wk0_a &amp;amp;wk0_b &amp;amp;wk0_c;&lt;/P&gt;&lt;P align="left"&gt;compute to testing valid date : 20190731 20190730 20190729 20190724 20190723 20190722&lt;/P&gt;&lt;P align="left"&gt;1993&lt;/P&gt;&lt;P align="left"&gt;1994 %macro date;&lt;/P&gt;&lt;P align="left"&gt;1995&lt;/P&gt;&lt;P align="left"&gt;1996 %if %sysfunc(exist(ga.cust_&amp;amp;wk2_a.)) %then %do;&lt;/P&gt;&lt;P align="left"&gt;1997 %let wk2_dt=&amp;amp;wk2_a;&lt;/P&gt;&lt;P align="left"&gt;1998 %end;&lt;/P&gt;&lt;P align="left"&gt;1999 %else %if %sysfunc(exist(ga.cust_&amp;amp;wk2_b.)) %then %do;&lt;/P&gt;&lt;P align="left"&gt;2000 %let wk2_dt=&amp;amp;wk2_b;&lt;/P&gt;&lt;P align="left"&gt;2001 %end;&lt;/P&gt;&lt;P align="left"&gt;2002 %else %if %sysfunc(exist(ga.cust_&amp;amp;wk2_c.)) %then %do;&lt;/P&gt;&lt;P align="left"&gt;2003 %let wk2_dt=&amp;amp;wk2_c;&lt;/P&gt;&lt;P align="left"&gt;2004 %end;&lt;/P&gt;&lt;P align="left"&gt;2005&lt;/P&gt;&lt;P align="left"&gt;2006&lt;/P&gt;&lt;P align="left"&gt;2007 %if %sysfunc(exist(ga.cust_&amp;amp;wk0_a.)) %then %do;&lt;/P&gt;&lt;P align="left"&gt;2008 %let wk0_dt=&amp;amp;wk0_a;&lt;/P&gt;&lt;P align="left"&gt;2009 %end;&lt;/P&gt;&lt;P align="left"&gt;2010 %else %if %sysfunc(exist(ga.cust_&amp;amp;wk0_b.)) %then %do;&lt;/P&gt;&lt;P align="left"&gt;2011 %let wk0_dt=&amp;amp;wk0_b;&lt;/P&gt;&lt;P align="left"&gt;2012 %end;&lt;/P&gt;&lt;P align="left"&gt;2013 %else %if %sysfunc(exist(ga.cust_&amp;amp;wk0_c.)) %then %do;&lt;/P&gt;&lt;P align="left"&gt;2014 %let wk0_dt=&amp;amp;wk0_c;&lt;/P&gt;&lt;P align="left"&gt;2015 %end;&lt;/P&gt;&lt;P align="left"&gt;2016 %mend;&lt;/P&gt;&lt;P align="left"&gt;2017 %date;&lt;/P&gt;&lt;P align="left"&gt;2018&lt;/P&gt;&lt;P align="left"&gt;2019 %put final file date= &amp;amp;wk0_dt. &amp;amp;wk2_dt.;&lt;/P&gt;&lt;P align="left"&gt;WARNING: Apparent symbolic reference WK0_DT not resolved.&lt;/P&gt;&lt;P align="left"&gt;WARNING: Apparent symbolic reference WK2_DT not resolved.&lt;/P&gt;&lt;P&gt;final file date= &amp;amp;wk0_dt. &amp;amp;wk2_dt.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Aug 2019 04:36:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sysfunc-exist/m-p/578868#M164247</guid>
      <dc:creator>Gpp</dc:creator>
      <dc:date>2019-08-03T04:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: %sysfunc(exist())</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sysfunc-exist/m-p/578871#M164250</link>
      <description>&lt;P&gt;Why are you trying to do the logic in macro code instead of just using normal code?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You also don't explain how the three dates are selected.&amp;nbsp; They look like three dates in a row, so perhaps you just need to know one of them?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let date_wanted=20190731 ;
%let dsname=;

data _null_;
  date=input("&amp;amp;date_wanted",yymmdd8.);
  do date=date to date-2 by -1 until(found);
     dsname=cats('ga.cust_',put(date,yymmddn8.));
     found=exist(dsname);
  end;
  if found then call symputx('dsname',dsname);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Aug 2019 15:38:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sysfunc-exist/m-p/578871#M164250</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2019-08-03T15:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: %sysfunc(exist())</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sysfunc-exist/m-p/578874#M164251</link>
      <description>&lt;P&gt;What's basically wrong? You did not check if the issue at hand can be solved without the use of a macro.&lt;/P&gt;
&lt;P&gt;This probably happens because your knowledge of the Base SAS tools (data step language and procedures) is still very limited.&lt;/P&gt;
&lt;P&gt;So you should work (a lot) at that before engaging in macro programming.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The macro preprocessor is a text generator for creating dynamic SAS code. Without proper knowledge of the code to be created, it will be useless to you and only cause problems.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Macro variables have&amp;nbsp;&lt;EM&gt;scope&lt;/EM&gt;. If they are created in a macro, they are local to that macro and vanish as soon as the macro stops executing; only if they already existed in the global symbol table, or if you force them to be created there (either by the use of %global or "g" in call symputx) will they be available outside the macro.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;already showed you how to do it with data step tools.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Aug 2019 06:13:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sysfunc-exist/m-p/578874#M164251</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-08-03T06:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: %sysfunc(exist())</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sysfunc-exist/m-p/578875#M164252</link>
      <description>&lt;P&gt;thank you very much and I will try it now.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Aug 2019 06:34:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sysfunc-exist/m-p/578875#M164252</guid>
      <dc:creator>Gpp</dc:creator>
      <dc:date>2019-08-03T06:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: %sysfunc(exist())</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sysfunc-exist/m-p/578876#M164253</link>
      <description>&lt;P&gt;yes, I know , my knowledge very limited that's why I am seeking help at communities. Thanks for letting me know why the thing doesn't work. Thank you.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Aug 2019 06:36:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sysfunc-exist/m-p/578876#M164253</guid>
      <dc:creator>Gpp</dc:creator>
      <dc:date>2019-08-03T06:36:25Z</dc:date>
    </item>
    <item>
      <title>Re: %sysfunc(exist())</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sysfunc-exist/m-p/578929#M164278</link>
      <description>Are you searching for the latest version of a file?</description>
      <pubDate>Sat, 03 Aug 2019 18:16:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sysfunc-exist/m-p/578929#M164278</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-08-03T18:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: %sysfunc(exist())</title>
      <link>https://communities.sas.com/t5/SAS-Programming/sysfunc-exist/m-p/578930#M164279</link>
      <description>Hi rezza, I tried tom’s method and it’s work, thank you &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;</description>
      <pubDate>Sat, 03 Aug 2019 18:22:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/sysfunc-exist/m-p/578930#M164279</guid>
      <dc:creator>Gpp</dc:creator>
      <dc:date>2019-08-03T18:22:56Z</dc:date>
    </item>
  </channel>
</rss>

