<?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: pop up msg in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-msg/m-p/2581812#M590397</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    use FM POPUP_TO_CONFIRM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Jul 2007 08:46:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-26T08:46:50Z</dc:date>
    <item>
      <title>pop up msg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-msg/m-p/2581809#M590394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have a popup message with yes no button...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i click yes the bdc upload happens....so is there any method to show the upload progress in the popup message window itself....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or how to make the popup window disappear when yes is clicked.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2007 08:25:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-msg/m-p/2581809#M590394</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2007-07-26T08:25:03Z</dc:date>
    </item>
    <item>
      <title>Re: pop up msg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-msg/m-p/2581810#M590395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The YES/NO popup message can be displayed using the FM &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;POPUP_TO_CONFIRM&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    CALL FUNCTION 'POPUP_TO_CONFIRM'
      EXPORTING
*       TITLEBAR                    = ' '
*       DIAGNOSE_OBJECT             = ' '
        text_question               = 'Delete Permanently?'
*       TEXT_BUTTON_1               = 'Ja'(001)
*       ICON_BUTTON_1               = ' '
*       TEXT_BUTTON_2               = 'Nein'(002)
*       ICON_BUTTON_2               = ' '
*       DEFAULT_BUTTON              = '1'
       display_cancel_button       = ' '
*       USERDEFINED_F1_HELP         = ' '
*       START_COLUMN                = 25
*       START_ROW                   = 6
*       POPUP_TYPE                  =
     IMPORTING
       answer                      = v_answer
*     TABLES
*       PARAMETER                   =
*     EXCEPTIONS
*       TEXT_NOT_FOUND              = 1
*       OTHERS                      = 2
              .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you can know if the user has pressed YES or NO by checking the variable &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;v_answer&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 - Yes&lt;/P&gt;&lt;P&gt;0 - No&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is a Cancel button, the value of the v_answer will be 'a'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once the user clicks on any of the button the popup window is closed automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bijesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2007 08:43:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-msg/m-p/2581810#M590395</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-26T08:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: pop up msg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-msg/m-p/2581811#M590396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The popup will disappear as soon as another dynpro is displayed, and as the process begin, this is not the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to use Function Module SAPGUI_PROGRESS_INDICATOR to display the clock indicating the % of the loading and a status text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look for a sample at &amp;lt;a href="http://www.sap-img.com/abap/download-to-excel-with-format-border-color-cell-etc.htm"&amp;gt;Download a report to excel with format (border, color cell, etc)&amp;lt;/a&amp;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>Thu, 26 Jul 2007 08:46:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-msg/m-p/2581811#M590396</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2007-07-26T08:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: pop up msg</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-msg/m-p/2581812#M590397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    use FM POPUP_TO_CONFIRM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2007 08:46:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pop-up-msg/m-p/2581812#M590397</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-26T08:46:50Z</dc:date>
    </item>
  </channel>
</rss>

