<?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 validating the field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643975#M608873</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to maka a select of table febko based on condition that field AZIDT's first seven character is given in the select-options &lt;/P&gt;&lt;P&gt;i.e my selection should be based only on the seven characters of the field which is given by the user &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;jaga.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Aug 2007 04:50:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-23T04:50:36Z</dc:date>
    <item>
      <title>validating the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643975#M608873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to maka a select of table febko based on condition that field AZIDT's first seven character is given in the select-options &lt;/P&gt;&lt;P&gt;i.e my selection should be based only on the seven characters of the field which is given by the user &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;jaga.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 04:50:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643975#M608873</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T04:50:36Z</dc:date>
    </item>
    <item>
      <title>Re: validating the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643976#M608874</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 input fields using javascript.Write OnClientClick function for that submit button if ur using htmlb or onClick if u r using html.Refer the follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/03/900e41a346ef6fe10000000a1550b0/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/03/900e41a346ef6fe10000000a1550b0/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are two ways to achieve ur task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.By checking for all alphabets.in this u need check all the alphabetic characters one by one.Refer the following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.shiningstar.net/articles/articles/javascript/javascriptvalidations.asp?ID=ROLLA" target="test_blank"&gt;http://www.shiningstar.net/articles/articles/javascript/javascriptvalidations.asp?ID=ROLLA&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.shiningstar.net/articles/articles/javascript/checkNumeric.asp?ID=AW" target="test_blank"&gt;http://www.shiningstar.net/articles/articles/javascript/checkNumeric.asp?ID=AW&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.By using regular expressions.its very easy and a single line code.here u need to specify single expression for whole alphabets.Refer this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://aspzone.com/blogs/john/articles/173.aspx" target="test_blank"&gt;http://aspzone.com/blogs/john/articles/173.aspx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everything has been given for validating in javascript.i hope u also validating in javascript only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more details on "Regular expressions" search google.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;rewards point.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 04:53:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643976#M608874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T04:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: validating the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643977#M608875</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 get the first 7 char as follows.&lt;/P&gt;&lt;P&gt;DATA: val(15) type c value 'ABCDEFGHIJKLMNO'.&lt;/P&gt;&lt;P&gt;DATA: CHA(7) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cha = val+0(7).&lt;/P&gt;&lt;P&gt;write: cha.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 04:53:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643977#M608875</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-08-23T04:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: validating the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643978#M608876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Visual Composer is a composition tool, you can do the same in very different ways, this is not a fix tool with only one way to do it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sad you think that this forum do not help you, but maybe with playing a bit with the storyboard you will get the answer that you're looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also in you case you give us very small details, you asked how to validate an input and we answered you...(with drop-down list or by using validation rules)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe you're asking for a formula but what kind of formula you want ? which datasources you want to use ? what kind of result are you expecting... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, again, i think we give you the tricks, now you have to adapt it to use in the right way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Luis &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nikhil Bansal   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Posts: 331 &lt;/P&gt;&lt;P&gt;Questions: 139 &lt;/P&gt;&lt;P&gt;Registered: 12/20/06 &lt;/P&gt;&lt;P&gt;Forum points: 10  &lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;   Re: How to validate the input field   &lt;/P&gt;&lt;P&gt;Posted: Jun 25, 2007 10:21 AM    in response to: Luis Felipe Lanz       Reply      E-mail this post  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Luis,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question was very simple. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just want to check if the input field contains the characters 'a-z' or 'A-Z'. If any character is present then say onBlur or onSubmit there should be an error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you give me a formula for this requirements. Shall be glad if I get.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rewards point&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 04:54:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643978#M608876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T04:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: validating the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643979#M608877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagadish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_option like .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value = s_option(7).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and now use this value in select query instead of select option&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Regards,&lt;/P&gt;&lt;P&gt;Azhar&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 04:59:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643979#M608877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T04:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: validating the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643980#M608878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: val(8) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate s_field '*' into val.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from febko&lt;/P&gt;&lt;P&gt;where AZIDT cp val.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 05:00:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643980#M608878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T05:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: validating the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643981#M608879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You want to select the AZIDT field values which is equal to first seven characters of select-options then it will useful for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First take all values of selection screen given by the user in to one internal table.&lt;/P&gt;&lt;P&gt;And take all values of first seven characters into another internal table .&lt;/P&gt;&lt;P&gt;In select statement take the forall entries of the second internal table and in where condition check the vales.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 05:01:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643981#M608879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T05:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: validating the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643982#M608880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI ,&lt;/P&gt;&lt;P&gt;    i want to validate the first seven character of the feild azidt not the first seven character of the select option .&lt;/P&gt;&lt;P&gt;KIndly help.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;jaga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 05:03:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643982#M608880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T05:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: validating the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643983#M608881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI shyla , &lt;/P&gt;&lt;P&gt;can you explain with the code &lt;/P&gt;&lt;P&gt;my table is febko and select option is s_azdit and field is azidt .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;jaga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 05:06:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643983#M608881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T05:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: validating the field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643984#M608882</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 think you need to use FOR ALL ENTRIES and check the value agisnt LOW and HIGH of select options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since you want to compare only first 7 char of a table field may be you have to do it after getting the data from the table into an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 05:12:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validating-the-field/m-p/2643984#M608882</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-08-23T05:12:54Z</dc:date>
    </item>
  </channel>
</rss>

