<?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: Selection-screen value check in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666712#M295080</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;at selection-screen.&lt;/P&gt;&lt;P&gt; check by writing a select statement to check whether it exists or not.&lt;/P&gt;&lt;P&gt;if exists....&lt;/P&gt;&lt;P&gt;  do further processing&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt; come out...&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Nov 2006 13:29:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-27T13:29:51Z</dc:date>
    <item>
      <title>Selection-screen value check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666706#M295074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, there is a selection-screen. How can I check on the selection-screem that the asset transaction type which I typed in is whether existing to a given asset? I would like to display an informational message on the status bar about it if doesn't exist.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 13:21:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666706#M295074</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T13:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-screen value check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666707#M295075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;AT SELECTION_SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select single asset into variable from dbtab where asset EQ selection-value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;do processing.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;Message.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sands&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 13:23:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666707#M295075</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2006-11-27T13:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-screen value check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666708#M295076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON &amp;lt;ASSET FIELD&amp;gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE ASSETNO FROM &amp;lt;TABLE&amp;gt; WHERE ASSETNO = ASSET FIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;MESSAGE E01(ZMB)&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cREATE ONE MESSAGE CLASS ZMB WITH A MESSAGE NUMBER 01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regs&lt;/P&gt;&lt;P&gt;Manas Ranjan Panda&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 13:26:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666708#M295076</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T13:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-screen value check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666709#M295077</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 asset into v_assest from dbtab where asset  = s_asset value.&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 e001 ' enter valid asset number'.&lt;/P&gt;&lt;P&gt;endif.&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>Mon, 27 Nov 2006 13:27:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666709#M295077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T13:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-screen value check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666710#M295078</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;After your selection screen, use..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON fieldname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write relevent select statements under this to check if the entries exist,&lt;/P&gt;&lt;P&gt;display message where applicable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 13:27:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666710#M295078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T13:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-screen value check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666711#M295079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;at selection-screen.&lt;/P&gt;&lt;P&gt; check by writing a select statement to check whether it exists or not.&lt;/P&gt;&lt;P&gt;if exists....&lt;/P&gt;&lt;P&gt;  do further processing&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt; come out...&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 13:28:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666711#M295079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T13:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-screen value check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666712#M295080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;at selection-screen.&lt;/P&gt;&lt;P&gt; check by writing a select statement to check whether it exists or not.&lt;/P&gt;&lt;P&gt;if exists....&lt;/P&gt;&lt;P&gt;  do further processing&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt; come out...&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 13:29:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666712#M295080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T13:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-screen value check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666713#M295081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lot of thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 13:36:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666713#M295081</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T13:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-screen value check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666714#M295082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I check more than 1 field at selection-screen?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 14:16:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666714#M295082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T14:16:23Z</dc:date>
    </item>
    <item>
      <title>Re: Selection-screen value check</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666715#M295083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;If u want to check for every field individually&lt;/P&gt;&lt;P&gt;then use&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;AT SELECTION-SCREEN ON &amp;lt;FIELD NAME&amp;gt;&amp;lt;/b&amp;gt; THEN CODE HERE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF U WANT TO CHECK FOR EVERY FIELD AT ONCE THEN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;AT SELECTION-SCREEN&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;CHECK HERE FOR EVERY FIELDS ONE BY ONE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If un want to chk for a selection screen block&lt;/P&gt;&lt;P&gt;then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON BLOCK &amp;lt;block name&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then code here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regs&lt;/P&gt;&lt;P&gt;Manas Ranjan Panda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 14:32:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-value-check/m-p/1666715#M295083</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T14:32:06Z</dc:date>
    </item>
  </channel>
</rss>

