<?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: Should view stand before or after option in datastep? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Should-view-stand-before-or-after-option-in-datastep/m-p/725635#M225427</link>
    <description>&lt;P&gt;A clear Maxim 4 issue.&lt;/P&gt;</description>
    <pubDate>Thu, 11 Mar 2021 21:25:00 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2021-03-11T21:25:00Z</dc:date>
    <item>
      <title>Should view stand before or after option in datastep?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Should-view-stand-before-or-after-option-in-datastep/m-p/725576#M225398</link>
      <description>&lt;P&gt;Hi all SAS users,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am starting using view, however, I read a couple of documents but can not find whether View should stand before or after the KEEP or DROP option.&lt;/P&gt;
&lt;P&gt;For example, I have&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data var_cal (drop=i);
	set del_contries;
	by gviidkey;
/*code*/
	;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I am wondering if I want to use view with data var_cal, what should I write the code?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data var_cal (drop=i) / view =var_cal;

/*or*/
data var_cal (drop=i) / view =var_cal(drop=i);
/*or*/
data var_cal / view =var_cal(drop=i);

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I think the second code is more logical but I want to ask for your advice.&lt;/P&gt;
&lt;P&gt;Warm regards.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 19:51:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Should-view-stand-before-or-after-option-in-datastep/m-p/725576#M225398</guid>
      <dc:creator>Phil_NZ</dc:creator>
      <dc:date>2021-03-11T19:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: Should view stand before or after option in datastep?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Should-view-stand-before-or-after-option-in-datastep/m-p/725588#M225404</link>
      <description>&lt;P&gt;This is one of those cases where it may be a good idea to play with a very small data set and try different sets of syntax.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you will find that SAS tells you pretty quickly what is nice.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 20:09:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Should-view-stand-before-or-after-option-in-datastep/m-p/725588#M225404</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-03-11T20:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: Should view stand before or after option in datastep?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Should-view-stand-before-or-after-option-in-datastep/m-p/725610#M225414</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, I just worked out with sashelp. class. And from these three ways, only the first code work, I mean only this code work&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data lll (drop=Age)/ view=lll ;
 set sashelp.class;;
 run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;It means that option DROP or KEEP cannot be written after view.&lt;/P&gt;
&lt;P&gt;Error existed in those case&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;NOTE: Writing HTML5(EGHTML) Body file: EGHTML
27         
28         data lll (drop=Age)/ view=lll(drop=Age) ;
                                         ____
                                         22
                                         76
ERROR 22-322: Syntax error, expecting one of the following: ALTER, EXECUTE, PROTECT, PW, READ, SOURCE, SRC, WRITE.  

ERROR 76-322: Syntax error, statement will be ignored.

29          set sashelp.class;;
30          run;

ERROR: Unable to create WORK.LLL.DATA because WORK.LLL.VIEW already exists.&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Do you agree with that, I hope I did not fall into a fallacy here, and any further notice for me as well?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warmest regards.&lt;/P&gt;
&lt;P&gt;Have a good day!&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 20:34:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Should-view-stand-before-or-after-option-in-datastep/m-p/725610#M225414</guid>
      <dc:creator>Phil_NZ</dc:creator>
      <dc:date>2021-03-11T20:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: Should view stand before or after option in datastep?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Should-view-stand-before-or-after-option-in-datastep/m-p/725635#M225427</link>
      <description>&lt;P&gt;A clear Maxim 4 issue.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 21:25:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Should-view-stand-before-or-after-option-in-datastep/m-p/725635#M225427</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-03-11T21:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: Should view stand before or after option in datastep?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Should-view-stand-before-or-after-option-in-datastep/m-p/725643#M225433</link>
      <description>&lt;P&gt;Indeed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Though I did take a moment to say "use a small data set".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/212695"&gt;@Phil_NZ&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you think of a view as a set of instructions to build a result you maybe can see why certain options have to be limited.&lt;/P&gt;
&lt;P&gt;You may have noticed that you can't mix names willy-nilly like&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Data want / view=reallywant;&lt;/P&gt;
&lt;P&gt;not every data set name on the DATA statement has to be a view but every view has to be a data set name. For instance:&lt;/P&gt;
&lt;PRE&gt;data noname(drop=name) boys (where=(sex='M'))/ view=boys;
   set sashelp.class;
