<?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 message displayed after scrolling.. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-displayed-after-scrolling/m-p/6556547#M1430554</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 can keep a check at the validation for the OK_CODE/user command which is not equal to P+ and P++.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Jan 2010 09:20:02 GMT</pubDate>
    <dc:creator>vinod_vemuru2</dc:creator>
    <dc:date>2010-01-29T09:20:02Z</dc:date>
    <item>
      <title>Error message displayed after scrolling..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-displayed-after-scrolling/m-p/6556546#M1430553</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 need to do validation through modulepool..The table is designed using module pool,say table1 and another transparent say table2.I did coding for validation.suppose if entries in table1 exists in table2 then an error message should be displayed like 'ENTRIES ALREADY EXISTS IN TABLE2'.Now its working fine.Once this message is dispayed and again if user does scroll again this message is getting displayed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jan 2010 07:42:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-displayed-after-scrolling/m-p/6556546#M1430553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-29T07:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: Error message displayed after scrolling..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-displayed-after-scrolling/m-p/6556547#M1430554</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 can keep a check at the validation for the OK_CODE/user command which is not equal to P+ and P++.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jan 2010 09:20:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-displayed-after-scrolling/m-p/6556547#M1430554</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2010-01-29T09:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: Error message displayed after scrolling..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-displayed-after-scrolling/m-p/6556548#M1430555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to apply a check point on P+ and P++. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Manas M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jan 2010 09:24:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-displayed-after-scrolling/m-p/6556548#M1430555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-29T09:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: Error message displayed after scrolling..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-displayed-after-scrolling/m-p/6556549#M1430556</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;1. If you have coded Error message inside the User command validation (CASE &amp;amp; WHEN), Check whether you have cleared the OK_CODE or SY-UCOMM properly immediately after WHEN '----' statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. It is always better for your case, you validate the condition inside CHAIN -- ENDCHAIN as given below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Flow Logic page:

PROCESS AFTER INPUT.


LOOP AT itab.
CHAIN.
FIELD itab-fld1 MODULE mod1.
FIELD ......

ENDCHAIN.
ENDLOOP.

Code the module in PAI Include

MODULE mod1 INPUT.

&amp;lt; Code the condition and populate error message from here &amp;gt;

ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jan 2010 09:44:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-displayed-after-scrolling/m-p/6556549#M1430556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-29T09:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Error message displayed after scrolling..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-displayed-after-scrolling/m-p/6556550#M1430557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved.thank u.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2010 08:34:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-displayed-after-scrolling/m-p/6556550#M1430557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-01T08:34:54Z</dc:date>
    </item>
  </channel>
</rss>

