<?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 pop-up in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-pop-up/m-p/1497850#M230940</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Zhu,&lt;/P&gt;&lt;P&gt; Use FM &amp;lt;b&amp;gt;POPUP_DISPLAY_MESSAGE&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'POPUP_DISPLAY_MESSAGE'
  exporting
    msgid = 'RP'
    msgty = 'S'
    msgno = '016'
    msgv1 = 'TEST'
    msgv2 = 'MESSAGE'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Jul 2006 16:08:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-26T16:08:29Z</dc:date>
    <item>
      <title>error message pop-up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-pop-up/m-p/1497847#M230937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;In the program that I am writing now, I intend to have all the error message appear in a pop-up on the screen with the green tick. However, if I do, for example,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MESSAGE e161(q6) WITH wa_defn-fieldname 'System'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The only thing that appearred was the message at the bottom of the scrren (status bar) and the message disappeared within seconds.&lt;/P&gt;&lt;P&gt;May I know how can I get the effect I want in ABAP, I am running on WAS 6.40 with ABAP R/3?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anyi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2006 15:27:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-pop-up/m-p/1497847#M230937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-26T15:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: error message pop-up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-pop-up/m-p/1497848#M230938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi anyi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use the fm POPUP_DISPLAY_MESSAGE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps,&lt;/P&gt;&lt;P&gt;do reward if it helps,&lt;/P&gt;&lt;P&gt;priya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2006 15:33:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-pop-up/m-p/1497848#M230938</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-26T15:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: error message pop-up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-pop-up/m-p/1497849#M230939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.


parameters: p_check.


at selection-screen.

  if p_check is initial.

    call function 'POPUP_DISPLAY_MESSAGE'
      exporting
        titel         = 'Error Message'
        msgid         = 'Q6'
        msgty         = 'E'
        msgno         = '161'
        msgv1         = 'This'
        msgv2         = 'That'
*   MSGV3         =
*   MSGV4         =
              .



  endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2006 15:42:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-pop-up/m-p/1497849#M230939</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-26T15:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: error message pop-up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-pop-up/m-p/1497850#M230940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Zhu,&lt;/P&gt;&lt;P&gt; Use FM &amp;lt;b&amp;gt;POPUP_DISPLAY_MESSAGE&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'POPUP_DISPLAY_MESSAGE'
  exporting
    msgid = 'RP'
    msgty = 'S'
    msgno = '016'
    msgv1 = 'TEST'
    msgv2 = 'MESSAGE'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2006 16:08:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-message-pop-up/m-p/1497850#M230940</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-26T16:08:29Z</dc:date>
    </item>
  </channel>
</rss>