run;&lt;/PRE&gt;
&lt;P&gt;The documentation on the DATA statement describes your question. See all the data-set-options appear before the option / for the view.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;DIV class="xis-refDictEntry"&gt;
&lt;DIV class="xis-syntax"&gt;
&lt;DIV class="xis-syntaxSimple"&gt;
&lt;DIV class="xis-syntaxLevel"&gt;&lt;SPAN class="xis-keyword"&gt;DATA&lt;/SPAN&gt; &lt;SPAN class="xis-argRequired"&gt;&lt;A title="Description of syntax: _NULL_" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#n1vugr9jk5k34xn1wdkb2zxr46d3" target="_blank"&gt;_NULL_&lt;/A&gt;&lt;/SPAN&gt; &lt;SPAN class="xis-argOptional"&gt;&amp;lt;/ &amp;lt;&lt;A title="Description of syntax: / DEBUG" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#n0mef47onx46d0n1iqbtv6aeqe0h" target="_blank"&gt;DEBUG&lt;/A&gt;&amp;gt; &amp;lt;&lt;A title="Description of syntax: / NESTING" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#p144v478zwvm1bn18bcqynbktt9n" target="_blank"&gt;NESTING&lt;/A&gt;&amp;gt; &amp;lt;&lt;A title="Description of syntax: / STACK=stack-size" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#n0jy38vhlt4jfvn1x28ig6afnjj7" target="_blank"&gt;STACK = &lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;stack-size&lt;/SPAN&gt;&lt;/A&gt;&amp;gt; &amp;gt;&lt;/SPAN&gt; &lt;SPAN class="xis-argOptional"&gt;&amp;lt;&lt;A title="Description of syntax: NOLIST" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#n17uvnq98cfffdn18mzldlwvv63m" target="_blank"&gt;NOLIST&lt;/A&gt;&amp;gt;&lt;/SPAN&gt;;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;H4 class="xis-title"&gt;Form 3:&lt;/H4&gt;
&lt;DIV class="xis-syntaxSimple"&gt;
&lt;DIV class="xis-syntaxLevel"&gt;&lt;SPAN class="xis-keyword"&gt;DATA&lt;/SPAN&gt; &lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;&lt;A title="Description of syntax: VIEW=view-name" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#p0szvu3p89ijp7n0zztby8rbixuf" target="_blank"&gt;view-name&lt;/A&gt;&lt;/SPAN&gt; &lt;SPAN class="xis-argOptional"&gt;&amp;lt;&lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;&lt;A title="Description of syntax: data-set-name" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#n09a6hmumbac3nn0z2c4amhva4cw" target="_blank"&gt;data-set-name-1&lt;/A&gt;&lt;/SPAN&gt; &amp;lt;(&lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;data-set-options-1&lt;/SPAN&gt;)&amp;gt; &amp;gt;&lt;/SPAN&gt; &lt;BR /&gt;&lt;SPAN class="xis-argOptional"&gt;&amp;lt;&lt;SPAN class="xis-symbolHEllipsis"&gt;...&lt;/SPAN&gt;&lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;&lt;A title="Description of syntax: data-set-name" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#n09a6hmumbac3nn0z2c4amhva4cw" target="_blank"&gt;data-set-name-n&lt;/A&gt;&lt;/SPAN&gt; &amp;lt;(&lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;data-set-options-n&lt;/SPAN&gt;)&amp;gt; &amp;gt;&lt;/SPAN&gt; / &lt;BR /&gt;&lt;SPAN class="xis-argRequired"&gt;&lt;A title="Description of syntax: VIEW=view-name" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#p0szvu3p89ijp7n0zztby8rbixuf" target="_blank"&gt;VIEW=&lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;view-name&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt; &lt;SPAN class="xis-argOptional"&gt;&amp;lt;(&amp;lt;&lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;&lt;A title="Description of syntax: password-option" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#n10vesn6lr5ufvn19g71utb416p2" target="_blank"&gt;password-option&lt;/A&gt;&lt;/SPAN&gt;&amp;gt; &amp;lt;&lt;A title="Description of syntax: SOURCE=source-option" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#p0bz8slj5vwhymn1ql7y2mdvr65q" target="_blank"&gt;SOURCE=&lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;source-option&lt;/SPAN&gt;&lt;/A&gt;&amp;gt; )&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="xis-argOptional"&gt;&amp;lt;&lt;A title="Description of syntax: / NESTING" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#p144v478zwvm1bn18bcqynbktt9n" target="_blank"&gt;NESTING&lt;/A&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="xis-argOptional"&gt;&amp;lt;&lt;A title="Description of syntax: NOLIST" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#n17uvnq98cfffdn18mzldlwvv63m" target="_blank"&gt;NOLIST&lt;/A&gt;&amp;gt;&lt;/SPAN&gt;;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/BLOCKQUOTE&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;</description>
      <pubDate>Thu, 11 Mar 2021 22:00:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Should-view-stand-before-or-after-option-in-datastep/m-p/725643#M225433</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-03-11T22:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: Should view stand before or after option in datastep?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Should-view-stand-before-or-after-option-in-datastep/m-p/725730#M225477</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;(...)&lt;/P&gt;
