<?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 required in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation-required/m-p/2124920#M445976</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 combination of all fileds by hitting only once. if u want to validate the existence of each and every field u have to hit one time for each field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so depending on your requirement u can code your program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Apr 2007 07:23:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-18T07:23:01Z</dc:date>
    <item>
      <title>validation required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation-required/m-p/2124917#M445973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT-OPTIONS:s_datbg FOR vttk-datbg OBLIGATORY .&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:s_tplst FOR vttk-tplst OBLIGATORY .&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:s_route FOR vttk-route.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:s_tdlnr FOR vttk-tdlnr.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:s_shtyp FOR vttk-shtyp.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:s_vsart FOR vttk-vsart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to validate all the above fields in at selection-screen event but i want to hit the vttk table only once is there any way of doing it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2007 07:16:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation-required/m-p/2124917#M445973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-18T07:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: validation required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation-required/m-p/2124918#M445974</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;that depends on your requirement..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;select *&lt;/P&gt;&lt;P&gt; from vttk&lt;/P&gt;&lt;P&gt;into wa_vttk&lt;/P&gt;&lt;P&gt;up to 1 rows&lt;/P&gt;&lt;P&gt;where datbg in s_datbg and&lt;/P&gt;&lt;P&gt;tplst in s_tplst and&lt;/P&gt;&lt;P&gt;route in s_route and&lt;/P&gt;&lt;P&gt;tdlnr in s_tdlnr and&lt;/P&gt;&lt;P&gt;shtyp in s_shtyp and&lt;/P&gt;&lt;P&gt;vsart in s_vsart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;message 'Data not found' type 'E'.&lt;/P&gt;&lt;P&gt;endif.&amp;lt;/b&amp;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;regards,&lt;/P&gt;&lt;P&gt;sai ramesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2007 07:18:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation-required/m-p/2124918#M445974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-18T07:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: validation required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation-required/m-p/2124919#M445975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; Simiarly do it for other fields too.&lt;/P&gt;&lt;P&gt;tables : vttk.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;at selection-screen.

select single * from vttk into vttk where datbg in s_datbg.
if sy-subrc &amp;lt;&amp;gt; 0.
 message e100 ...
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2007 07:20:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation-required/m-p/2124919#M445975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-18T07:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: validation required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation-required/m-p/2124920#M445976</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 combination of all fileds by hitting only once. if u want to validate the existence of each and every field u have to hit one time for each field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so depending on your requirement u can code your program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2007 07:23:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation-required/m-p/2124920#M445976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-18T07:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: validation required</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/validation-required/m-p/2124921#M445977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ur answers doesnt help me because i need to validate and check for field existence, so if i use select st for each and every field then peroformance issue occcurs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2007 07:37:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/validation-required/m-p/2124921#M445977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-18T07:37:05Z</dc:date>
    </item>
  </channel>
</rss>

