<?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: ALV Tree in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree/m-p/4250131#M1014470</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Thanx for the help, but the method &lt;/P&gt;&lt;P&gt;    call method me-&amp;gt;tree_get_node_text&lt;/P&gt;&lt;P&gt;            exporting&lt;/P&gt;&lt;P&gt;                i_node_key = l_node_key&lt;/P&gt;&lt;P&gt;            importing&lt;/P&gt;&lt;P&gt;                e_node_text = e_node_text.&lt;/P&gt;&lt;P&gt;is private so we need to call a public or protected method to use the above one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Aug 2008 08:35:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-12T08:35:21Z</dc:date>
    <item>
      <title>ALV Tree</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree/m-p/4250127#M1014466</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;i have populated the ALV Tree and im trying to get the value of the selected field(in other words value of the field which i click),&lt;/P&gt;&lt;P&gt;but im not sure which method to use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please could any one help me on this regard?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry for cross posting the other threads were deleted.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 14:58:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree/m-p/4250127#M1014466</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-11T14:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Tree</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree/m-p/4250128#M1014467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check Program SAPTLIST_TREE_CONTROL_DEMO&lt;/P&gt;&lt;P&gt;Specially class LCL_APPLICATION and how does it used to SET the events of the tree.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 15:10:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree/m-p/4250128#M1014467</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2008-08-11T15:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Tree</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree/m-p/4250129#M1014468</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;use this method&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL METHOD me-&amp;gt;tree_get_node_text
  EXPORTING
    i_node_key  =  node_key
  IMPORTING
    E_NODE_TEXT = text
    .

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Anirudh Saini&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 04:20:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree/m-p/4250129#M1014468</guid>
      <dc:creator>former_member745780</dc:creator>
      <dc:date>2008-08-12T04:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Tree</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree/m-p/4250130#M1014469</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;see this for button clicking &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In order to add additional buttons onto the ALVtree report the following sections of code need&lt;/P&gt;&lt;P&gt;implementing:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Creation of tree event reciever class&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Define class to handle user interaction other than via toolbar buttons. Insert at end of DATA declaration&lt;/P&gt;&lt;P&gt;section but before any ABAP processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  INCLUDE BCALV_TREE_EVENT_RECEIVER                                  *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_tree_event_receiver DEFINITION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    METHODS handle_node_ctmenu_request&lt;/P&gt;&lt;P&gt;      FOR EVENT node_context_menu_request OF cl_gui_alv_tree&lt;/P&gt;&lt;P&gt;        IMPORTING node_key&lt;/P&gt;&lt;P&gt;                  menu.&lt;/P&gt;&lt;P&gt;    METHODS handle_node_ctmenu_selected&lt;/P&gt;&lt;P&gt;      FOR EVENT node_context_menu_selected OF cl_gui_alv_tree&lt;/P&gt;&lt;P&gt;        IMPORTING node_key&lt;/P&gt;&lt;P&gt;                  fcode.&lt;/P&gt;&lt;P&gt;    METHODS handle_item_ctmenu_request&lt;/P&gt;&lt;P&gt;      FOR EVENT item_context_menu_request OF cl_gui_alv_tree&lt;/P&gt;&lt;P&gt;        IMPORTING node_key&lt;/P&gt;&lt;P&gt;                  fieldname&lt;/P&gt;&lt;P&gt;                  menu.&lt;/P&gt;&lt;P&gt;    METHODS handle_item_ctmenu_selected&lt;/P&gt;&lt;P&gt;      FOR EVENT item_context_menu_selected OF cl_gui_alv_tree&lt;/P&gt;&lt;P&gt;        IMPORTING node_key&lt;/P&gt;&lt;P&gt;                  fieldname&lt;/P&gt;&lt;P&gt;                  fcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    METHODS handle_item_double_click&lt;/P&gt;&lt;P&gt;      FOR EVENT item_double_click OF cl_gui_alv_tree&lt;/P&gt;&lt;P&gt;      IMPORTING node_key&lt;/P&gt;&lt;P&gt;                fieldname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    METHODS handle_button_click&lt;/P&gt;&lt;P&gt;      FOR EVENT button_click OF cl_gui_alv_tree&lt;/P&gt;&lt;P&gt;      IMPORTING node_key&lt;/P&gt;&lt;P&gt;                fieldname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    METHODS handle_link_click&lt;/P&gt;&lt;P&gt;      FOR EVENT link_click OF cl_gui_alv_tree&lt;/P&gt;&lt;P&gt;      IMPORTING node_key&lt;/P&gt;&lt;P&gt;                fieldname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    METHODS handle_header_click&lt;/P&gt;&lt;P&gt;      FOR EVENT header_click OF cl_gui_alv_tree&lt;/P&gt;&lt;P&gt;      IMPORTING fieldname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CLASS lcl_tree_event_receiver IMPLEMENTATION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      ........                                                      *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_tree_event_receiver IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD handle_node_ctmenu_request.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  append own functions&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CALL METHOD menu-&amp;gt;add_function&lt;/P&gt;&lt;P&gt;                EXPORTING fcode   = 'USER1'&lt;/P&gt;&lt;P&gt;                          text    = 'Usercmd 1'.            "#EC NOTEXT&lt;/P&gt;&lt;P&gt;    CALL METHOD menu-&amp;gt;add_function&lt;/P&gt;&lt;P&gt;                EXPORTING fcode   = 'USER2'&lt;/P&gt;&lt;P&gt;                          text    = 'Usercmd 2'.            "#EC NOTEXT&lt;/P&gt;&lt;P&gt;    CALL METHOD menu-&amp;gt;add_function&lt;/P&gt;&lt;P&gt;                EXPORTING fcode   = 'USER3'&lt;/P&gt;&lt;P&gt;                          text    = 'Usercmd 3'.            "#EC NOTEXT&lt;/P&gt;&lt;P&gt;  ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD handle_node_ctmenu_selected.&lt;/P&gt;&lt;P&gt;    CASE fcode.&lt;/P&gt;&lt;P&gt;      WHEN 'USER1' OR 'USER2' OR 'USER3'.&lt;/P&gt;&lt;P&gt;        MESSAGE i000(0h) WITH 'Node-Context-Menu on Node ' node_key&lt;/P&gt;&lt;P&gt;                              'fcode : ' fcode.             "#EC NOTEXT&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;  ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD handle_item_ctmenu_request .&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  append own functions&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CALL METHOD menu-&amp;gt;add_function&lt;/P&gt;&lt;P&gt;                EXPORTING fcode   = 'USER1'&lt;/P&gt;&lt;P&gt;                          text    = 'Usercmd 1'.&lt;/P&gt;&lt;P&gt;    CALL METHOD menu-&amp;gt;add_function&lt;/P&gt;&lt;P&gt;                EXPORTING fcode   = 'USER2'&lt;/P&gt;&lt;P&gt;                          text    = 'Usercmd 2'.&lt;/P&gt;&lt;P&gt;    CALL METHOD menu-&amp;gt;add_function&lt;/P&gt;&lt;P&gt;                EXPORTING fcode   = 'USER3'&lt;/P&gt;&lt;P&gt;                          text    = 'Usercmd 3'.&lt;/P&gt;&lt;P&gt;  ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD handle_item_ctmenu_selected.&lt;/P&gt;&lt;P&gt;    CASE fcode.&lt;/P&gt;&lt;P&gt;      WHEN 'USER1' OR 'USER2' OR 'USER3'.&lt;/P&gt;&lt;P&gt;        MESSAGE i000(0h) WITH 'Item-Context-Menu on Node ' node_key&lt;/P&gt;&lt;P&gt;                              'Fieldname : ' fieldname.     "#EC NOTEXT&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;  ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD handle_item_double_click.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Processing for when user double clicks on ALVtree&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD handle_button_click.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Processing when user clicks button&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD handle_link_click.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;??&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD handle_header_click.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Processing for when user clicks on ALVtree column headers&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Code to activate User interaction events (i.e. double click)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Insert the following code into the PBO of the screen after the ALVtree has been created.&lt;/P&gt;&lt;P&gt;	i.e after 'CALL METHOD gd_tree-&amp;gt;set_table_for_first_display' has been executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      REGISTER_EVENTS&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;define the events which will be passed to the backend&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  data: lt_events type cntl_simple_events,&lt;/P&gt;&lt;P&gt;        l_event type cntl_simple_event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;define the events which will be passed to the backend&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  l_event-eventid = cl_gui_column_tree=&amp;gt;eventid_expand_no_children.&lt;/P&gt;&lt;P&gt;  append l_event to lt_events.&lt;/P&gt;&lt;P&gt;  l_event-eventid = cl_gui_column_tree=&amp;gt;eventid_checkbox_change.&lt;/P&gt;&lt;P&gt;  append l_event to lt_events.&lt;/P&gt;&lt;P&gt;  l_event-eventid = cl_gui_column_tree=&amp;gt;eventid_header_context_men_req.&lt;/P&gt;&lt;P&gt;  append l_event to lt_events.&lt;/P&gt;&lt;P&gt;  l_event-eventid = cl_gui_column_tree=&amp;gt;eventid_node_context_menu_req.&lt;/P&gt;&lt;P&gt;  append l_event to lt_events.&lt;/P&gt;&lt;P&gt;  l_event-eventid = cl_gui_column_tree=&amp;gt;eventid_item_context_menu_req.&lt;/P&gt;&lt;P&gt;  append l_event to lt_events.&lt;/P&gt;&lt;P&gt;  l_event-eventid = cl_gui_column_tree=&amp;gt;eventid_item_double_click.&lt;/P&gt;&lt;P&gt;  append l_event to lt_events.&lt;/P&gt;&lt;P&gt;  l_event-eventid = cl_gui_column_tree=&amp;gt;eventid_header_click.&lt;/P&gt;&lt;P&gt;  append l_event to lt_events.&lt;/P&gt;&lt;P&gt;  l_event-eventid = cl_gui_column_tree=&amp;gt;eventid_item_keypress.&lt;/P&gt;&lt;P&gt;  append l_event to lt_events.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call method gd_tree-&amp;gt;set_registered_events&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      events = lt_events&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      cntl_error                = 1&lt;/P&gt;&lt;P&gt;      cntl_system_error         = 2&lt;/P&gt;&lt;P&gt;      illegal_event_combination = 3.&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    message x208(00) with 'ERROR'.                       "#EC NOTEXT&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;set Handler&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  data: l_event_receiver type ref to lcl_tree_event_receiver.&lt;/P&gt;&lt;P&gt;  create object l_event_receiver.&lt;/P&gt;&lt;P&gt;  set handler l_event_receiver-&amp;gt;handle_node_ctmenu_request&lt;/P&gt;&lt;P&gt;                                                        for gd_tree.&lt;/P&gt;&lt;P&gt;  set handler l_event_receiver-&amp;gt;handle_node_ctmenu_selected&lt;/P&gt;&lt;P&gt;                                                        for gd_tree.&lt;/P&gt;&lt;P&gt;  set handler l_event_receiver-&amp;gt;handle_item_ctmenu_request&lt;/P&gt;&lt;P&gt;                                                        for gd_tree.&lt;/P&gt;&lt;P&gt;  set handler l_event_receiver-&amp;gt;handle_item_ctmenu_selected&lt;/P&gt;&lt;P&gt;                                                        for gd_tree.&lt;/P&gt;&lt;P&gt;  set handler l_event_receiver-&amp;gt;handle_item_double_click&lt;/P&gt;&lt;P&gt;                                                        for gd_tree.&lt;/P&gt;&lt;P&gt;  set handler l_event_receiver-&amp;gt;handle_header_click&lt;/P&gt;&lt;P&gt;                                                        for gd_tree.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 04:24:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree/m-p/4250130#M1014469</guid>
      <dc:creator>former_member206439</dc:creator>
      <dc:date>2008-08-12T04:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Tree</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree/m-p/4250131#M1014470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Thanx for the help, but the method &lt;/P&gt;&lt;P&gt;    call method me-&amp;gt;tree_get_node_text&lt;/P&gt;&lt;P&gt;            exporting&lt;/P&gt;&lt;P&gt;                i_node_key = l_node_key&lt;/P&gt;&lt;P&gt;            importing&lt;/P&gt;&lt;P&gt;                e_node_text = e_node_text.&lt;/P&gt;&lt;P&gt;is private so we need to call a public or protected method to use the above one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 08:35:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-tree/m-p/4250131#M1014470</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-12T08:35:21Z</dc:date>
    </item>
  </channel>
</rss>

