<?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: Skip first screen and return using BDC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen-and-return-using-bdc/m-p/3337915#M800129</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;You can also include the exit part of the BDC code in the bdcdata table, like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;* --------------------------- Execute report ---------------------------&lt;BR /&gt;&amp;nbsp; bdchead it_bdc l_progr &lt;SPAN class="L0S33"&gt;'1000'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; bdc&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_bdc &lt;SPAN class="L0S33"&gt;'BDC_OKCODE'&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'=ONLI'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;. &lt;/SPAN&gt;&lt;SPAN class="L0S31"&gt;" Execute report&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S31"&gt;* ------------------- End report when user is done ---------------------&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; bdchead it_bdc l_progr &lt;SPAN class="L0S33"&gt;'1000'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; bdc&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_bdc &lt;SPAN class="L0S33"&gt;'BDC_OKCODE'&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'/EE'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;. &lt;/SPAN&gt;&lt;SPAN class="L0S31"&gt;" Exit report&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jun 2014 11:47:27 GMT</pubDate>
    <dc:creator>hagen_hennum</dc:creator>
    <dc:date>2014-06-19T11:47:27Z</dc:date>
    <item>
      <title>Skip first screen and return using BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen-and-return-using-bdc/m-p/3337908#M800122</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 am calling a Transaction from an ALV REPORT ,i wanted to set the material number in that transaction, i checked using f1 help and found the parameter id as 'MAT' .&lt;/P&gt;&lt;P&gt;But when i am calling the transaction,the material number is not being displayed,Hence i modified the code below..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My Previous code:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;READ TABLE alv_stb INDEX i_selfield-tabindex.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;IF sy-subrc = 0.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET PARAMETER ID 'MAT' FIELD alv_stb-idnrk.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CALL TRANSACTION 'TCODE' .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ENDIF.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;...................................................................&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My CURRENT CODE :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           &lt;STRONG&gt;PERFORM bdc_dynpro      USING 'XXX_/2L3_BOM_XX'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                               &lt;STRONG&gt;'1000'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            &lt;STRONG&gt;PERFORM bdc_field       USING 'BDC_CURSOR'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                               &lt;STRONG&gt;'PA_MATNR'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            &lt;STRONG&gt;PERFORM bdc_field       USING 'BDC_OKCODE'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                           &lt;STRONG&gt;'=ONLI'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            &lt;STRONG&gt;PERFORM bdc_field       USING 'PA_MATNR'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                               &lt;STRONG&gt;alv_stb-idnrk.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            &lt;STRONG&gt;PERFORM bdc_field       USING 'PA_STLAN'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                               &lt;STRONG&gt;alv_stb-xtlan .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            &lt;STRONG&gt;CALL TRANSACTION 'TCODE '&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                    &lt;STRONG&gt;USING bdcdata&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                    &lt;STRONG&gt;MODE 'E'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                    &lt;STRONG&gt;UPDATE 'S' .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Requirement :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; I need to skip the first screen ,This is working ( screen is skiped) Now when i want to come back from the Transaction to my alv report,by pressing back button..this first screen which i skipped is being displayed, which i dont need...how to skip that screen,when pressing F3 from transaction or back button.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 09:24:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen-and-return-using-bdc/m-p/3337908#M800122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T09:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: Skip first screen and return using BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen-and-return-using-bdc/m-p/3337909#M800123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL TRANSACTION &amp;lt;tcod&amp;gt; [AND SKIP FIRST SCREEN] [USING &amp;lt;itab&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement saves the data of the calling program, and starts transaction &amp;lt;tcod&amp;gt;. At the end of the transaction, the system returns to the statement following the call in the calling report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The addition AND SKIP FIRST SCREEN allows you to prevent the initial screen of the new transaction from being displayed. The first screen to be displayed is then the specified Next screen in the screen attributes of the initial screen. If the first screen calls itself as the next screen, you cannot skip it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Furthermore, the AND SKIP FIRST SCREEN option works only if all mandatory fields on the initial screen of the new transaction are filled completely and correctly with input values from SPA/GPA parameters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 09:28:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen-and-return-using-bdc/m-p/3337909#M800123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T09:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: Skip first screen and return using BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen-and-return-using-bdc/m-p/3337910#M800124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;shafiq,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'MAT' FIELD alv_stb-idnrk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'IW53' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget to reward if useful....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 09:30:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen-and-return-using-bdc/m-p/3337910#M800124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T09:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Skip first screen and return using BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen-and-return-using-bdc/m-p/3337911#M800125</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 doubt with this syntax , can we use additions after using skip first screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            &lt;STRONG&gt;CALL TRANSACTION 'TCODE ' AND&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;            &lt;STRONG&gt;SKIP FIRST SCREEN  USING bdcdata&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                    &lt;STRONG&gt;MODE 'E'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                                    &lt;STRONG&gt;UPDATE 'S' .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error  Message :&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;' Expected after screen '&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 09:36:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen-and-return-using-bdc/m-p/3337911#M800125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T09:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: Skip first screen and return using BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen-and-return-using-bdc/m-p/3337912#M800126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; SET PARAMETER ID IS NOT WORKING...THATS WHY I TRIED THE OTHER ALTERNATIVE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 09:53:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen-and-return-using-bdc/m-p/3337912#M800126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T09:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: Skip first screen and return using BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen-and-return-using-bdc/m-p/3337913#M800127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi shafiq&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;      Form  zf_user_command&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&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; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&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;FORM ZF_USER_COMMAND USING R_UCOMM LIKE SY-UCOMM&lt;/P&gt;&lt;P&gt;                                  RS_SELFIELD TYPE SLIS_SELFIELD .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CASE R_UCOMM. "FCODE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; WHEN '&amp;amp;IC1'.   "for hotspot with MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF RS_SELFIELD-FIELDNAME = 'MATNR'.&lt;/P&gt;&lt;P&gt;      SET PARAMETER ID 'MAT' FIELD RS_SELFIELD-VALUE.&lt;/P&gt;&lt;P&gt;      CALL TRANSACTION 'MM03' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;      RETURN.&lt;/P&gt;&lt;P&gt;        MESSAGE I103 WITH RS_SELFIELD-VALUE .&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;message - material no 'X' shown succesfully&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " zf_user_command&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 it's not taking code..&lt;/P&gt;&lt;P&gt;delete form..endform..and call it again it might be giving a problem with the old form endform... &lt;STRONG&gt;just try if nothing else works&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;the above given logic is fine and working&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward poitns if helpful&lt;/P&gt;&lt;P&gt;Rohan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 11:39:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen-and-return-using-bdc/m-p/3337913#M800127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T11:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: Skip first screen and return using BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen-and-return-using-bdc/m-p/3337914#M800128</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;u cant use skip first screen and using BDCDATA both at same time....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM user_command USING u_com LIKE sy-ucomm sel_field TYPE slis_selfield.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR fcat1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE u_com.&lt;/P&gt;&lt;P&gt;    WHEN '&amp;amp;IC1'.&lt;/P&gt;&lt;P&gt;      READ TABLE itab INDEX sel_field-tabindex.&lt;/P&gt;&lt;P&gt;         IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;          t_mat = itab-matnr.&lt;/P&gt;&lt;P&gt;          &lt;STRONG&gt;SET PARAMETER ID 'MAT' FIELD t_mat.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;         &lt;STRONG&gt;CALL TRANSACTION 'MM03' AND SKIP FIRST SCREEN.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    "user_command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if usefull....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 11:41:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen-and-return-using-bdc/m-p/3337914#M800128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T11:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Skip first screen and return using BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen-and-return-using-bdc/m-p/3337915#M800129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;You can also include the exit part of the BDC code in the bdcdata table, like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;* --------------------------- Execute report ---------------------------&lt;BR /&gt;&amp;nbsp; bdchead it_bdc l_progr &lt;SPAN class="L0S33"&gt;'1000'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; bdc&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_bdc &lt;SPAN class="L0S33"&gt;'BDC_OKCODE'&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'=ONLI'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;. &lt;/SPAN&gt;&lt;SPAN class="L0S31"&gt;" Execute report&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S31"&gt;* ------------------- End report when user is done ---------------------&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; bdchead it_bdc l_progr &lt;SPAN class="L0S33"&gt;'1000'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; bdc&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_bdc &lt;SPAN class="L0S33"&gt;'BDC_OKCODE'&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'/EE'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;. &lt;/SPAN&gt;&lt;SPAN class="L0S31"&gt;" Exit report&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2014 11:47:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-first-screen-and-return-using-bdc/m-p/3337915#M800129</guid>
      <dc:creator>hagen_hennum</dc:creator>
      <dc:date>2014-06-19T11:47:27Z</dc:date>
    </item>
  </channel>
</rss>

