<?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: Function module for 'YES' or 'NO' popup in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-yes-or-no-popup/m-p/4073765#M974094</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;Check fm as POPUP_TO_CONFIRM*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Jul 2008 16:39:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-04T16:39:25Z</dc:date>
    <item>
      <title>Function module for 'YES' or 'NO' popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-yes-or-no-popup/m-p/4073764#M974093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any function module to ask a popup with 'YES' or 'NO' to execute a report program from selection screen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thansk in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 16:28:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-yes-or-no-popup/m-p/4073764#M974093</guid>
      <dc:creator>former_member853013</dc:creator>
      <dc:date>2008-07-04T16:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for 'YES' or 'NO' popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-yes-or-no-popup/m-p/4073765#M974094</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;Check fm as POPUP_TO_CONFIRM*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 16:39:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-yes-or-no-popup/m-p/4073765#M974094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-04T16:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for 'YES' or 'NO' popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-yes-or-no-popup/m-p/4073766#M974095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can use the follow, i attach an example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: msg2(100)     TYPE c,&lt;/P&gt;&lt;P&gt;      answ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;msg2 = '¿Are you sure to continue?'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_VALUE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    defaultoption  = ''&lt;/P&gt;&lt;P&gt;    objectvalue    = msg2&lt;/P&gt;&lt;P&gt;    text_after     = ''&lt;/P&gt;&lt;P&gt;    text_before    = ''&lt;/P&gt;&lt;P&gt;    titel          = 'Confirmation'&lt;/P&gt;&lt;P&gt;    start_column   = 25&lt;/P&gt;&lt;P&gt;    start_row      = 6&lt;/P&gt;&lt;P&gt;    cancel_display = 'X'&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    answer         = answ&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    text_too_long  = 1&lt;/P&gt;&lt;P&gt;    OTHERS         = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF answ NE 'J'.&lt;/P&gt;&lt;P&gt;    MESSAGE E101(ZX) WITH ''.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    SUBMIT ....&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 20:41:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-yes-or-no-popup/m-p/4073766#M974095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-04T20:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: Function module for 'YES' or 'NO' popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-yes-or-no-popup/m-p/4073767#M974096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eswar K,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do not use &lt;STRONG&gt;POPUP_TO_CONFIRM_WITH_VALUE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of it use  &lt;STRONG&gt;POPUP_TO_CONFIRM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;because 'POPUP_TO_CONFIRM_WITH_VALUE' is &lt;STRONG&gt;obsolete&lt;/STRONG&gt; FM ... Check it up the attributes of the FM u can see the short text there &lt;STRONG&gt;Do not use! Please use POPUP_TO_CONFIRM.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also have a look on below thread..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="5132210"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope it will solve your problem..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;ilesh 24x7&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jul 2008 05:45:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-for-yes-or-no-popup/m-p/4073767#M974096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-05T05:45:56Z</dc:date>
    </item>
  </channel>
</rss>

