<?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 with error message that pop up in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-error-message-that-pop-up/m-p/4328563#M1031359</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Whether messages appear as a line at the bottom (Status line) or as a pop up is depending on the local user setting -&amp;gt; Customize local layout. And this means every individual user in you organization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to force a pop up, no matter what the user has set up here (most users and the standard setting is that only a message at the bottom appears) you should use a function module to produce a pop up.&lt;/P&gt;&lt;P&gt;Can't remember the name of such function module, but there are plenty of them, I think it's something like &lt;STRONG&gt;MESSAGE&lt;/STRONG&gt; or &lt;STRONG&gt;POP&lt;/STRONG&gt;UP*, have a look in SE37 yourself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Aug 2008 07:51:43 GMT</pubDate>
    <dc:creator>Ralf</dc:creator>
    <dc:date>2008-08-22T07:51:43Z</dc:date>
    <item>
      <title>Problem with error message that pop up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-error-message-that-pop-up/m-p/4328559#M1031355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message e000(otc) with v_curr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible that this message will pop up to the user?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Aug 2008 07:34:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-error-message-that-pop-up/m-p/4328559#M1031355</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-22T07:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with error message that pop up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-error-message-that-pop-up/m-p/4328560#M1031356</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;Pop-up comes only with Information message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can give Information message at AT-selection screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Aug 2008 07:36:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-error-message-that-pop-up/m-p/4328560#M1031356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-22T07:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with error message that pop up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-error-message-that-pop-up/m-p/4328561#M1031357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;use 'I' instead of 'E':&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* Message e000(otc) with v_curr.
Message i000(otc) with v_curr.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In SE38 / SE80 press F1 on MESSAGE and it will explain the usage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe you should try:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;message e000(otc) with v_curr DISPLAY LIKE 'I'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Aug 2008 07:40:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-error-message-that-pop-up/m-p/4328561#M1031357</guid>
      <dc:creator>ingo_barschow</dc:creator>
      <dc:date>2008-08-22T07:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with error message that pop up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-error-message-that-pop-up/m-p/4328562#M1031358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi aditya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But why am i having a pop up message for this code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there an explanation for this? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there anything that needs to set up for this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Aug 2008 07:41:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-error-message-that-pop-up/m-p/4328562#M1031358</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-22T07:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with error message that pop up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-error-message-that-pop-up/m-p/4328563#M1031359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Whether messages appear as a line at the bottom (Status line) or as a pop up is depending on the local user setting -&amp;gt; Customize local layout. And this means every individual user in you organization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to force a pop up, no matter what the user has set up here (most users and the standard setting is that only a message at the bottom appears) you should use a function module to produce a pop up.&lt;/P&gt;&lt;P&gt;Can't remember the name of such function module, but there are plenty of them, I think it's something like &lt;STRONG&gt;MESSAGE&lt;/STRONG&gt; or &lt;STRONG&gt;POP&lt;/STRONG&gt;UP*, have a look in SE37 yourself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Aug 2008 07:51:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-error-message-that-pop-up/m-p/4328563#M1031359</guid>
      <dc:creator>Ralf</dc:creator>
      <dc:date>2008-08-22T07:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with error message that pop up</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-error-message-that-pop-up/m-p/4328564#M1031360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Mark&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message i000(otc) with v_curr. it will give you a pop up&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~hitesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Aug 2008 08:00:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-error-message-that-pop-up/m-p/4328564#M1031360</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-22T08:00:25Z</dc:date>
    </item>
  </channel>
</rss>

