<?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: SQL##f - SqlState: S0022, ErrorCode: 904, ErrorMsg: [Oracle][ODBC][Ora]ORA-00904: &amp;quot;YEAR&amp;quot;: invalid identifier in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398943#M613352</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I tried YEAR(TO_DATE(INVOICEDATE)) but now getting missing parenthesis error.&lt;/P&gt;&lt;P&gt;I checked the script, it looks fine but not sure why i am getting the above error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Viresh &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Aug 2017 07:08:51 GMT</pubDate>
    <dc:creator>vireshkolagimat</dc:creator>
    <dc:date>2017-08-29T07:08:51Z</dc:date>
    <item>
      <title>SQL##f - SqlState: S0022, ErrorCode: 904, ErrorMsg: [Oracle][ODBC][Ora]ORA-00904: "YEAR": invalid identifier</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398938#M613347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to load the below script but getting the error message as &lt;/P&gt;&lt;P&gt;" SQL##f - SqlState: S0022, ErrorCode: 904, ErrorMsg: [Oracle][ODBC][Ora]ORA-00904: "YEAR": invalid identifier".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;script&lt;/STRONG&gt;: LET vIncrementalExpression = 'Where a.customer not in (''A'',''B'',''C'') and&amp;nbsp; YEAR (salhist.dated) &amp;gt;= Year (GETDATE ()) - 3';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Viresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 05:40:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398938#M613347</guid>
      <dc:creator>vireshkolagimat</dc:creator>
      <dc:date>2017-08-29T05:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: SQL##f - SqlState: S0022, ErrorCode: 904, ErrorMsg: [Oracle][ODBC][Ora]ORA-00904: "YEAR": invalid identifier</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398939#M613348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please post the script snippet where you use this variable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 05:48:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398939#M613348</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-08-29T05:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: SQL##f - SqlState: S0022, ErrorCode: 904, ErrorMsg: [Oracle][ODBC][Ora]ORA-00904: "YEAR": invalid identifier</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398940#M613349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, below is the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET vQvdFile='C:\Users\test.qvd';&lt;/P&gt;&lt;P&gt;SET vTableName='Sales';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vQvdExists = if(FileSize('$(vQvdFile)') &amp;gt; 0, -1, 0);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF $(vQvdExists) THEN&lt;/P&gt;&lt;P&gt;maxdateTab:&lt;/P&gt;&lt;P&gt;LOAD max(INVOICEDATE) as maxdate //?? Set the name of the date or datetime field&lt;/P&gt;&lt;P&gt;FROM $(vQvdFile) (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vMaxdate = Date(Peek('maxdate',0,'maxdateTab'),'YYYY-MM-DD');&lt;/P&gt;&lt;P&gt;LET vLast30date = Date(Peek('maxdate',0,'maxdateTab')-30,'YYYY-MM-DD');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF IsNull(vMaxdate) then&lt;/P&gt;&lt;P&gt;LET vIncrementalExpression = ''; &lt;/P&gt;&lt;P&gt;ELSE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vIncrementalExpression = 'Where CUSTOMERCODE not in (''A'',''B'',''C'') and&amp;nbsp; INVOICEDATE &amp;gt;=' &amp;amp; Chr(39)&amp;amp; '$(vLast30date)' &amp;amp;Chr(39) &amp;amp;&lt;/P&gt;&lt;P&gt;' and salhist.dated &amp;lt;=' &amp;amp;Chr(39)&amp;amp; date(vReloadTime,'YYYY-MM-DD') &amp;amp;Chr(39);&lt;/P&gt;&lt;P&gt;ENDIF;&lt;/P&gt;&lt;P&gt;DROP table maxdateTab;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE // QVD does not exist&lt;/P&gt;&lt;P&gt;LET vIncrementalExpression = 'Where CUSTOMERCODE not in (''A'',''B'',''C'') and&amp;nbsp; YEAR (INVOICEDATE) &amp;gt;= Year (GETDATE ()) - 3'; // No QVD. Force full reload &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END IF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$(vTableName):&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD *&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM table_name &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;$(vIncrementalExpression)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 06:05:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398940#M613349</guid>
      <dc:creator>vireshkolagimat</dc:creator>
      <dc:date>2017-08-29T06:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: SQL##f - SqlState: S0022, ErrorCode: 904, ErrorMsg: [Oracle][ODBC][Ora]ORA-00904: "YEAR": invalid identifier</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398941#M613350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One quick catch: try putting ';' at the end of load statement like:&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;$(vTableName):&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; LOAD * &lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG style="font-size: 12pt;"&gt;;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT *&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM table_name&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;$(vIncrementalExpression) &lt;STRONG style="color: #ff0000;"&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 06:15:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398941#M613350</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-08-29T06:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: SQL##f - SqlState: S0022, ErrorCode: 904, ErrorMsg: [Oracle][ODBC][Ora]ORA-00904: "YEAR": invalid identifier</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398942#M613351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, i tried but still getting error as "YEAR": invalid identifier .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this error something related to to formatting?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Viresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 06:45:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398942#M613351</guid>
      <dc:creator>vireshkolagimat</dc:creator>
      <dc:date>2017-08-29T06:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: SQL##f - SqlState: S0022, ErrorCode: 904, ErrorMsg: [Oracle][ODBC][Ora]ORA-00904: "YEAR": invalid identifier</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398943#M613352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I tried YEAR(TO_DATE(INVOICEDATE)) but now getting missing parenthesis error.&lt;/P&gt;&lt;P&gt;I checked the script, it looks fine but not sure why i am getting the above error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Viresh &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 07:08:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398943#M613352</guid>
      <dc:creator>vireshkolagimat</dc:creator>
      <dc:date>2017-08-29T07:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: SQL##f - SqlState: S0022, ErrorCode: 904, ErrorMsg: [Oracle][ODBC][Ora]ORA-00904: "YEAR": invalid identifier</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398944#M613353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of using where clause in variable, directly use the conditions in where clause. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;$(vTableName):&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; LOAD * &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #ff0000;"&gt;&lt;STRONG style="font-style: inherit; font-size: 12pt; font-family: inherit;"&gt;;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT *&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM table_name&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Where CUSTOMERCODE not in (''A'',''B'',''C'') and&amp;nbsp; YEAR (INVOICEDATE) &amp;gt;= Year (GETDATE ()) - 3;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 07:13:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398944#M613353</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-08-29T07:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: SQL##f - SqlState: S0022, ErrorCode: 904, ErrorMsg: [Oracle][ODBC][Ora]ORA-00904: "YEAR": invalid identifier</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398945#M613354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, still getting the error as &lt;STRONG&gt;missing right parenthesis&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 07:49:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398945#M613354</guid>
      <dc:creator>vireshkolagimat</dc:creator>
      <dc:date>2017-08-29T07:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: SQL##f - SqlState: S0022, ErrorCode: 904, ErrorMsg: [Oracle][ODBC][Ora]ORA-00904: "YEAR": invalid identifier</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398946#M613355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;$(vTableName):&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; LOAD * &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #ff0000;"&gt;&lt;STRONG style="font-style: inherit; font-size: 12pt; font-family: inherit;"&gt;;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT *&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM table_name&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Where CUSTOMERCODE not in &lt;STRONG&gt;('A','B','C')&lt;/STRONG&gt; and&amp;nbsp; YEAR (INVOICEDATE) &amp;gt;= &lt;STRONG&gt;(Year (GETDATE ()) - 3)&lt;/STRONG&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 07:52:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398946#M613355</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-08-29T07:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: SQL##f - SqlState: S0022, ErrorCode: 904, ErrorMsg: [Oracle][ODBC][Ora]ORA-00904: "YEAR": invalid identifier</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398947#M613356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Nope still getting error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 08:02:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398947#M613356</guid>
      <dc:creator>vireshkolagimat</dc:creator>
      <dc:date>2017-08-29T08:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: SQL##f - SqlState: S0022, ErrorCode: 904, ErrorMsg: [Oracle][ODBC][Ora]ORA-00904: "YEAR": invalid identifier</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398948#M613357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got the answer. when you query YEAR (INVOCIEDATE) is not valid in oracle. so i tried EXTRACT (YEAR from INVOICEDATE) and its working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Viresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2017 08:29:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-f-SqlState-S0022-ErrorCode-904-ErrorMsg-Oracle-ODBC-Ora-ORA/m-p/1398948#M613357</guid>
      <dc:creator>vireshkolagimat</dc:creator>
      <dc:date>2017-08-29T08:29:18Z</dc:date>
    </item>
  </channel>
</rss>

