<?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: Modify + shot dump in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157611#M119386</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;data: l_tabix type sy-tabix.
Loop at lt_selected_rows into ls_selected_rows.
l_index = sy-tabix.
if lv_gltgv is initial.
lv_gltgv = ls_selected_rows-gltgv.
endif.

If lv_gltgb gt lv_gltgv.

ls_alv_waru-gltgv = lv_gltgv.
ls_alv_waru-gltgb = lv_gltgb.
ls_alv_waru-new = 'X'.

Endif.

MODIFY lt_alv_waru from ls_alv_waru index l_index.
Endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Jan 2006 16:44:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-10T16:44:28Z</dc:date>
    <item>
      <title>Modify + shot dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157602#M119377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While updating an internal table I am getting the following exception, would be nice if some one help me to figue it out, what happend here...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is the code I am using to update an internal table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table lt_incomp_calib_wa&lt;/P&gt;&lt;P&gt;    into ls_incomp_calib_wa&lt;/P&gt;&lt;P&gt;    index ls_sel_rows-index.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  check sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lv_gltgv = ls_incomp_calib_wa-gltgv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  If lv_gltgb gt lv_gltgv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ls_incomp_calib_wa-gltgb = lv_gltgb.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    MODIFY lt_incomp_calib_wa from ls_incomp_calib_wa.&lt;/P&gt;&lt;P&gt;    "TRANSPORTING gltgb.&lt;/P&gt;&lt;P&gt;  Endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when I try to do mobidy, if gives me exception..... and here is the exception details...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Possible reasons:                                               &lt;/P&gt;&lt;P&gt;1. The relevant ABAP/4 statement does not include the addition  &lt;/P&gt;&lt;P&gt;   "...INDEX...", although the statement is not                 &lt;/P&gt;&lt;P&gt;   inside a "LOOP...ENDLOOP" loop processing this table.        &lt;/P&gt;&lt;P&gt;2. The relevant ABAP/4 statement was called from within a       &lt;/P&gt;&lt;P&gt;   "LOOP...ENDLOOP" loop after a DELETE                         &lt;/P&gt;&lt;P&gt; "\PROG=/CBP/SAPMUA0302_WARU\DATA=LT_INCOMP_CALIB_WA".          &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 13:10:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157602#M119377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T13:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: Modify + shot dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157603#M119378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The statement,&lt;/P&gt;&lt;P&gt;MODIFY lt_incomp_calib_wa from ls_incomp_calib_wa.&lt;/P&gt;&lt;P&gt;should have a index addition&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like this&lt;/P&gt;&lt;P&gt;MODIFY lt_incomp_calib_wa from ls_incomp_calib_wa &amp;lt;b&amp;gt;index lv_index&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_index should have the line number of the internal table for which you want this changes to occur.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 13:11:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157603#M119378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T13:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: Modify + shot dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157604#M119379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;MODIFY lt_incomp_calib_wa from ls_incomp_calib_wa index sy-tabix.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mention the index along with modify..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 13:14:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157604#M119379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T13:14:56Z</dc:date>
    </item>
    <item>
      <title>Re: Modify + shot dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157605#M119380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are modifying the table not in the loop, so you should mention the index value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so the statement should come like this&lt;/P&gt;&lt;P&gt;MODIFY lt_incomp_calib_wa from ls_incomp_calib_wa index lv_index.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of&lt;/P&gt;&lt;P&gt;MODIFY lt_incomp_calib_wa from ls_incomp_calib_wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 13:17:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157605#M119380</guid>
      <dc:creator>alex_m</dc:creator>
      <dc:date>2006-01-02T13:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Modify + shot dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157606#M119381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Haider,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add INDEx to the MODIFY statement ie&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY lt_incomp_calib_wa from ls_incomp_calib_wa index ls_sel_rows-index.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 13:18:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157606#M119381</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-01-02T13:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: Modify + shot dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157607#M119382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks to all of you for your kind replies, the problem solved. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: As all answers are more or less same, hard to figure it out, to whom I reward the points &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 13:22:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157607#M119382</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T13:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: Modify + shot dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157608#M119383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;first come first serve&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2006 13:24:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157608#M119383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-02T13:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: Modify + shot dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157609#M119384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing more or less the same problem again but this time I am inside the loop, so where is the actuall problem in my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Loop at lt_selected_rows into ls_selected_rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if lv_gltgv is initial.&lt;/P&gt;&lt;P&gt;      lv_gltgv = ls_selected_rows-gltgv.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    If lv_gltgb gt lv_gltgv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ls_alv_waru-gltgv = lv_gltgv.&lt;/P&gt;&lt;P&gt;      ls_alv_waru-gltgb = lv_gltgb.&lt;/P&gt;&lt;P&gt;      ls_alv_waru-new   = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Endif.&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;    MODIFY lt_alv_waru from ls_alv_waru.&lt;/P&gt;&lt;P&gt;  Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: I am receving the same exception as mentioned in my first post !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 16:37:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157609#M119384</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T16:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: Modify + shot dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157610#M119385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Haider,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Let me tell you one thing, MODIFY in a LOOP...ENDLOOP doesnt require an index or a where cluase when you modify the same table which you are looping and it needs an INDEX or a WHERE clause if you are modifying someother table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; In the below case you are looping at lt_selected_rows and modifying lt_alv_waru. Put a where clause for the key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 16:42:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157610#M119385</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T16:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: Modify + shot dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157611#M119386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;data: l_tabix type sy-tabix.
Loop at lt_selected_rows into ls_selected_rows.
l_index = sy-tabix.
if lv_gltgv is initial.
lv_gltgv = ls_selected_rows-gltgv.
endif.

If lv_gltgb gt lv_gltgv.

ls_alv_waru-gltgv = lv_gltgv.
ls_alv_waru-gltgb = lv_gltgb.
ls_alv_waru-new = 'X'.

Endif.

MODIFY lt_alv_waru from ls_alv_waru index l_index.
Endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 16:44:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157611#M119386</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T16:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: Modify + shot dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157612#M119387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually both internal tables ( lt_selected.. and lt_alv..) are from the same structure, and dont have any key! ( In structure cant specified the keys or ? so how I can put there where key clause inside the loop ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 16:45:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157612#M119387</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T16:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: Modify + shot dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157613#M119388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By key what Srikanth meant was those fields that uniquely identify the particular row that you are trying to modify. You are tyring to modify some row of the internal table. You have to tell the system which row by either specifying the WHERE clause or the INDEX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 17:51:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157613#M119388</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T17:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: Modify + shot dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157614#M119389</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&gt;MODIFY table lt_alv_waru from ls_alv_waru transporting gltgv gltgb new.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 17:55:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157614#M119389</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T17:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: Modify + shot dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157615#M119390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY table lt_alv_waru from ls_alv_waru transporting gltgv gltgb new. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have have tried this statement, but gave me the same error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 09:26:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157615#M119390</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-11T09:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: Modify + shot dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157616#M119391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Haider,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Can you please paste the whole code telling what are you tring to do. By concept you will have a key or an index for sure logically. May be I will help you identify that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 09:37:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157616#M119391</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-11T09:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: Modify + shot dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157617#M119392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srikanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its very kind of you, &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have now solved the problem and using the following statement..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY lt_alv_waru from ls_alv_waru Transporting gltgv gltgb new&lt;/P&gt;&lt;P&gt;                                where bname = ls_selected_rows-bname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;many thanks for your help and points goes to you &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 09:59:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-shot-dump/m-p/1157617#M119392</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-11T09:59:20Z</dc:date>
    </item>
  </channel>
</rss>

