<?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: error msg in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-msg/m-p/2702403#M625868</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please code the logic in event AT SELECTION-SCREEN and perform the validations based on your need...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Aug 2007 08:09:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-27T08:09:58Z</dc:date>
    <item>
      <title>error msg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-msg/m-p/2702402#M625867</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 have 7 fields in selection screen...&lt;/P&gt;&lt;P&gt;after entering the values in 6 fields whan we press Update button have to get error message...how to do it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 08:07:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-msg/m-p/2702402#M625867</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T08:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: error msg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-msg/m-p/2702403#M625868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please code the logic in event AT SELECTION-SCREEN and perform the validations based on your need...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 08:09:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-msg/m-p/2702403#M625868</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T08:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: error msg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-msg/m-p/2702404#M625869</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;IF P_FIELD7 is initial and sy-ucomm = 'UPDATE'.&lt;/P&gt;&lt;P&gt;MESSAGE 'Please enter field 7 !' type 'E'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 08:11:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-msg/m-p/2702404#M625869</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T08:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: error msg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-msg/m-p/2702405#M625870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Balu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;IF P_FIELD7 is initial.&lt;/P&gt;&lt;P&gt;case sy-ucomm &lt;/P&gt;&lt;P&gt;when 'UPDATE'.&lt;/P&gt;&lt;P&gt;MESSAGE 'enter value of 7th field' type 'E'.&lt;/P&gt;&lt;P&gt;endcase.&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;reward points to all helpful answers &lt;/P&gt;&lt;P&gt;kiran.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 08:18:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-msg/m-p/2702405#M625870</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T08:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: error msg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-msg/m-p/2702406#M625871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON [FIELD] UPDATE.&lt;/P&gt;&lt;P&gt;if p_field is initial.&lt;/P&gt;&lt;P&gt;  message 'U HAVE TO FILL ALL FIELDS' TYPE 'E'.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;   message '1 RECORD UPDATED' TYPE 'S'.&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;or u can same validation in AT SELECTION-SCREEN event also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if useful 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>Mon, 27 Aug 2007 09:00:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-msg/m-p/2702406#M625871</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T09:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: error msg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-msg/m-p/2702407#M625872</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;WHAT EVER ACTION U DO ON THE SELECTION SCREEN &lt;/P&gt;&lt;P&gt;THAT MUST BE DONE UNDER EVENT AT SELECTION-SCREEN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THE SCREEN VALIDATION TO BE DONE ON AT SELECTION-SCREEN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE WHAT EVER CONDITION U WANT UNDER AT SELECTION-SCREEN &lt;/P&gt;&lt;P&gt;IF THAT SY-SUBRC EQ 0 THEN WRITE MESSAGE E WITH ' ERROR'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THATS ALL&lt;/P&gt;&lt;P&gt;REWARD IF USEFULL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 09:14:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-msg/m-p/2702407#M625872</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T09:14:08Z</dc:date>
    </item>
    <item>
      <title>Re: error msg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-msg/m-p/2702408#M625873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI KIRAN,&lt;/P&gt;&lt;P&gt;Tanq ...&lt;/P&gt;&lt;P&gt;not only 7 th field if we are not entered the value for any field or fields ...when we click on Update button should get error message.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2007 09:27:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-msg/m-p/2702408#M625873</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-27T09:27:44Z</dc:date>
    </item>
  </channel>
</rss>

