<?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: pop up window issue!! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615318#M1087453</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;try to this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lt_text type string_table.&lt;/P&gt;&lt;P&gt;  DATA: mr_popup_window TYPE REF TO if_wd_window.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;pop a confirmation window for display purpose&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;DATA: l_window_manager TYPE REF TO if_wd_window_manager,&lt;/P&gt;&lt;P&gt;l_cmp_api        TYPE REF TO if_wd_component,&lt;/P&gt;&lt;P&gt;l_window         TYPE REF TO if_wd_window.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_cmp_api        = wd_comp_controller-&amp;gt;wd_get_api( ).&lt;/P&gt;&lt;P&gt;l_window_manager = l_cmp_api-&amp;gt;get_window_manager( ).&lt;/P&gt;&lt;P&gt;append 'DO YOU WANNA SAVE DATA' to lt_text.&lt;/P&gt;&lt;P&gt;CALL METHOD l_window_manager-&amp;gt;create_popup_to_confirm&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;    text                 = lt_text&lt;/P&gt;&lt;P&gt;    button_kind          = if_wd_window=&amp;gt;CO_BUTTONS_YESNO&lt;/P&gt;&lt;P&gt;    CLOSE_BUTTON        = ' '&lt;/P&gt;&lt;P&gt;    WINDOW_TITLE        = 'WINDOW TITLE'&lt;/P&gt;&lt;P&gt;    WINDOW_WIDTH        = '25'&lt;/P&gt;&lt;P&gt;    WINDOW_HEIGHT       = '50'&lt;/P&gt;&lt;P&gt;    WINDOW_LEFT_POSITION = 10&lt;/P&gt;&lt;P&gt;    WINDOW_TOP_POSITION  = 10&lt;/P&gt;&lt;P&gt;    WINDOW_POSITION      = '25'&lt;/P&gt;&lt;P&gt;RECEIVING&lt;/P&gt;&lt;P&gt;    result               =    mr_popup_window      .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;associated the action handling methods with the window&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;DATA: view_controller TYPE REF TO if_wd_view_controller.&lt;/P&gt;&lt;P&gt;view_controller = wd_this-&amp;gt;wd_get_api( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD mr_popup_window-&amp;gt;SET_WINDOW_SIZE&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;  WIDTH   = '150'&lt;/P&gt;&lt;P&gt;  HEIGHT  = '150'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD mr_popup_window-&amp;gt;subscribe_to_button_event&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;     button            = if_wd_window=&amp;gt;co_button_yes&lt;/P&gt;&lt;P&gt;     action_name       =   'ON_DELETE_POPUP_YES'&lt;/P&gt;&lt;P&gt;     action_view       =  view_controller      .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD mr_popup_window-&amp;gt;subscribe_to_button_event&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;  button            = if_wd_window=&amp;gt;co_button_no&lt;/P&gt;&lt;P&gt;  action_name       = 'ON_DELETE_POPUP_NO'&lt;/P&gt;&lt;P&gt;  action_view       =  view_controller&lt;/P&gt;&lt;P&gt;  is_default_button = abap_true    .&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;&lt;/P&gt;&lt;P&gt;mr_popup_window-&amp;gt;open( ).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Oct 2008 08:56:56 GMT</pubDate>
    <dc:creator>former_member342104</dc:creator>
    <dc:date>2008-10-27T08:56:56Z</dc:date>
    <item>
      <title>pop up window issue!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615312#M1087447</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;when i called "POPUP_TO_CONFIRM", how can i close the pop up window by clicking the X icon the the right top of the pop up window.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2008 07:57:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615312#M1087447</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-27T07:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window issue!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615313#M1087448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just pass the parameter DISPLAY_CANCEL_BUTTON = 'X' (default value) the upper left "x" icon will perform as you required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2008 08:15:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615313#M1087448</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-10-27T08:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window issue!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615314#M1087449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI, &lt;/P&gt;&lt;P&gt;thanks for your reply.&lt;/P&gt;&lt;P&gt;i have tryed with your approach,and it dose work.&lt;/P&gt;&lt;P&gt;but  what if i just want to display 2 buttons in the pop up window,and i still want the X icon works.&lt;/P&gt;&lt;P&gt;how should i implement this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2008 08:23:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615314#M1087449</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-27T08:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window issue!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615315#M1087450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will have to write your own FMn that displays a popup dynpro, put 2 options in the popup menu, e.g. OKAY and CANC and the upper right cross will link by default to CANC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2008 08:49:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615315#M1087450</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-10-27T08:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window issue!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615316#M1087451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, Raymond Giuseppi  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i got your point.&lt;/P&gt;&lt;P&gt;i am very appreciate if you can give a sample code here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2008 08:54:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615316#M1087451</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-27T08:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window issue!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615317#M1087452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see the similar issue now going on &lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_macro_name="thread" id="1103232"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2008 08:55:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615317#M1087452</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-27T08:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window issue!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615318#M1087453</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;try to this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lt_text type string_table.&lt;/P&gt;&lt;P&gt;  DATA: mr_popup_window TYPE REF TO if_wd_window.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;pop a confirmation window for display purpose&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;DATA: l_window_manager TYPE REF TO if_wd_window_manager,&lt;/P&gt;&lt;P&gt;l_cmp_api        TYPE REF TO if_wd_component,&lt;/P&gt;&lt;P&gt;l_window         TYPE REF TO if_wd_window.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_cmp_api        = wd_comp_controller-&amp;gt;wd_get_api( ).&lt;/P&gt;&lt;P&gt;l_window_manager = l_cmp_api-&amp;gt;get_window_manager( ).&lt;/P&gt;&lt;P&gt;append 'DO YOU WANNA SAVE DATA' to lt_text.&lt;/P&gt;&lt;P&gt;CALL METHOD l_window_manager-&amp;gt;create_popup_to_confirm&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;    text                 = lt_text&lt;/P&gt;&lt;P&gt;    button_kind          = if_wd_window=&amp;gt;CO_BUTTONS_YESNO&lt;/P&gt;&lt;P&gt;    CLOSE_BUTTON        = ' '&lt;/P&gt;&lt;P&gt;    WINDOW_TITLE        = 'WINDOW TITLE'&lt;/P&gt;&lt;P&gt;    WINDOW_WIDTH        = '25'&lt;/P&gt;&lt;P&gt;    WINDOW_HEIGHT       = '50'&lt;/P&gt;&lt;P&gt;    WINDOW_LEFT_POSITION = 10&lt;/P&gt;&lt;P&gt;    WINDOW_TOP_POSITION  = 10&lt;/P&gt;&lt;P&gt;    WINDOW_POSITION      = '25'&lt;/P&gt;&lt;P&gt;RECEIVING&lt;/P&gt;&lt;P&gt;    result               =    mr_popup_window      .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;associated the action handling methods with the window&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;DATA: view_controller TYPE REF TO if_wd_view_controller.&lt;/P&gt;&lt;P&gt;view_controller = wd_this-&amp;gt;wd_get_api( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD mr_popup_window-&amp;gt;SET_WINDOW_SIZE&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;  WIDTH   = '150'&lt;/P&gt;&lt;P&gt;  HEIGHT  = '150'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD mr_popup_window-&amp;gt;subscribe_to_button_event&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;     button            = if_wd_window=&amp;gt;co_button_yes&lt;/P&gt;&lt;P&gt;     action_name       =   'ON_DELETE_POPUP_YES'&lt;/P&gt;&lt;P&gt;     action_view       =  view_controller      .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD mr_popup_window-&amp;gt;subscribe_to_button_event&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;  button            = if_wd_window=&amp;gt;co_button_no&lt;/P&gt;&lt;P&gt;  action_name       = 'ON_DELETE_POPUP_NO'&lt;/P&gt;&lt;P&gt;  action_view       =  view_controller&lt;/P&gt;&lt;P&gt;  is_default_button = abap_true    .&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;&lt;/P&gt;&lt;P&gt;mr_popup_window-&amp;gt;open( ).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2008 08:56:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615318#M1087453</guid>
      <dc:creator>former_member342104</dc:creator>
      <dc:date>2008-10-27T08:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window issue!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615319#M1087454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi david,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA : ANS TYPE CHAR1.

