<?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: custom dialog box in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-dialog-box/m-p/975027#M70640</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the 3 button can satify you, that will be ok.&lt;/P&gt;&lt;P&gt;But if not, there is a way definitely left for you, create a custom screen as 'modal dialgue box'. then you can add the button as much as you like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will be helpful&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Aug 2005 15:17:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-08-24T15:17:36Z</dc:date>
    <item>
      <title>custom dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-dialog-box/m-p/975024#M70637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Is there a way to display a popup with 3 or 4 push buttons with custom text on it? The FM popup_to_confirm allows for 2 push buttons with custom text.&lt;/P&gt;&lt;P&gt;your help would be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;ravi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2005 14:51:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-dialog-box/m-p/975024#M70637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-24T14:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: custom dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-dialog-box/m-p/975025#M70638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I found this FM 'POPUP_WITH_3_BUTTONS_TO_CHOOSE'. Test it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Svetlin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S. If you find an answer useful, please assign reward points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2005 14:57:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-dialog-box/m-p/975025#M70638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-24T14:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: custom dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-dialog-box/m-p/975026#M70639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Svetlin is right. pop_up_with_3_bottons_to_choose is the function module for you. I have used it in one of my work. Here is the sample code for it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'POPUP_WITH_3_BUTTONS_TO_CHOOSE'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            DIAGNOSETEXT1 = 'CHOOSE'&lt;/P&gt;&lt;P&gt;            DIAGNOSETEXT2 = 'OR'&lt;/P&gt;&lt;P&gt;            TEXTLINE1     = 'PRESS CANCEL'&lt;/P&gt;&lt;P&gt;            TEXT_OPTION1  = '1: STUDENT TABLE'&lt;/P&gt;&lt;P&gt;            TEXT_OPTION2  = '2: COURSE TABLE'&lt;/P&gt;&lt;P&gt;            TEXT_OPTION3  = '3: TEACHER TABLE'&lt;/P&gt;&lt;P&gt;            TITEL         = 'to maintain the database'&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            ANSWER        = ans.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE E012.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if ans = '1'.&lt;/P&gt;&lt;P&gt;    CALL TRANSACTION 'ZAJ_STU1'.       "to maintain&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    if ans = '2'.&lt;/P&gt;&lt;P&gt;      CALL TRANSACTION 'ZAJ_STU2'.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;      if ans = '3'.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION 'ZAJ_STU3'.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ashish Jain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2005 15:06:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-dialog-box/m-p/975026#M70639</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-24T15:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: custom dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/custom-dialog-box/m-p/975027#M70640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the 3 button can satify you, that will be ok.&lt;/P&gt;&lt;P&gt;But if not, there is a way definitely left for you, create a custom screen as 'modal dialgue box'. then you can add the button as much as you like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will be helpful&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2005 15:17:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/custom-dialog-box/m-p/975027#M70640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-24T15:17:36Z</dc:date>
    </item>
  </channel>
</rss>

