<?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 Text popup in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-popup/m-p/2987897#M705610</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;My requirement is to display a popup with a text area in editable mode, 'Confirm' and 'Cancel' button. If the user changes the text, and presses the 'CONFIRM' the text is to be saved in DB.&lt;/P&gt;&lt;P&gt;How do i implement this? Should i use a FM or modal dialog box?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Nov 2007 15:26:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-01T15:26:35Z</dc:date>
    <item>
      <title>Text popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-popup/m-p/2987897#M705610</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;My requirement is to display a popup with a text area in editable mode, 'Confirm' and 'Cancel' button. If the user changes the text, and presses the 'CONFIRM' the text is to be saved in DB.&lt;/P&gt;&lt;P&gt;How do i implement this? Should i use a FM or modal dialog box?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2007 15:26:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-popup/m-p/2987897#M705610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-01T15:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: Text popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-popup/m-p/2987898#M705611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION 'POPUP_TO_CONFIRM'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      TITLEBAR                    = l_title&lt;/P&gt;&lt;P&gt;      text_question               = l_message&lt;/P&gt;&lt;P&gt;      TEXT_BUTTON_1               = 'Confirm'&lt;/P&gt;&lt;P&gt;      DEFAULT_BUTTON              = '1'&lt;/P&gt;&lt;P&gt;      DISPLAY_CANCEL_BUTTON       = 'X'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      ANSWER                      = l_answer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Case l_answer&lt;/P&gt;&lt;P&gt;  when 1.  " Confirm &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    use SAVE_TEXT to save your text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  when 'A'. " Cancle&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2007 15:49:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-popup/m-p/2987898#M705611</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-11-01T15:49:49Z</dc:date>
    </item>
    <item>
      <title>Re: Text popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-popup/m-p/2987899#M705612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Naimesh,&lt;/P&gt;&lt;P&gt;The popup is to contain a text area/control too in which the user can edit the text... The confirm popup wont work here.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2007 16:35:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-popup/m-p/2987899#M705612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-01T16:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: Text popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/text-popup/m-p/2987900#M705613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd build the popup dialog dynpro inside a function module so that you can use it from other places... of course where / if you store it depends on on your need - I'd actually suggest building the function module to just return the edited text to the calling program, and then allow the caller to decide where and when to persist it (e.g. so it can synchronise the text save with other database writes)... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want an example bit of code to look at try function SGOS_NOTE_CREATE_DIALOG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2007 01:37:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/text-popup/m-p/2987900#M705613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-02T01:37:04Z</dc:date>
    </item>
  </channel>
</rss>

