<?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: Allocation of libery - %lib(libery name) - get is working with how ever the spelling is in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295850#M61870</link>
    <description>&lt;P&gt;few more points:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when using macro variable there is no need to enter the string between apostrophs:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; %let &amp;nbsp;lib = ABCD &amp;nbsp; &amp;nbsp;is right&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; %let lib='ABCD' &amp;nbsp; &amp;nbsp; &amp;nbsp;may cause truble&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;libname &amp;nbsp;&amp;amp;lib &amp;nbsp;"&amp;amp;program/&amp;amp;lib"; &amp;nbsp; &amp;nbsp; may work fine with double quotes&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;libname &amp;nbsp;&amp;amp;lib &amp;nbsp;'&lt;SPAN&gt;&amp;amp;program/&amp;amp;lib'; &amp;nbsp; &amp;nbsp; &amp;nbsp;will not work&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 01 Sep 2016 14:22:10 GMT</pubDate>
    <dc:creator>Shmuel</dc:creator>
    <dc:date>2016-09-01T14:22:10Z</dc:date>
    <item>
      <title>Allocation of library - %lib(library name)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295837#M61862</link>
      <description>&lt;P&gt;Hi everybody&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope you can help me with a question. At my work I have made a macro to allocate all of our data library's with the macro, %lib(name of library&amp;nbsp;). See below for just one of these libraries:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my current solution based&amp;nbsp;upon the code below&amp;nbsp;I allocate the library&amp;nbsp;with writing: %lib(ADHOC).&lt;/P&gt;
&lt;P&gt;After&amp;nbsp;macro has been put in production there&amp;nbsp;has been&amp;nbsp;a wish in the department&amp;nbsp;to be able to write ADHOC as either adhoc, Adhoc, ADHOC&amp;nbsp;or how ever you can write it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know of&amp;nbsp;the upcase, lowcase, propcase function but I&amp;nbsp;am not sure&amp;nbsp;how to implemet it in my&amp;nbsp;code below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope you can help me with this and many thanks in advance.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards&lt;/P&gt;
&lt;P&gt;Thomas&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P align="left"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;I&gt;%macro&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; lib(lib);&lt;/FONT&gt;&lt;/P&gt;
&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P align="left"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;I&gt;%let&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; program=\\ipt202wp.iplocal.dk\f-drev; &lt;/FONT&gt;&lt;I&gt;&lt;FONT size="2" color="#999900"&gt;&lt;FONT size="2" color="#999900"&gt;%put&lt;/FONT&gt;&lt;/FONT&gt;&lt;/I&gt; &lt;FONT size="2" color="#000080"&gt;&lt;FONT size="2" color="#000080"&gt;&amp;amp;program&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" color="#999900"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;I&gt;%let&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; AdHoc = '&lt;/FONT&gt;&lt;FONT size="2" color="#000080"&gt;&lt;FONT size="2" color="#000080"&gt;&amp;amp;program&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;\adhoc';&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P align="left"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;I&gt;%if&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; "&lt;/FONT&gt;&lt;FONT size="2" color="#000080"&gt;&lt;FONT size="2" color="#000080"&gt;&amp;amp;lib&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;" = "ADHOC"&lt;/FONT&gt;&lt;/P&gt;
&lt;P align="left"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;FONT size="2" color="#999900"&gt;%then&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; libname adhoc "&lt;/FONT&gt;&lt;FONT size="2" color="#000080"&gt;&lt;FONT size="2" color="#000080"&gt;&amp;amp;program.&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;\adhoc";&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;&lt;FONT size="2" color="#999900"&gt;&lt;FONT size="2" color="#999900"&gt;%else&lt;/FONT&gt;&lt;/FONT&gt;&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;&lt;I&gt;&lt;FONT size="2" color="#999900"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/I&gt;&lt;I&gt;&lt;FONT size="2" color="#999900"&gt;%put&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt; *************** REFERENCE &lt;/FONT&gt;&lt;FONT size="2" color="#000080"&gt;&amp;amp;lib&lt;/FONT&gt;&lt;FONT size="2"&gt; IS UNKNOWN - TRY AGAIN &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; ***************;&lt;/FONT&gt;&lt;/P&gt;
&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P align="left"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;I&gt;%mend&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2016 14:29:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295837#M61862</guid>
      <dc:creator>piddy</dc:creator>
      <dc:date>2016-09-01T14:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: Allocation of libery - %lib(libery name) - get is working with how ever the spelling is</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295843#M61865</link>
      <description>&lt;P&gt;What OS do you use - Windows or Unix/Linux or other ?&lt;/P&gt;&lt;P&gt;As mutch as I know, Windows is not sensitive to case of letters, but Unix and Linux are sensitive&lt;/P&gt;&lt;P&gt;and you must replace the user's spellinhg to the right spelling as it is written on the HD.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2016 14:14:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295843#M61865</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-09-01T14:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: Allocation of libery - %lib(libery name) - get is working with how ever the spelling is</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295849#M61869</link>
      <description>&lt;P&gt;It's a Windows server running SAS.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2016 14:21:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295849#M61869</guid>
      <dc:creator>piddy</dc:creator>
      <dc:date>2016-09-01T14:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: Allocation of libery - %lib(libery name) - get is working with how ever the spelling is</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295850#M61870</link>
      <description>&lt;P&gt;few more points:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when using macro variable there is no need to enter the string between apostrophs:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; %let &amp;nbsp;lib = ABCD &amp;nbsp; &amp;nbsp;is right&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; %let lib='ABCD' &amp;nbsp; &amp;nbsp; &amp;nbsp;may cause truble&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;libname &amp;nbsp;&amp;amp;lib &amp;nbsp;"&amp;amp;program/&amp;amp;lib"; &amp;nbsp; &amp;nbsp; may work fine with double quotes&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;libname &amp;nbsp;&amp;amp;lib &amp;nbsp;'&lt;SPAN&gt;&amp;amp;program/&amp;amp;lib'; &amp;nbsp; &amp;nbsp; &amp;nbsp;will not work&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2016 14:22:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295850#M61870</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-09-01T14:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Allocation of libery - %lib(libery name) - get is working with how ever the spelling is</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295852#M61871</link>
      <description>&lt;P&gt;On windows server you may leave the spelling as is, but from the estatic point of view and&lt;/P&gt;&lt;P&gt;for educational point of view I suggest do either UPCASE or lowcase - according to your prefference.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2016 14:26:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295852#M61871</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-09-01T14:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: Allocation of libery - %lib(libery name) - get is working with how ever the spelling is</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295853#M61872</link>
      <description>&lt;P&gt;What is the intent of this:&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#999900" size="2"&gt;&lt;EM&gt;%if&lt;/EM&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; "&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;lib&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;" = "ADHOC"&lt;/FONT&gt;?&lt;/P&gt;