CALL FUNCTION 'POPUP_WITH_2_BUTTONS_TO_CHOOSE'
  EXPORTING
*   DEFAULTOPTION       = '1'
    DIAGNOSETEXT1       = 'Choose'
*   DIAGNOSETEXT2       = ' '
*   DIAGNOSETEXT3       = ' '
    TEXTLINE1           = 'Yes or no'
*   TEXTLINE2           = ' '
*   TEXTLINE3           = ' '
    TEXT_OPTION1        = 'Yes button'
    TEXT_OPTION2        = 'No button'
    TITEL               = 'Choose'
 IMPORTING
   ANSWER              = ANS
          .

CASE ANS.

  WHEN '1'.
    WRITE 'Yes'.
  WHEN '2'.
    WRITE 'No'.
  WHEN 'A'.
    WRITE 'Cancel'.
ENDCASE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2008 08:59:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615319#M1087454</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-27T08:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window issue!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615320#M1087455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello , do you know the code what exacly it does. this code is related to webdynpro. it is not related to Normal ABAP. did you test that code..&lt;/P&gt;&lt;P&gt;please try to crosscheck it once. i know from where you got this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2008 09:00:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615320#M1087455</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-27T09:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window issue!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615321#M1087456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Sorry Previously iwas send a wrong code to you.&lt;/P&gt;&lt;P&gt;correct code.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'POPUP_TO_CONFIRM'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        titlebar              = ''&lt;/P&gt;&lt;P&gt;        text_question         = ''&lt;/P&gt;&lt;P&gt;        text_button_1         = 'Yes'(002)&lt;/P&gt;&lt;P&gt;        icon_button_1         = 'ICON_TRANSFER'&lt;/P&gt;&lt;P&gt;        text_button_2         = 'No'(003)&lt;/P&gt;&lt;P&gt;        icon_button_2         = 'ICON_STORNO'&lt;/P&gt;&lt;P&gt;        default_button        = '1'&lt;/P&gt;&lt;P&gt;        display_cancel_button = 'X'&lt;/P&gt;&lt;P&gt;        popup_type            = 'ICON_WS_TRANSFER'&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        answer                = answer.&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;regards &lt;/P&gt;&lt;P&gt;kk&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: kk on Oct 27, 2008 2:36 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2008 09:06:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615321#M1087456</guid>
      <dc:creator>former_member342104</dc:creator>
      <dc:date>2008-10-27T09:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: pop up window issue!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615322#M1087457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good Remark, I use your way solved!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 May 2010 09:16:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-window-issue/m-p/4615322#M1087457</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-28T09:16:20Z</dc:date>
    </item>
  </channel>
</rss>

