<?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: System Date calculation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678114#M1290849</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Determine current week dates&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'GET_WEEK_INFO_BASED_ON_DATE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      DATE   = SY-DATUM&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      WEEK   = V_WEEK&lt;/P&gt;&lt;P&gt;      MONDAY = V_MONDAY&lt;/P&gt;&lt;P&gt;      SUNDAY = V_SUNDAY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This function will retrieve the Monday and sunday of week based on date entered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Jun 2009 00:59:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-09T00:59:55Z</dc:date>
    <item>
      <title>System Date calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678113#M1290848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to update the data from one DSO to another DSO using transformation. We generally load the data on Monday but we can do so even sometime in middle of the week. The logic which we are looking for is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take the system date and calculate the From Date and To Date&lt;/P&gt;&lt;P&gt;Logic&lt;/P&gt;&lt;P&gt;From Date:- Monday of the previous week&lt;/P&gt;&lt;P&gt;To Date:- Sunday of the previous week&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg. say today is 6/8/09&lt;/P&gt;&lt;P&gt;so the From data will be 6/1/09&lt;/P&gt;&lt;P&gt;and To Date will be 6/7/09&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please give me the logic for this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Really Appreciated&lt;/P&gt;&lt;P&gt;Prat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 00:55:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678113#M1290848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-09T00:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: System Date calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678114#M1290849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Determine current week dates&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'GET_WEEK_INFO_BASED_ON_DATE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      DATE   = SY-DATUM&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      WEEK   = V_WEEK&lt;/P&gt;&lt;P&gt;      MONDAY = V_MONDAY&lt;/P&gt;&lt;P&gt;      SUNDAY = V_SUNDAY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This function will retrieve the Monday and sunday of week based on date entered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 00:59:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678114#M1290849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-09T00:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: System Date calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678115#M1290850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is simple. try to use this FM modules accordingly...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This logic will surely works, &lt;/P&gt;&lt;P&gt;First you need to calculate last week,,, &lt;/P&gt;&lt;P&gt;So there is a week difference.... So subtract 7 from your current date,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Eg. say today (P_DATUM) is 6/8/09
P_DATUM = sydatum - 7.

*To calculate week Start &amp;amp; End date
        CALL FUNCTION 'HRWPC_BL_DATES_WEEK_INTERVAL'
          EXPORTING
            DATUM                = P_DATUM 
            WEEK_PST             = '0'
            WEEK_FTR             = '0'
         IMPORTING
           BEGDA                = STR_WEEK_DATE  " Week start date
           ENDDA                = END_WEEK_DATE. " Week end date

so the From data will be 6/1/09 " STR_WEEK_DATE
and To Date will be 6/7/09 "END_WEEK_DATE
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Dileep .C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 01:32:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678115#M1290850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-09T01:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: System Date calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678116#M1290851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While the recommendations to use the ''GET_WEEK_INFO_BASED_ON_DATE'' or 'HRWPC_BL_DATES_WEEK_INTERVAL' Function Modules are very good for an R3/ECC environment, they won't work in a BI environment because they are not included as standard FMs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To get the first day of the week, in BI, use FM 'BWSO_DATE_GET_FIRST_WEEKDAY'. Here's some sample code using that FM along with an FM to change the date to the next weekday falls on a weekend. In this example, I hardcoded a date of this past Sunday (7 June 2009) for testing purposes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: l_today TYPE sy-datum,
      l_wk_start TYPE sy-datum,
      l_wk_end TYPE sy-datum.

l_today = '20090607'.

CALL FUNCTION '/OSP/GETDATE_WEEKDAY'
 EXPORTING
   IV_START_DATE             = l_today
 IMPORTING
   EV_DATE_DAY_OF_WEEK       = l_today
          .

CALL FUNCTION 'BWSO_DATE_GET_FIRST_WEEKDAY'
  EXPORTING
    date_in        = l_today
 IMPORTING
   DATE_OUT       = l_wk_start
          .

