<?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: msgbox in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/msgbox/m-p/1293203#M156101</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 the MESSAGE statement with I message type and that will display a dialog box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else, you will have to use the functions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POPUP_WITH_WARNING&lt;/P&gt;&lt;P&gt;POPUP_WITH_WARNING_ALV&lt;/P&gt;&lt;P&gt;POPUP_TO_CONFIRM_WITH_MESSAGE&lt;/P&gt;&lt;P&gt;POPUP_TO_CONFIRM_WITH_VALUE&lt;/P&gt;&lt;P&gt;POPUP_TO_CONFIRM_WITH_VALUE_2&lt;/P&gt;&lt;P&gt;POPUP_TO_DECIDE_WITH_MESSAGE&lt;/P&gt;&lt;P&gt;POPUP_DISPLAY_TEXT_WITH_PARAMS&lt;/P&gt;&lt;P&gt;POPUP_WITH_TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use according to your requirement, in fact there are more popu up functions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 May 2006 10:28:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-08T10:28:04Z</dc:date>
    <item>
      <title>msgbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/msgbox/m-p/1293199#M156097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, how can i code a messagebox in ABAP similar to "msgbox" of VB6 with yes/no buttons? is it possible?&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 10:22:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/msgbox/m-p/1293199#M156097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-08T10:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: msgbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/msgbox/m-p/1293200#M156098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't now how is it in VB,&lt;/P&gt;&lt;P&gt; but going by your description,&lt;/P&gt;&lt;P&gt; you can use POPUP_TO_CONFIRM FM.&lt;/P&gt;&lt;P&gt;Here is the usage:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;&amp;lt;b&amp;gt; The following call example uses the full functionality of               &lt;/P&gt;&lt;P&gt; POPUP_TO_CONFIRM :                                                                                &lt;/P&gt;&lt;P&gt;call function 'POPUP_TO_CONFIRM'                                        &lt;/P&gt;&lt;P&gt;      exporting                                                          &lt;/P&gt;&lt;P&gt;           titel               = 'Title for POPUP_TO_CONFIRM'(A01)       &lt;/P&gt;&lt;P&gt;           diagnose_object     = 'TEXT1_ZUM_POPUP_TO_CONFIRM'            &lt;/P&gt;&lt;P&gt;           text_question       = 'Do you want to carry out this          &lt;/P&gt;&lt;P&gt;                                  fantastic test?'(A02)                  &lt;/P&gt;&lt;P&gt;           text_button_1       = 'Yes'(A03)                              &lt;/P&gt;&lt;P&gt;           ICON_BUTTON_1       = 'ICON_OKAY'                             &lt;/P&gt;&lt;P&gt;           text_button_2       = 'Cancel'(A04)                           &lt;/P&gt;&lt;P&gt;           ICON_BUTTON_2       = 'ICON_CANCEL'                           &lt;/P&gt;&lt;P&gt;           DEFAULT_BUTTON      = '1'                                     &lt;/P&gt;&lt;P&gt;           DISPLAY_CANCEL      = ''                                      &lt;/P&gt;&lt;P&gt;           userdefined_f1_help = 'TEST_TEXT_ZUR_SPO1'                    &lt;/P&gt;&lt;P&gt;           START_COLUMN        = 25                                      &lt;/P&gt;&lt;P&gt;           START_ROW           = 6                                       &lt;/P&gt;&lt;P&gt;      importing                                                          &lt;/P&gt;&lt;P&gt;           answer              = answer                                  &lt;/P&gt;&lt;P&gt;      exception                                                          &lt;/P&gt;&lt;P&gt;           TEXT_NOT_FOUND      = 1                                                                                &lt;/P&gt;&lt;P&gt;others              = 2.                                     &amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 10:24:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/msgbox/m-p/1293200#M156098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-08T10:24:55Z</dc:date>
    </item>
    <item>
      <title>Re: msgbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/msgbox/m-p/1293201#M156099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use this FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POPUP_TO_DECIDE_INFO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 10:25:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/msgbox/m-p/1293201#M156099</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-05-08T10:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: msgbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/msgbox/m-p/1293202#M156100</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;U can use FunctionModule &amp;lt;b&amp;gt; POPUP_TO_CONFIRM&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this u will get a popup and u will have a yes or no options in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to it u can code ur own logic if the user presses YES or NO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Simha.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Narasimha Rao Bandla&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 10:26:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/msgbox/m-p/1293202#M156100</guid>
      <dc:creator>Simha_</dc:creator>
      <dc:date>2006-05-08T10:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: msgbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/msgbox/m-p/1293203#M156101</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 the MESSAGE statement with I message type and that will display a dialog box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else, you will have to use the functions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POPUP_WITH_WARNING&lt;/P&gt;&lt;P&gt;POPUP_WITH_WARNING_ALV&lt;/P&gt;&lt;P&gt;POPUP_TO_CONFIRM_WITH_MESSAGE&lt;/P&gt;&lt;P&gt;POPUP_TO_CONFIRM_WITH_VALUE&lt;/P&gt;&lt;P&gt;POPUP_TO_CONFIRM_WITH_VALUE_2&lt;/P&gt;&lt;P&gt;POPUP_TO_DECIDE_WITH_MESSAGE&lt;/P&gt;&lt;P&gt;POPUP_DISPLAY_TEXT_WITH_PARAMS&lt;/P&gt;&lt;P&gt;POPUP_WITH_TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use according to your requirement, in fact there are more popu up functions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 10:28:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/msgbox/m-p/1293203#M156101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-08T10:28:04Z</dc:date>
    </item>
    <item>
      <title>Re: msgbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/msgbox/m-p/1293204#M156102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use &amp;lt;b&amp;gt;POPUP_TO_CONFIRM_STEP&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Abdul&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark all useful answers......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 10:28:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/msgbox/m-p/1293204#M156102</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-05-08T10:28:39Z</dc:date>
    </item>
  </channel>
</rss>

