<?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: Problem in warning message. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385218#M1403804</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the code written after warning message is not executed. once i press enter , the whole program is executed once more and the execution stops at the same warning message&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Dec 2009 05:01:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-08T05:01:21Z</dc:date>
    <item>
      <title>Problem in warning message.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385206#M1403792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Hello,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       &lt;STRONG&gt;Is there any method to continue the program execution in PAI after displaying a warning message.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I will elaborate the sitution with an example below&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;loop at itab into wa_area.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if wa_area-fieldvalue is initial.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;MESSAGE ID 'ZMSG'  TYPE 'W' NUMBER 001.    " display warning message if fieldvalue is initial&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;endif.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;screen element = wa_area-fieldvalue.   " assigning field value into screen fields.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;endloop.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;the problem is after displaying warning message the execution is started again from top. It does not continue execution from the line where it displayed warning message.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Any pointers to overcome this problem????&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Dec 2009 05:22:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385206#M1403792</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-07T05:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in warning message.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385207#M1403793</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;Use SET CURSOR after displaying the warning message so that it remains at the same line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Dec 2009 05:28:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385207#M1403793</guid>
      <dc:creator>sridhar_meesala</dc:creator>
      <dc:date>2009-12-07T05:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in warning message.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385208#M1403794</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;try by using EXIT syntax  in the loop statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Dec 2009 05:37:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385208#M1403794</guid>
      <dc:creator>p604431</dc:creator>
      <dc:date>2009-12-07T05:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in warning message.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385209#M1403795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;hi Sri,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I think set cursor keyword is used to set the cursor on a particular screen element.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;will it be possible for the program execution as mentioned in my post????&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;thanks&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Dec 2009 05:40:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385209#M1403795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-07T05:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in warning message.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385210#M1403796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use information message(Type 'I')  instead .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Dec 2009 05:43:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385210#M1403796</guid>
      <dc:creator>former_member195383</dc:creator>
      <dc:date>2009-12-07T05:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in warning message.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385211#M1403797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Apologies.&lt;/P&gt;&lt;P&gt;I misunderstood your question. I thought you want the cursor to be placed in the field where you rise the warning message.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Dec 2009 05:43:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385211#M1403797</guid>
      <dc:creator>sridhar_meesala</dc:creator>
      <dc:date>2009-12-07T05:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in warning message.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385212#M1403798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ya right now i am using information message but it needs to be changed to warning message &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Dec 2009 05:46:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385212#M1403798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-07T05:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in warning message.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385213#M1403799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;but the exit statement wont be executed here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Dec 2009 05:56:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385213#M1403799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-07T05:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in warning message.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385214#M1403800</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;loop at itab into wa_area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if wa_area-fieldvalue is initial.&lt;/P&gt;&lt;P&gt;MESSAGE ID 'ZMSG' TYPE 'W' NUMBER 001. " display warning message if fieldvalue is initial&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;screen element = wa_area-fieldvalue. " assigning field value into screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this code if u want to run some code after the warning message then write it under the warning message , so that after the warning message if u press enter the code below the warning message gets executed .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Dec 2009 06:25:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385214#M1403800</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-07T06:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in warning message.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385215#M1403801</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 the error message type is not continue u r current loop so u can use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
message ' msg no ' type 'S' display like 'E'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think its work ...&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;Abhilash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Dec 2009 06:46:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385215#M1403801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-07T06:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in warning message.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385216#M1403802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Is wa_area-fieldvalue  is screen field. In case&lt;/P&gt;&lt;P&gt;Write your code in  Module -- Mod1 .. This should solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP Itab.. &lt;/P&gt;&lt;P&gt;FIELD &amp;lt;&amp;gt; MODULE &amp;lt;mod1&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Dec 2009 06:48:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385216#M1403802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-07T06:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in warning message.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385217#M1403803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use Success Message Display Like Warning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will work .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Dec 2009 07:11:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385217#M1403803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-07T07:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in warning message.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385218#M1403804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the code written after warning message is not executed. once i press enter , the whole program is executed once more and the execution stops at the same warning message&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 05:01:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385218#M1403804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-08T05:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in warning message.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385219#M1403805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I dont think there should be any restriction for using Information message as an warning to the user .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is not at all agreeable to use Information Message , then try to use Pop ups to show warning. This may solve your purpose.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Dec 2009 05:33:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-warning-message/m-p/6385219#M1403805</guid>
      <dc:creator>former_member195383</dc:creator>
      <dc:date>2009-12-08T05:33:00Z</dc:date>
    </item>
  </channel>
</rss>