&lt;P&gt;The documentation on the DATA statement describes your question. See all the data-set-options appear before the option / for the view.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;DIV class="xis-refDictEntry"&gt;
&lt;DIV class="xis-syntax"&gt;
&lt;DIV class="xis-syntaxSimple"&gt;
&lt;DIV class="xis-syntaxLevel"&gt;&lt;SPAN style="color: inherit; font-family: inherit; font-size: 18px;"&gt;Form 3:&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="xis-syntaxSimple"&gt;
&lt;DIV class="xis-syntaxLevel"&gt;&lt;SPAN class="xis-keyword"&gt;DATA&lt;/SPAN&gt; &lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;&lt;A title="Description of syntax: VIEW=view-name" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#p0szvu3p89ijp7n0zztby8rbixuf" target="_blank" rel="noopener"&gt;view-name&lt;/A&gt;&lt;/SPAN&gt; &lt;SPAN class="xis-argOptional"&gt;&amp;lt;&lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;&lt;A title="Description of syntax: data-set-name" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#n09a6hmumbac3nn0z2c4amhva4cw" target="_blank" rel="noopener"&gt;data-set-name-1&lt;/A&gt;&lt;/SPAN&gt; &amp;lt;(&lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;data-set-options-1&lt;/SPAN&gt;)&amp;gt; &amp;gt;&lt;/SPAN&gt; &lt;BR /&gt;&lt;SPAN class="xis-argOptional"&gt;&amp;lt;&lt;SPAN class="xis-symbolHEllipsis"&gt;...&lt;/SPAN&gt;&lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;&lt;A title="Description of syntax: data-set-name" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#n09a6hmumbac3nn0z2c4amhva4cw" target="_blank" rel="noopener"&gt;data-set-name-n&lt;/A&gt;&lt;/SPAN&gt; &amp;lt;(&lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;data-set-options-n&lt;/SPAN&gt;)&amp;gt; &amp;gt;&lt;/SPAN&gt; / &lt;BR /&gt;&lt;SPAN class="xis-argRequired"&gt;&lt;A title="Description of syntax: VIEW=view-name" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#p0szvu3p89ijp7n0zztby8rbixuf" target="_blank" rel="noopener"&gt;VIEW=&lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;view-name&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt; &lt;SPAN class="xis-argOptional"&gt;&amp;lt;(&amp;lt;&lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;&lt;A title="Description of syntax: password-option" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#n10vesn6lr5ufvn19g71utb416p2" target="_blank" rel="noopener"&gt;password-option&lt;/A&gt;&lt;/SPAN&gt;&amp;gt; &amp;lt;&lt;A title="Description of syntax: SOURCE=source-option" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#p0bz8slj5vwhymn1ql7y2mdvr65q" target="_blank" rel="noopener"&gt;SOURCE=&lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;source-option&lt;/SPAN&gt;&lt;/A&gt;&amp;gt; )&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="xis-argOptional"&gt;&amp;lt;&lt;A title="Description of syntax: / NESTING" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#p144v478zwvm1bn18bcqynbktt9n" target="_blank" rel="noopener"&gt;NESTING&lt;/A&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="xis-argOptional"&gt;&amp;lt;&lt;A title="Description of syntax: NOLIST" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#n17uvnq98cfffdn18mzldlwvv63m" target="_blank" rel="noopener"&gt;NOLIST&lt;/A&gt;&amp;gt;&lt;/SPAN&gt;;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/BLOCKQUOTE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Actually it's not quite clear from this syntax pattern that dataset options can be specified for the view. I think it should read&lt;/P&gt;
&lt;DIV class="xis-syntaxSimple"&gt;
&lt;DIV class="xis-syntaxLevel"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="xis-syntaxSimple"&gt;
&lt;DIV class="xis-syntaxLevel"&gt;&lt;SPAN class="xis-keyword"&gt;DATA&lt;/SPAN&gt; &lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;&lt;A title="Description of syntax: VIEW=view-name" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#p0szvu3p89ijp7n0zztby8rbixuf" target="_blank" rel="noopener"&gt;view-name&lt;/A&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="xis-argOptional"&gt;&lt;STRONG&gt;&lt;FONT color="#008000"&gt;&amp;lt;(&lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;data-set-options&lt;/SPAN&gt;)&amp;gt;&lt;/FONT&gt;&lt;/STRONG&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="xis-argOptional"&gt;&amp;lt;&lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;&lt;A title="Description of syntax: data-set-name" href="http://127.0.0.1:55125/help/lestmtsref.hlp/n1kh25to5o0wmvn1o4n4hsl3yyww.htm#n09a6hmumbac3nn0z2c4amhva4cw" target="_blank" rel="noopener"&gt;data-set-name-1&lt;/A&gt;&lt;/SPAN&gt; &amp;lt;(&lt;SPAN class="xis-userSuppliedSyntaxValue"&gt;data-set-options-1&lt;/SPAN&gt;)&amp;gt; &amp;gt; ...&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 12 Mar 2021 08:41:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Should-view-stand-before-or-after-option-in-datastep/m-p/725730#M225477</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2021-03-12T08:41:54Z</dc:date>
    </item>
  </channel>
</rss>