l_wk_end = l_wk_start + 5.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 03:07:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678116#M1290851</guid>
      <dc:creator>dennis_scoville4</dc:creator>
      <dc:date>2009-06-09T03:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: System Date calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678117#M1290852</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;First use the Function module GET_WEEK_INFO_BASED_ON_DATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you will get the current week.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass this current week to the function module LAST_WEEK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you will the previous week begin and end dates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumar Bandanadham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 04:10:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678117#M1290852</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-09T04:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: System Date calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678118#M1290853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As stated previously, the FM GET_WEEK_INFO_BASED_ON_DATE doesn't exist in BI and the initial question was related BI (DSO to DSO using transformation). It's the correct FM to use in R3/ECC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 04:23:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678118#M1290853</guid>
      <dc:creator>dennis_scoville4</dc:creator>
      <dc:date>2009-06-09T04:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: System Date calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678119#M1290854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dennis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was trying to check the FM but when i entered 6/8/2008 the output was 6/8/2009.&lt;/P&gt;&lt;P&gt;I wan previous weeks date.... &lt;/P&gt;&lt;P&gt;Can you please let me know what changes we need to make in the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Prat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 13:02:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678119#M1290854</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-09T13:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: System Date calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678120#M1290855</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;Try to use the FM like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:
V_DATE TYPE DATUM,
V_SUN   TYPE DATUM,
V_MON   TYPE DATUM.

V_DATUM = SY-DATUM - 7.

  CALL FUNCTION 'GET_WEEK_INFO_BASED_ON_DATE'
    EXPORTING
      date = fp_v_erdat
    IMPORTING
*      week = 
      MONDAY        = V_SUN
      SUNDAY        = V_MON.
  IF sy-subrc = 0.

  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 13:15:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678120#M1290855</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-06-09T13:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: System Date calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678121#M1290856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Susha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FM 'GET_WEEK_INFO_BASED_ON_DATE' doesnot exist in BI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 13:19:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678121#M1290856</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-09T13:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: System Date calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678122#M1290857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can subtract 7 days from the date being passed to, or substract 7 from the date being sent back from, the BWSO_DATE_GET_FIRST_WEEKDAY FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I took a closer look at the first FM that I provided to get the next weekday and there's code in that FM that will move it forward to the following week. For example the date of 7 June 2009 passed to that FM today (9 June 2009) will bring back a date of 15 June 2009.  If the date is Saturday, and perhaps Sunday depending on your config, you're going to have to account/test for that to see if it provides the correct result.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 15:13:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678122#M1290857</guid>
      <dc:creator>dennis_scoville4</dc:creator>
      <dc:date>2009-06-09T15:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: System Date calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678123#M1290858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the function module "LAST_WEEK" for getting the date of last monday and sunday. It works like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION LAST_WEEK.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Lokale Schnittstelle:&lt;/P&gt;&lt;P&gt;     IMPORTING = '200924'&lt;/P&gt;&lt;P&gt;*"     REFERENCE(CURRENT_WEEK) LIKE  SCAL-WEEK&lt;/P&gt;&lt;P&gt;*"  EXPORTING&lt;/P&gt;&lt;P&gt;       REFERENCE(LAST_WEEK) =  w_lastweek&lt;/P&gt;&lt;P&gt;       REFERENCE(MONDAY) =  w_lastmonday&lt;/P&gt;&lt;P&gt;       REFERENCE(SUNDAY) =  w_lastsunday&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result would be:&lt;/P&gt;&lt;P&gt;W_lastweek = '200923'&lt;/P&gt;&lt;P&gt;w_lastmonday = 01.06.2009&lt;/P&gt;&lt;P&gt;w_lastsunday = 07.06.2009&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here, '200924' is the concatenation of current fiscal year '2009' and '24' is current week.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use function module GET_WEEK_INFO_BASED_ON_DATE to get the week information based on current date.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 15:44:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678123#M1290858</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-09T15:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: System Date calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678124#M1290859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FM LAST_WEEK doesnot exist in BI system.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 15:49:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678124#M1290859</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-09T15:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: System Date calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678125#M1290860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You replied to everyone, But not to me...!&lt;/P&gt;&lt;P&gt;I just want to know, Does this one is working or not.&lt;/P&gt;&lt;P&gt;'HRWPC_BL_DATES_WEEK_INTERVAL' Did you tried this...!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Dileep .C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 00:59:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678125#M1290860</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T00:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: System Date calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678126#M1290861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dileep&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This FM doesnot exist in BI/BW.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 01:10:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678126#M1290861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T01:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: System Date calculation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678127#M1290862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ok then Do it in the Other way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just Subtract 7 days to go to the last week,,,, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp; Use this FM 'WEEK_GET_FIRST_DAY' to get the first day of that week &amp;amp; Add 7 to that to get last day of last week,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Dileep .C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 02:05:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-date-calculation/m-p/5678127#M1290862</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-10T02:05:39Z</dc:date>
    </item>
  </channel>
</rss>

