<?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: passing value to a variable in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111371#M1362277</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you not getting value to variable or not getting message ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can trigger the message for particular condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'DETERMINE_DUE_DATE'

EXPORTING
i_faede = faede
IMPORTING
e_faede = faede
EXCEPTIONS
OTHERS = 1.

if sy-subrc = 0.

w_duedate = FAEDE-NETDT.

MESSAGE s000(zdue_v1) WITH w_duedate.

endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Sep 2009 08:25:17 GMT</pubDate>
    <dc:creator>GauthamV</dc:creator>
    <dc:date>2009-09-17T08:25:17Z</dc:date>
    <item>
      <title>passing value to a variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111369#M1362275</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 using Determine_due_date function module as shown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tables: Faede.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DETERMINE_DUE_DATE'&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        i_faede = faede&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        e_faede = faede&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        OTHERS  = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function module is working fine but i want to fetch the field FAEDE-NETDT into a variable so that i can pas the&lt;/P&gt;&lt;P&gt;variable to a message can anyone help me with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DETERMINE_DUE_DATE'&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        i_faede = faede&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        e_faede = faede&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        OTHERS  = 1.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;   w_duedate = FAEDE-NETDT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    MESSAGE s000(zdue_v1) WITH w_duedate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But message is not displaying in my case where i am going wrong ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;VEnk@&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 08:19:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111369#M1362275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-17T08:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: passing value to a variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111370#M1362276</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;FAEDE is of type structure thus you must have declared it as a internal table. you may have to loop at it and assing the variable w_duedate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'DETERMINE_DUE_DATE'


EXPORTING
i_faede = faede
IMPORTING
e_faede = faede
EXCEPTIONS
OTHERS = 1.

if not faede[] is initial.
loop at faede.
w_duedate = FAEDE-NETDT.
MESSAGE s000(zdue_v1) WITH w_duedate.
endloop.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 08:24:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111370#M1362276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-17T08:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: passing value to a variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111371#M1362277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you not getting value to variable or not getting message ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can trigger the message for particular condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'DETERMINE_DUE_DATE'

EXPORTING
i_faede = faede
IMPORTING
e_faede = faede
EXCEPTIONS
OTHERS = 1.

if sy-subrc = 0.

w_duedate = FAEDE-NETDT.

MESSAGE s000(zdue_v1) WITH w_duedate.

endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 08:25:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111371#M1362277</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2009-09-17T08:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: passing value to a variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111372#M1362278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have followed both you guys suggestions. No use.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 08:35:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111372#M1362278</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-17T08:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: passing value to a variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111373#M1362279</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;Your code seems to be ok, but where u place it? In which event?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 08:37:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111373#M1362279</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-17T08:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: passing value to a variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111374#M1362280</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;Did you debug and check if the reference structure FAEDE is populated or not after calling the FM DETERMINE_DUE_DATE?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 08:42:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111374#M1362280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-17T08:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: passing value to a variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111375#M1362281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi MAx,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my function module source code where i am using my Determine_due_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tables: FAEDE,&lt;/P&gt;&lt;P&gt;        INVFO,&lt;/P&gt;&lt;P&gt;        T052.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt; Structures that are passed to central function module ---&lt;/P&gt;&lt;P&gt;    DATA: sklin2 LIKE sklin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DATA  g_status(1).                     "01: FB60 02: FV60 03: vollst.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    STATICS: warning_sent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DATA: koart LIKE bseg-koart. "Rel. acc. type for screen det.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DATA: old_netdt LIKE faede-netdt.                      "Note 565953&lt;/P&gt;&lt;P&gt;    DATA: W_DUEDATE TYPE FAEDE-NETDT.&lt;/P&gt;&lt;P&gt;    DATA: fs_bseg type bseg,&lt;/P&gt;&lt;P&gt;          fs_bkpf type bkpf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt; New ZTERM or new base line date -&lt;/P&gt;&lt;HR originaltext="---------------------------" /&gt;&lt;P&gt;    read table t_bseg into fs_bseg index 1.&lt;/P&gt;&lt;P&gt;    read table t_bkpf into fs_bkpf index 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          CALL FUNCTION 'FI_FIND_PAYMENT_CONDITIONS'&lt;/P&gt;&lt;P&gt;            EXPORTING&lt;/P&gt;&lt;P&gt;              i_zterm            = fs_bseg-zterm&lt;/P&gt;&lt;P&gt;              i_bldat            = fs_bkpf-bldat&lt;/P&gt;&lt;P&gt;              i_budat            = fs_bkpf-budat&lt;/P&gt;&lt;P&gt;              i_cpudt            = sy-datum&lt;/P&gt;&lt;P&gt;            IMPORTING&lt;/P&gt;&lt;P&gt;              e_t052             = t052&lt;/P&gt;&lt;P&gt;              e_zfbdt            = fs_bseg-zfbdt&lt;/P&gt;&lt;P&gt;              e_sklin            = sklin2&lt;/P&gt;&lt;P&gt;            EXCEPTIONS&lt;/P&gt;&lt;P&gt;              terms_incorrect    = 1&lt;/P&gt;&lt;P&gt;              terms_not_found    = 2&lt;/P&gt;&lt;P&gt;              no_day_limit_found = 3&lt;/P&gt;&lt;P&gt;              OTHERS             = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    read table t_bseg into fs_bseg index 1.&lt;/P&gt;&lt;P&gt;    read table t_bkpf into fs_bkpf index 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   CHECK NOT bseg-zfbdt IS INITIAL.                        "P00K009405&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    faede-shkzg = fs_bseg-shkzg.&lt;/P&gt;&lt;P&gt;    faede-koart = koart.&lt;/P&gt;&lt;P&gt;    faede-zfbdt = fs_bseg-zfbdt.&lt;/P&gt;&lt;P&gt;    faede-zbd1t = fs_bseg-zbd1t.&lt;/P&gt;&lt;P&gt;    faede-zbd2t = fs_bseg-zbd2t.&lt;/P&gt;&lt;P&gt;    faede-zbd3t = fs_bseg-zbd3t.&lt;/P&gt;&lt;P&gt;    faede-rebzg = fs_bseg-rebzg.&lt;/P&gt;&lt;P&gt;    faede-rebzt = fs_bseg-rebzt.&lt;/P&gt;&lt;P&gt;    faede-bldat = fs_bkpf-bldat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'DETERMINE_DUE_DATE'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        i_faede = faede&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        e_faede = faede&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        OTHERS  = 1.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;    if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    w_duedate = FAEDE-netdt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    MESSAGE s000(zdue_v1) WITH w_duedate.&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;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;VEnk@&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 08:44:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111375#M1362281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-17T08:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: passing value to a variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111376#M1362282</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 tried it like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: I_FAEDE TYPE FAEDE.
DATA: E_FAEDE TYPE FAEDE.
*
I_FAEDE-KOART = 'K'.
I_FAEDE-ZFBDT = '20091201'.
I_FAEDE-ZBD1T = 20.
I_FAEDE-ZBD2T = 10.
I_FAEDE-ZBD3T = 0.
*
CALL FUNCTION 'DETERMINE_DUE_DATE'
  EXPORTING
    I_FAEDE                    = I_FAEDE
  IMPORTING
    E_FAEDE                    = E_FAEDE
  EXCEPTIONS
    ACCOUNT_TYPE_NOT_SUPPORTED = 1
    OTHERS                     = 2.
IF SY-SUBRC &amp;lt;&amp;gt; 0.
  WRITE: / 'Error:', SY-SUBRC.
ELSE.
  MESSAGE I010 WITH E_FAEDE-NETDT.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and it works&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I_FAEDE and E_FAEDE ers structures not tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 08:44:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111376#M1362282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-17T08:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: passing value to a variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111377#M1362283</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;MESSAGE s000(zdue_v1) WITH w_duedate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could you pls tell me the message text for 000 under message class zdue_v1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;zashok&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 08:48:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111377#M1362283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-17T08:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: passing value to a variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111378#M1362284</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;Did u declare the w_duedate of type faede-netdt?&lt;/P&gt;&lt;P&gt;Also while writing the message, add the  &amp;amp; symbol at the end - for instance like&lt;/P&gt;&lt;P&gt;'The message is successful on &amp;amp;' (add the &amp;amp; symbol to add the date to the message).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While I was trying, got the message like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'The message is successful on 17.09.2009'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this what u were looking at?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swetha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 08:49:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111378#M1362284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-17T08:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: passing value to a variable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111379#M1362285</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 don't think the problem is your code, but where your code is placed?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; DATA g_status(1). "01: FB60 02: FV60 03: vollst.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That means u're are in trx FB60 and FV60? So you're in a BADI?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to change the message type, try to use I (information) instead of S&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 08:51:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-value-to-a-variable/m-p/6111379#M1362285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-17T08:51:32Z</dc:date>
    </item>
  </channel>
</rss>