&lt;P&gt;If you are checking to see if the value passed to the macro is ADHOC then quotes are not needed.&lt;/P&gt;
&lt;P&gt;But you may want to see about the case. The macro may have issues if calle as %lib(Adhoc); or %lib(aDhoc); etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%if upcase(&amp;amp;lib) = ADHOC %then %do ;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2016 14:31:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295853#M61872</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-09-01T14:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: Allocation of libery - %lib(libery name) - get is working with how ever the spelling is</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295856#M61875</link>
      <description>&lt;P&gt;I the top of a program where I allocate a libery, normally you could would write this for&amp;nbsp;example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;libname&lt;/SPAN&gt;&lt;SPAN style="font-family: &amp;quot;Courier New&amp;quot;; font-size: 10pt;"&gt;&lt;FONT color="#000000"&gt; wfstat&lt;/FONT&gt; &lt;SPAN style="color: purple;"&gt;'\\ipt202wp.iplocal.dk\f-drev\wfstat'&lt;/SPAN&gt;&lt;FONT color="#000000"&gt;;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;With the macro in my post I can just&amp;nbsp;write:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%lib(WFSTAT);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My question is how can I adjust my code so I both can write&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%lib(WFSTAT);&lt;/P&gt;&lt;P&gt;%lib(wfstat);&lt;/P&gt;&lt;P&gt;%lib(Wfstat);&lt;/P&gt;&lt;P&gt;or how ever&amp;nbsp;it can be spelled.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2016 14:35:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295856#M61875</guid>
      <dc:creator>piddy</dc:creator>
      <dc:date>2016-09-01T14:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: Allocation of libery - %lib(libery name) - get is working with how ever the spelling is</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295861#M61876</link>
      <description>&lt;P&gt;You probably want a macro like this. &amp;nbsp;Personally since I normally use Unix systems I would force the actual directory name to lowercase. &amp;nbsp;If you are using Windows servers then that might not matter to you could eliminate the code to convert the value provided to lowercase. &amp;nbsp;Also instead of checking if the file (directory) exists you could just try to generate the libname and SAS will throw the error message for you. Or you could check the automatic macro variable SYSLIBRC to see if the libname statement worked.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro lib(lib);
%local path ;
%let path=\\ipt202wp.iplocal.dk\f-drev\%sysfunc(lowcase(&amp;amp;lib)) ;

%if %sysfunc(fileexist(&amp;amp;path)) %then %do;
  libname &amp;amp;lib "&amp;amp;path" ;
%end;
%else %do ;
  %put ERROR: &amp;amp;=lib is invalid.  Could not find &amp;amp;=path ;
%end;
%mend lib ;
 
