<?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: Custom Report Authorisation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093504#M1814187</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Authority check then delete options from via excluding tab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Feb 2014 10:39:38 GMT</pubDate>
    <dc:creator>nabheetscn</dc:creator>
    <dc:date>2014-02-06T10:39:38Z</dc:date>
    <item>
      <title>Custom Report Authorisation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093501#M1814184</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;We have a custom report and we want to restrict the export authorisations for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I defined a single role for this particular report and assigned it to a test user. The test user doesn't have assigned any other roles or profiles.&lt;/P&gt;&lt;P&gt;If I run the report and go to Export button I have there Send, Office and ABC Analys options. We don't want the Send option. We want to restrict it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the role authorisation data (PFCG) there is only the "Transaction Code Check at Transaction Start" authorisation.&lt;/P&gt;&lt;P&gt;In SU24 there is no authorisation assigned to the report transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I find what authorisation we should restrict in this case?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Daniela&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 09:39:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093501#M1814184</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-02-06T09:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Report Authorisation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093502#M1814185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My generic approach would be to activate the authorisation trace via ST01, run the activity that you want to restrict and study the trace results afterwards.&lt;/P&gt;&lt;P&gt;If there is any specific check for the activity, you would see the checked authorisation object in the trace and could build your role accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This question would probably better fit in the &lt;A __default_attr="2061" __jive_macro_name="community" class="jive_macro_community jive_macro" data-orig-content="Security" href="https://community.sap.com/" modifiedtitle="true" title="Security"&gt;&lt;/A&gt; space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 10:33:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093502#M1814185</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2014-02-06T10:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Report Authorisation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093503#M1814186</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;Assuming that you are using cl_gui_alv_grid to show the result:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on AUTHORITY-CHECK you can use parameter IT_TOOLBAR_EXCLUDING in METHOD set_table_for_first_display .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: it_toolbar_excluding TYPE ui_functions .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; APPEND cl_gui_alv_grid=&amp;gt;mc_fc_send&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TO it_toolbar_excluding .&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; APPEND cl_gui_alv_grid=&amp;gt;mc_fc_html&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TO it_toolbar_excluding .&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; APPEND cl_gui_alv_grid=&amp;gt;mc_fc_pc_file&amp;nbsp;&amp;nbsp; TO it_toolbar_excluding .&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; APPEND cl_gui_alv_grid=&amp;gt;mc_fc_call_abc&amp;nbsp; TO it_toolbar_excluding .&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; APPEND cl_gui_alv_grid=&amp;gt;mc_fc_call_xxl&amp;nbsp; TO it_toolbar_excluding .&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; APPEND cl_gui_alv_grid=&amp;gt;mc_fc_word_processor TO it_toolbar_excluding .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; APPEND cl_gui_alv_grid=&amp;gt;mc_fc_to_office TO it_toolbar_excluding .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALL METHOD ob_gui_alv_grid_1-&amp;gt;set_table_for_first_display&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EXPORTING&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_toolbar_excluding = it_toolbar_excluding&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; is_layout&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = st_layout&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; is_print&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = st_print&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i_save&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 'A'&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; is_variant&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = gs_disvariant_1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CHANGING&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_sort&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = it_sort&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_fieldcatalog&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = it_fieldcatalog&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; it_outtab&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = it_alv_grid_a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/381480" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 10:36:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093503#M1814186</guid>
      <dc:creator>rosenberg_eitan</dc:creator>
      <dc:date>2014-02-06T10:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Report Authorisation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093504#M1814187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Authority check then delete options from via excluding tab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 10:39:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093504#M1814187</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2014-02-06T10:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Report Authorisation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093505#M1814188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;Assuming that you are using cl_gui_alv_grid to show the result:&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Indeed, it would be good to know which ALV-technique is used, and even more important, custom reports only or also standard?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 10:39:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093505#M1814188</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2014-02-06T10:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Report Authorisation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093506#M1814189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniela,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your requirement of finding the Authorization object is little Tricky. I could not find any specific SAP Provided Authorization object to meet your requirement. But Probably a custom Authorization Object can meet your requirement.&lt;/P&gt;&lt;P&gt;You design one Custom Auth Object with various activities you would like to handle thru it. &lt;/P&gt;&lt;P&gt;Then internally in the Program, you check this Auth Object and then call a custom GUI Status by excluding whatever function codes you want to exclude. This way you will be able to disable the unwanted Menu/Buttons on your ALV report after checking the granted Authorizations in your custom Auth Object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps you !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- harshad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 10:52:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093506#M1814189</guid>
      <dc:creator>former_member209818</dc:creator>
      <dc:date>2014-02-06T10:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Report Authorisation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093507#M1814190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Eitan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, the report uses cl_gui_alv_grid.&lt;/P&gt;&lt;P&gt;I'm not an abap programmer. The report is made by an former programmer from our company.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was hopping there is a easy way.&lt;/P&gt;&lt;P&gt;I don't want to restrict the authorisation from the report code. It hope there is a solution via authorisation role.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Daniela&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 12:19:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093507#M1814190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-02-06T12:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Report Authorisation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093508#M1814191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Well.... no body is perfect....(I do not know a LOT of things and I am older then you....)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as I know if you do not put some code to take into account the authorization object the whole authorization module is a &lt;BR /&gt;useless group of tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 12:38:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093508#M1814191</guid>
      <dc:creator>rosenberg_eitan</dc:creator>
      <dc:date>2014-02-06T12:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Report Authorisation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093509#M1814192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Thomas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would have been better if I had started the discussion in the Security space. Now is a little bit late.&lt;/P&gt;&lt;P&gt;I activated the authorisation trace via ST01 and ran the activity but after that there is no trace result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Daniela&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 12:38:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093509#M1814192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-02-06T12:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Report Authorisation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093510#M1814193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Butnar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My suggestion is to go by CL_GUI_ALV_GRID code only why because, if you restrict some options based on the authorization, later an other report has these features then the user doesn't get the option so you need to write a logic in the program before calling the SET_TABLE_FOR _FIRST_DISPALY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sudhakar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 12:59:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093510#M1814193</guid>
      <dc:creator>Sudhakargadde</dc:creator>
      <dc:date>2014-02-06T12:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Report Authorisation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093511#M1814194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is really silly.&lt;/P&gt;&lt;P&gt;I log off from the test user and log on again. Now I can see the Send option but I can't send it. &lt;/P&gt;&lt;P&gt;Only when I press the send button in the "Create Document and Send" screen - S000 TCode - I get the "You do not have authorization to send to Internet user address" error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Daniela&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 13:00:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093511#M1814194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-02-06T13:00:24Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Report Authorisation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093512#M1814195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;Please take the course ADM940 before asking further questions, or the D-I-Y course here on SCN by searching before asking questions.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;Otherwise the forums are flooded by "how to" questions -&amp;gt; training and searching will answer questions very quickly.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;Thread locked.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;ps: If ABAP mods think that this can be caught in ABAP and made authorization relevant then let me know and I will unlock it. Please read the question carefully first... &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Sorry, did not realize that it was just a security tag to an ABAP question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This has now been duplicate posted since, so I suggest locking thing thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Julius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Feb 2014 01:32:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-report-authorisation/m-p/10093512#M1814195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-02-11T01:32:55Z</dc:date>
    </item>
  </channel>
</rss>

