<?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: VALIDATION? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766564#M644384</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;At selection-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select single matnr into wa_matnr &lt;/P&gt;&lt;P&gt;              from mara&lt;/P&gt;&lt;P&gt;            where matnr in p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   if sy-subrc &amp;lt;&amp;gt; 0 .&lt;/P&gt;&lt;P&gt;     message e000 with 'Invalid Material numebr'.&lt;/P&gt;&lt;P&gt;   end if.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Satya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Sep 2007 10:36:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-05T10:36:38Z</dc:date>
    <item>
      <title>VALIDATION?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766561#M644381</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;I have a input field P_MATNR is a select-option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If user enters a material in selection-screen...i need to check weather the material is there(mara) or not....if he enters a wrong material..i have to give a message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vkr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2007 10:30:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766561#M644381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-05T10:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: VALIDATION?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766562#M644382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;there are two options.&lt;/P&gt;&lt;P&gt;1 either give p_matnr type mara-matnr.&lt;/P&gt;&lt;P&gt;so that you will get a help directly for selecting the material number directly from the data base table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2 is use at-selection screen .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single matnr from mara where matnr = p_matnr .&lt;/P&gt;&lt;P&gt;if sy-subrc not equal to zero&lt;/P&gt;&lt;P&gt;message 'invalid aterial number' type 'E'.&lt;/P&gt;&lt;P&gt;end if.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2007 10:35:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766562#M644382</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-05T10:35:18Z</dc:date>
    </item>
    <item>
      <title>Re: VALIDATION?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766563#M644383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AT SELECTION-SCREEN ON P_MATNR. &lt;/P&gt;&lt;P&gt;SELECT MATNR FROM MARA INTO W_MATNR&lt;/P&gt;&lt;P&gt;UP TO 1 ROWS WHERE MATNR EQ P_MATNR.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;CLEAR SSCRFIELDS-UCOMM.&lt;/P&gt;&lt;P&gt;MESSAGE 'Invalid Material'.&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;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2007 10:35:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766563#M644383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-05T10:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: VALIDATION?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766564#M644384</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;At selection-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select single matnr into wa_matnr &lt;/P&gt;&lt;P&gt;              from mara&lt;/P&gt;&lt;P&gt;            where matnr in p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   if sy-subrc &amp;lt;&amp;gt; 0 .&lt;/P&gt;&lt;P&gt;     message e000 with 'Invalid Material numebr'.&lt;/P&gt;&lt;P&gt;   end if.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Satya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2007 10:36:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766564#M644384</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-05T10:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: VALIDATION?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766565#M644385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is no-one paying any attention to the fact that P_MATNR is a select-option.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2007 10:37:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766565#M644385</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-05T10:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: VALIDATION?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766566#M644386</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;Refer to the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE * FROM MSEG WHERE&lt;/P&gt;&lt;P&gt;       MBLNR = IMBLNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE S000(ZMM) WITH 'Please select a valid Material Number'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sipra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2007 10:37:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766566#M644386</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-05T10:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: VALIDATION?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766567#M644387</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 like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single matnr from mara where matnr = p_matnr .&lt;/P&gt;&lt;P&gt;if sy-subrc not equal to zero&lt;/P&gt;&lt;P&gt; message 'invalid material number' type 'E'.&lt;/P&gt;&lt;P&gt;end if. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;Suresh Aluri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2007 10:37:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766567#M644387</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-05T10:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: VALIDATION?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766568#M644388</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 can validate at atslection screen event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at-selection screen .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single matnr from mara where matnr = p_matnr .&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;message '&amp;lt;invalid material number' &amp;gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2007 10:37:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766568#M644388</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2007-09-05T10:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: VALIDATION?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766569#M644389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;HERE IS SOME SAMPLE CODE..&lt;/P&gt;&lt;P&gt;  AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF P_MATNR-LOW = ''.&lt;/P&gt;&lt;P&gt;    MESSAGE E000(YMSG).&lt;/P&gt;&lt;P&gt;  ELSEIF P_MATNR -HIGH = ''.&lt;/P&gt;&lt;P&gt;    MESSAGE E000(YMSG).&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2007 10:41:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766569#M644389</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-05T10:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: VALIDATION?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766570#M644390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  VKR,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Input Validation&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Description&lt;/P&gt;&lt;P&gt;Whenever software processes input, it should make sure that this input is in the expected form. From a functional point of view, this will ensure a high data quality level. From a security point of view, this will prevent unexpected data from altering the intended execution of the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Software processes input from various sources:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;#9679;     User input from a GUI&lt;/P&gt;&lt;P&gt;&amp;amp;#9679;     Parameters from a configuration file&lt;/P&gt;&lt;P&gt;&amp;amp;#9679;     Data from a database&lt;/P&gt;&lt;P&gt;&amp;amp;#9679;     Data from remote function calls&lt;/P&gt;&lt;P&gt;&amp;amp;#9679;     And so on&lt;/P&gt;&lt;P&gt;If input is not sufficiently validated, the application processing the data might crash or could be tricked into performing unwanted tasks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What Do I Need to Do?&lt;/P&gt;&lt;P&gt;Basically, you should validate your input. To achieve that goal, you have to provide a validation function for each input variable. You might group the variables (for example, all input strings) and write one validation function for each group (for example, string validator), which increases your efficiency. The task of writing validation code can be described as a step-wise procedure. In the case of Web Dynpro, the framework automatically performs the type validation before you can even access a variable. So the first three steps of the following list have been already performed. Consequently, in Web Dynpro you only have to start your additional input validation at the fourth step of the following input validation &amp;#145;to do&amp;#146; list:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       1.      Existence and length check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       2.      Canonicalization&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       3.      Type check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       4.      Range check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       5.      White list filter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       6.      Black list filter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These steps are explained in more detail below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 1: Existence and length check&lt;/P&gt;&lt;P&gt;It must not be possible to attack the application simply by omitting a necessary variable or feeding in data packets that are either too long or too short. So, first of all, your validation function needs to check if the variable of interest exists and has the correct length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 2: Canonicalization &lt;/P&gt;&lt;P&gt;Canonicalization means that the input variable&amp;#146;s content is transformed into its simplest and shortest representation. Many attack methods depend on the usage of &amp;#145;polymorph representation&amp;#146;, that is, an unusual or overly complicated form that is designed to evade filter mechanisms. So the transformation into its simplest form is fundamental for successful filter mechanisms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 3: Type check&lt;/P&gt;&lt;P&gt;Since attackers should not be able to harm the application by feeding input data of the wrong type to it (such as strings instead of dates), the validation function needs to check that the variable is of the correct type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 4: Range check&lt;/P&gt;&lt;P&gt;After that, you should check if the variable's values are in the correct range. Clearly, this is only possible for variables with a definable range of values (like numbers). It is imperative that you define the limits exactly here. You should consider where the boundaries lie for all input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 5: &amp;#145;White list&amp;#146; filter&lt;/P&gt;&lt;P&gt;If a variable simply has no clear range of values (for example, strings), a range check would be pointless. In this case, your validation function should contain a list of allowed values and check the input against this instance. Such an instance is called a &amp;#145;white list&amp;#146; filter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 6: &amp;#145;Black list&amp;#146; filter&lt;/P&gt;&lt;P&gt;There may be cases where you cannot even implement a white list filter. In this situation, you should at least write a black list filter function: this is better than doing no filtering at all. Doing nothing here regularly has detrimental effects for the security of your application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Validation using field exits&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If for a particular transaction you want the error message (any validation checks) and it should not allow further processing of that transaction, then its the time to go for FIELD EXIT. Steps: 1. Create a Function Group. 2. Run the program RSMODPRF, which will create a field exit (Mention the data element for which field exit is needed). 3. In the Function module created by the above program write the validation code you require. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2007 10:47:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766570#M644390</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-05T10:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: VALIDATION?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766571#M644391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am sorry i didnt check for select options &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for select options if low is 1000  and high is 2000 then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select matnr from mara into table gt_mara where matnr in p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here in this table you will get all the existing material numbers from mara in gt_mar between 1000 and 2000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess individually slecting based on select options is difficult.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2007 10:48:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766571#M644391</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-05T10:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: VALIDATION?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766572#M644392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just add VALUE CHECK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS: p_matnr LIKE mara-matnr VALUE CHECK.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if you're dealing with select options. Your p_matnr should be s_matnr. Then code it like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
AT SELECTION-SCREEN ON S_MATNR.
  IF NOT S_MATNR[] IS INITIAL.
    SELECT MATNR
       FROM MARA
       INTO MARA-MATNR
       UP TO 1 ROWS
       WHERE MATNR IN S_MATNR.
    ENDSELECT.

    IF SY-SUBRC NE 0.
      MESSAGE .... WITH 'Invalid Material Number'.
    ENDIF.

  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="grin"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2007 10:54:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/2766572#M644392</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-05T10:54:50Z</dc:date>
    </item>
  </channel>
</rss>