%lib(WFSTAT);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2016 14:51:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295861#M61876</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2016-09-01T14:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Allocation of libery - %lib(libery name) - get is working with how ever the spelling is</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295864#M61877</link>
      <description>&lt;P&gt;Here is your code addapted to your query:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;I&gt;%macro&lt;/I&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; lib(lib);&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;I&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;%let&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; program=&lt;SPAN&gt;\\ipt202wp.iplocal.dk\f-drev\;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;%let lib = %sysfunc(lowcase(&amp;amp;lib));&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;I&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;%do;&amp;nbsp;&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;libname &amp;amp;lib &amp;nbsp;"&lt;/FONT&gt;&lt;FONT size="2" color="#000080"&gt;&lt;FONT size="2" color="#000080"&gt;&amp;amp;program.&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;\&amp;amp;lib";&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;&lt;FONT size="2" color="#999900"&gt;&amp;nbsp; %men&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2" color="#999900"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;I&gt;d&lt;/I&gt;&lt;/FONT&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;&lt;FONT size="2"&gt;I have droped the &lt;STRONG&gt;%if &lt;/STRONG&gt;statement, but if you want to check validity of values then change to:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;I&gt;%macro&lt;/I&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; lib(lib);&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;I&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;%let&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; program=&lt;SPAN&gt;\\ipt202wp.iplocal.dk\f-drev\;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;%let lib = %sysfunc(lowcase(&amp;amp;lib));&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; %if &amp;amp;lib = wfstat %or &amp;amp;lib = adhoc %or .... &amp;nbsp; %then&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;I&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; %do;&amp;nbsp;&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;libname &amp;amp;lib &amp;nbsp;"&lt;/FONT&gt;&lt;FONT size="2" color="#000080"&gt;&lt;FONT size="2" color="#000080"&gt;&amp;amp;program.&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;\&amp;amp;lib";&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT size="2"&gt;&amp;nbsp; &amp;nbsp; %else %put &amp;nbsp; ... /* your message for invalid refference */&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;&lt;FONT size="2" color="#999900"&gt;&amp;nbsp; %men&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2" color="#999900"&gt;&lt;FONT size="2" color="#999900"&gt;&lt;I&gt;d&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2016 14:51:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295864#M61877</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-09-01T14:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: Allocation of libery - %lib(libery name) - get is working with how ever the spelling is</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295872#M61882</link>
      <description>Thanks. So however the user writes the name of the libery(WFSTAT,wfstat,Wfstat etc.) your solution converts all input in the %lib() to lowcase so there will be no hickups when running the code.&lt;BR /&gt;&lt;BR /&gt;Is that understood correcly?</description>
      <pubDate>Thu, 01 Sep 2016 15:03:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295872#M61882</guid>
      <dc:creator>piddy</dc:creator>
      <dc:date>2016-09-01T15:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: Allocation of libery - %lib(libery name) - get is working with how ever the spelling is</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295874#M61883</link>
      <description>&lt;P&gt;Correct.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2016 15:06:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295874#M61883</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-09-01T15:06:49Z</dc:date>
    </item>
    <item>
      <title>Re: Allocation of libery - %lib(libery name) - get is working with how ever the spelling is</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295875#M61884</link>
      <description>&lt;P&gt;OOPS, sorry;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have missed the&lt;STRONG&gt; %end&lt;/STRONG&gt; for the&lt;STRONG&gt; %do&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2016 15:08:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/295875#M61884</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-09-01T15:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: Allocation of libery - %lib(libery name) - get is working with how ever the spelling is</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/296089#M61951</link>
      <description>&lt;P&gt;Hi again&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my current macro I also have incorporated to use %lib() to access SQL databases. See below. I tried to make it work with the macro new macro you provided but I couldn't figure it out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The macro below&amp;nbsp;works fine except the thing about&amp;nbsp;I want&amp;nbsp;the user to&amp;nbsp;be able to write the libery name in the () as they want. So either lowcase, upcase etc.&amp;nbsp;&amp;nbsp;As the macro is now it only excepts UPCASE because that's how I have written them in the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;I&gt;%macro&lt;/I&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; lib(lib);&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;I&gt;%let&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; program=\\ipt202wp.iplocal.dk\f-drev; &lt;/FONT&gt;&lt;I&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%put&lt;/FONT&gt;&lt;/FONT&gt;&lt;/I&gt; &lt;FONT color="#000080" size="2"&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;program&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;I&gt;%let&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; AdHoc = '&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;program&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;\adhoc';&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;I&gt;%let&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; afstindb = '&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;program&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;\Afstemning\Afst_indbetal';&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;I&gt;%let&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; analyse = '&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;program&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;\analysedata';&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;/***************************************************************&lt;/P&gt;&lt;P align="left"&gt;**************************ALLOCATION OF LIBERY'S*****&lt;/P&gt;&lt;P align="left"&gt;****************************************************************/&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;/**Local data libery's**/&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;I&gt;%if&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; "&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;lib&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;" = "ADHOC"&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%then&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; libname adhoc "&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;program.&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;\adhoc";&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%else&lt;/FONT&gt;&lt;/FONT&gt;&lt;/I&gt;&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;I&gt;%if&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; "&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;lib&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;" = "AFSTINDB"&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%then&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; libname afstindb "&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;program.&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;\Afstemning\Afst_indbetal";&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%else&lt;/FONT&gt;&lt;/FONT&gt;&lt;/I&gt;&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;I&gt;%if&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; "&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;lib&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;" = "ANALYSE"&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%then&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; libname analyse "&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;program.&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;\analysedata";&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%else&lt;/FONT&gt;&lt;/FONT&gt;&lt;/I&gt;&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;/************ALLOCATION OF ALL LIBERYS IN ONE CALL***********/&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;I&gt;%if&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; "&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;lib&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;" = "AKTUARY"&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%then&lt;/FONT&gt;&lt;/FONT&gt; &lt;I&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%do&lt;/FONT&gt;&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="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%lib&lt;/FONT&gt;&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;(ADHOC);&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%lib&lt;/FONT&gt;&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;(AFSTINDB);&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%lib&lt;/FONT&gt;&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;(ANALYSE);&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%end&lt;/FONT&gt;&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="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%else&lt;/FONT&gt;&lt;/FONT&gt;&lt;/I&gt;&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;/****************ALLOCATION OF SQL LIBERY'S******************/&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;I&gt;%if&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; "&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;lib.&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;" = "WFSAP"&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%then&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; libname WFSAP ODBC&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;complete ="DRIVER={SQL server};&lt;/P&gt;&lt;P align="left"&gt;server=SERVERPATH\NAME;&lt;/P&gt;&lt;P align="left"&gt;Database=DATABASENAME;&lt;/P&gt;&lt;P align="left"&gt;Trusted_Connection=yes;";&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%else&lt;/FONT&gt;&lt;/FONT&gt;&lt;/I&gt;&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;I&gt;%if&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; "&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;lib.&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;" = "ISS"&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%then&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; libname ISS ODBC &lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;complete ="DRIVER={SQL server};&lt;/P&gt;&lt;P align="left"&gt;Server=SERVERPATH\NAME;&lt;/P&gt;&lt;P align="left"&gt;Database=DATABASENAME;&lt;/P&gt;&lt;P align="left"&gt;Trusted_Connection=yes;&lt;/P&gt;&lt;P align="left"&gt;User id=;&lt;/P&gt;&lt;P align="left"&gt;Password=; ";&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;/************ALLOCATION OF ALL SQL-LIBERYS IN ONE CALL************/&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;I&gt;%if&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; "&lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;lib&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;" = "SQL"&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%then&lt;/FONT&gt;&lt;/FONT&gt; &lt;I&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%do&lt;/FONT&gt;&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="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%lib&lt;/FONT&gt;&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;(WFSAP);&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%lib&lt;/FONT&gt;&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt;(ISS);&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&lt;I&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%end&lt;/FONT&gt;&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="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%else&lt;/FONT&gt;&lt;/FONT&gt;&lt;/I&gt;&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="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;%put&lt;/FONT&gt;&lt;/FONT&gt;&lt;/I&gt;&lt;FONT size="2"&gt; *************** REFERENCE &lt;/FONT&gt;&lt;FONT color="#000080" size="2"&gt;&lt;FONT color="#000080" size="2"&gt;&amp;amp;lib&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; IS UNKNOWN - TRY AGAIN ***************;&lt;/FONT&gt;&lt;/P&gt;&lt;P align="left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P align="left"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;FONT color="#999900" size="2"&gt;&lt;I&gt;%mend&lt;/I&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Sep 2016 10:20:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/296089#M61951</guid>
      <dc:creator>piddy</dc:creator>
      <dc:date>2016-09-02T10:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: Allocation of libery - %lib(libery name) - get is working with how ever the spelling is</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/296095#M61953</link>
      <description>&lt;P&gt;You need to add just one line after the &lt;STRONG&gt;%macro&lt;/STRONG&gt; line:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;STRONG&gt; %let lib = %upcase(&amp;amp;lib);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then the user can write it as he want.&lt;/P&gt;&lt;P&gt;Thae above line converts it to upcase for your &lt;STRONG&gt;%IF&lt;/STRONG&gt; statements.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Sep 2016 11:11:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Allocation-of-library-lib-library-name/m-p/296095#M61953</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2016-09-02T11:11:28Z</dc:date>
    </item>
  </channel>
</rss>

