<?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 validation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157430#M751055</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_rzzps for zupi5a-rzzps_posid obligatory no intervals."wbs element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the field i need to do validation but with conditions&lt;/P&gt;&lt;P&gt;conditions are:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;They r 2 types of wbs element one is starting with ' T ' and another is Starting with ' C ' .so when wbs element starts with T just pass the value but when the first letter of it is ' C'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;goto table PRPS and check the field USR00. If  this field is blank then rise the error message.even when the wbs element is other than this 2 letters we need to pass the error message&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;please help me i need this urgently.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Ramya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Dec 2007 12:32:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-24T12:32:54Z</dc:date>
    <item>
      <title>validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157430#M751055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_rzzps for zupi5a-rzzps_posid obligatory no intervals."wbs element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the field i need to do validation but with conditions&lt;/P&gt;&lt;P&gt;conditions are:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;They r 2 types of wbs element one is starting with ' T ' and another is Starting with ' C ' .so when wbs element starts with T just pass the value but when the first letter of it is ' C'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;goto table PRPS and check the field USR00. If  this field is blank then rise the error message.even when the wbs element is other than this 2 letters we need to pass the error message&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;please help me i need this urgently.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Ramya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 12:32:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157430#M751055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T12:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157431#M751056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you go ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection-screen on s_rzzps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at s_rzzps.&lt;/P&gt;&lt;P&gt;case s_rzzps-low(1).&lt;/P&gt;&lt;P&gt;when 'T'.          " Do Nothing&lt;/P&gt;&lt;P&gt;When 'C'.&lt;/P&gt;&lt;P&gt;select USR00&lt;/P&gt;&lt;P&gt;                   from PRPS&lt;/P&gt;&lt;P&gt;                   into l_v_USR00&lt;/P&gt;&lt;P&gt;                   where PSPNR = s_rzzps-low.&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;message e000(rp) with 'Option not valid'.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;if l_v_usr00 is initial.&lt;/P&gt;&lt;P&gt;message e000(rp) with 'Option not valid'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;When Others.&lt;/P&gt;&lt;P&gt;               message e000(rp) with 'Option not valid'.&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;case s_rzzps-high(1).&lt;/P&gt;&lt;P&gt;when 'T'.          " Do Nothing&lt;/P&gt;&lt;P&gt;When 'C'.&lt;/P&gt;&lt;P&gt;select USR00&lt;/P&gt;&lt;P&gt;                   from PRPS&lt;/P&gt;&lt;P&gt;                   into l_v_USR00&lt;/P&gt;&lt;P&gt;                   where PSPNR = s_rzzps-high.&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;message e000(rp) with 'Option not valid'.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;if l_v_usr00 is initial.&lt;/P&gt;&lt;P&gt;message e000(rp) with 'Option not valid'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When Others.&lt;/P&gt;&lt;P&gt;               message e000(rp) with 'Option not valid'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~ Ranganath&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS : Reward points for all useful answers !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ranganath Ramesh on Dec 24, 2007 1:39 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 12:38:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157431#M751056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T12:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157432#M751057</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;You can do as below :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare a varible as .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : char type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you wnat to validate in the selection screen do as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_rzzps[] is initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;char = so_rzzps-low .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if char = 'T'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just pass the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;elseif char = 'C'.&lt;/P&gt;&lt;P&gt; get the values from PRSP checking field USR00.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;message 'Input correct WBS element' type 'E'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly do for so_rzzps-high also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 12:39:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157432#M751057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T12:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157433#M751058</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;  s_rzzps for zupi5a-rzzps_posid obligatory no intervals,  "WBS Element&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i didn't get ur idea. seelct options is with no intervals&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u please explain me along with the code.please its very urgent.and the error message should rise when the letter is other than T &amp;amp; C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 12:51:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157433#M751058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T12:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157434#M751059</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;&lt;/P&gt;&lt;P&gt;data:v_rzzps like zupi5a-rzzps_posid .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_rzzps for zupi5a-rzzps_posid obligatory no intervals."wbs element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON s_rzzps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT s_rzzps.&lt;/P&gt;&lt;P&gt;    IF s_rzzps-low+0(1) = 'C'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      SELECT SINGLE usr00 INTO v_usr00&lt;/P&gt;&lt;P&gt;           FROM prps WHERE usr00 = sy-uname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF v_usr00 IS INITIAL AND sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        MESSAGE e999(zmde) WITH text-017 s_rzzps-low.&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;    ELSEIF s_rzzps-low+0(1) NE 'T'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MESSAGE e999(zmde) WITH text-017 s_rzzps-low.&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;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Same way you do for s_rzzps-HIGH also by putting in loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds&lt;/P&gt;&lt;P&gt;Parvathi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if helpful..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Siva Parvathi on Dec 24, 2007 1:54 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 12:53:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157434#M751059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T12:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157435#M751060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ramya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code mentioned would address all options even when it is not 'C' or 'T'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even though it's mentioned as no-intervals, user will have choice by clicking on additional selections he can give a range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~ Ranganath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 12:55:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157435#M751060</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T12:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157436#M751061</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;You the below code to do the validation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do as below :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare a varible as .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : char type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you wnat to validate in the selection screen do as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not s_rzzps[] is initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;char = so_rzzps-low .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if char = 'T'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just pass the value as per your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;elseif char = 'C'.&lt;/P&gt;&lt;P&gt;get the values from PRSP checking field USR00.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;message 'Input correct WBS element' type 'E'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 13:56:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157436#M751061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T13:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157437#M751062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi siva parvathi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for ur logic i have made some changes and its working fine now. &lt;STRONG&gt;but i have doubt  in my program select-options is with no intervalsso there is no to to field(high).so i validated only for the from field (low).there will be multiple options choice so do i need to validate even for the s_rzzps-high. please suggest me .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;s_rzzps for zupi5a-rzzps_posid obligatory no intervals,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;at selection-screen on s_rzzps.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data v_usr00 like PRPS-USR00.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;loop at s_rzzps.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          &lt;EM&gt;*if s_rzzps-low&lt;/EM&gt;0(1) = 'T'.*+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         &lt;EM&gt;*Elseif s_rzzps-low&lt;/EM&gt;0(1) = 'C'.*+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            &lt;EM&gt;&lt;STRONG&gt;Select single usr00 into v_usr00&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;                 &lt;EM&gt;&lt;STRONG&gt;from PRPS where POSID = s_rzzps-low.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           &lt;EM&gt;&lt;STRONG&gt;if v_usr00 is initial." and sy-subrc NE 0.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           &lt;EM&gt;&lt;STRONG&gt;MESSAGE e013 .&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;endif.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;endif.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;endloop.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;please any one can suggest me.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Ramya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 14:57:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157437#M751062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T14:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157438#M751063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to use loop at s_rzzps-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                 endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no need to use for s_rzzps-high  ( you dont have high option to enter)  .&lt;/P&gt;&lt;P&gt;Because all the values you enter thru extension (arrow mark operator) will be stored s_rzzps-low option only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at s_rzzps.&lt;/P&gt;&lt;P&gt;if s_rzzps-low...&lt;/P&gt;&lt;P&gt;Normal validation.........&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise if you are confusing with low high, you can one thing.just take 1 internal table with one column like s_rzzps-low and append all the values from s_rzzps-low to that internal table column and afterwards you can validation for that internal table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds&lt;/P&gt;&lt;P&gt;Sivaparvathi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 15:52:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157438#M751063</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T15:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: validation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157439#M751064</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;Thank u very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 16:09:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation/m-p/3157439#M751064</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T16:09:09Z</dc:date>
    </item>
  </channel>
</rss>

