<?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: problem with pop-up window in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-pop-up-window/m-p/1926380#M384320</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;im not getting u my code is like this,whenever  we press the release button the pop-window has to be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'release'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'POPUP_WITH_TABLE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      endpos_col   = 5&lt;/P&gt;&lt;P&gt;      endpos_row   = 10&lt;/P&gt;&lt;P&gt;      startpos_col = 2&lt;/P&gt;&lt;P&gt;      startpos_row = 1&lt;/P&gt;&lt;P&gt;      titletext    = 'TEST'&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      valuetab     = itab&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      break_off    = 1&lt;/P&gt;&lt;P&gt;      OTHERS       = 2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Feb 2007 06:03:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-15T06:03:25Z</dc:date>
    <item>
      <title>problem with pop-up window</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-pop-up-window/m-p/1926378#M384318</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;i caught up with one issue while using Function-Module POPUP_WITH_TABLE,with this Func-module im able to display all the entries in the pop-up,but if i press the continue button with out selecting any item in the window ,that window does not getting closed.What should i have to do for closing that window even if i press the continue button without selecting any entry of pop-up window.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Asmitha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Feb 2007 14:07:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-pop-up-window/m-p/1926378#M384318</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-14T14:07:12Z</dc:date>
    </item>
    <item>
      <title>Re: problem with pop-up window</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-pop-up-window/m-p/1926379#M384319</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 think you have writen in wrong event, when you press the continue button it should close the popup .. see your once again, still you have problem then paste your code here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_date.

  CHECK NOT lwa_date[] IS INITIAL.
  CALL FUNCTION 'POPUP_WITH_TABLE'
    EXPORTING
      endpos_col   = 5
      endpos_row   = 10
      startpos_col = 2
      startpos_row = 1
      titletext    = 'DATE'
    IMPORTING
      choice       = lwa_date
    TABLES
      valuetab     = lwa_date
    EXCEPTIONS
      break_off    = 1
      OTHERS       = 2.
  p_date = lwa_date-lv_d.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Feb 2007 14:13:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-pop-up-window/m-p/1926379#M384319</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-14T14:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: problem with pop-up window</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-pop-up-window/m-p/1926380#M384320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;im not getting u my code is like this,whenever  we press the release button the pop-window has to be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'release'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'POPUP_WITH_TABLE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      endpos_col   = 5&lt;/P&gt;&lt;P&gt;      endpos_row   = 10&lt;/P&gt;&lt;P&gt;      startpos_col = 2&lt;/P&gt;&lt;P&gt;      startpos_row = 1&lt;/P&gt;&lt;P&gt;      titletext    = 'TEST'&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      valuetab     = itab&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      break_off    = 1&lt;/P&gt;&lt;P&gt;      OTHERS       = 2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2007 06:03:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-pop-up-window/m-p/1926380#M384320</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-15T06:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: problem with pop-up window</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-pop-up-window/m-p/1926381#M384321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey I got ur problem, u havenot captured the value that is getting chosen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CHOICE is the parameter that is holding the value.

Choice may have a value or Blank.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2007 06:11:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-pop-up-window/m-p/1926381#M384321</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-15T06:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: problem with pop-up window</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-pop-up-window/m-p/1926382#M384322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Ideally the continue button is pressed only after selection of data.If you do not want to select any data,then use of the Cancel button is made which comes by default in the pop-up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Beejal&lt;/P&gt;&lt;P&gt;**reward if this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2007 06:16:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-pop-up-window/m-p/1926382#M384322</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-15T06:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: problem with pop-up window</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-pop-up-window/m-p/1926383#M384323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you cant get that fn ality in POPUP_WITH_TABLE here you have to cross the window and uncomment the exception part for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this fm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : choice like sy-tabix.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                            CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY_OK'&lt;/P&gt;&lt;P&gt;                              EXPORTING&lt;/P&gt;&lt;P&gt;                                ENDPOS_COL         = 30&lt;/P&gt;&lt;P&gt;                                ENDPOS_ROW         = 30&lt;/P&gt;&lt;P&gt;                                STARTPOS_COL       = 5&lt;/P&gt;&lt;P&gt;                                STARTPOS_ROW       = 5&lt;/P&gt;&lt;P&gt;                                TITLETEXT          = 'chose3'&lt;/P&gt;&lt;P&gt;                             IMPORTING&lt;/P&gt;&lt;P&gt;                               CHOISE             = choice&lt;/P&gt;&lt;P&gt;                              TABLES&lt;/P&gt;&lt;P&gt;                                VALUETAB           = itab&lt;/P&gt;&lt;P&gt;                             EXCEPTIONS&lt;/P&gt;&lt;P&gt;                               BREAK_OFF          = 1&lt;/P&gt;&lt;P&gt;                               OTHERS             = 2&lt;/P&gt;&lt;P&gt;                                      .&lt;/P&gt;&lt;P&gt;                            IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2007 06:23:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-pop-up-window/m-p/1926383#M384323</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-15T06:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: problem with pop-up window</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-pop-up-window/m-p/1926384#M384324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont think there is any continue button for the pou up window that is displayin,there is only two buttons one is ok sysmbol and one is cancel symbol.&lt;/P&gt;&lt;P&gt;if you select the ok symbol by selecting one line than it ll take you to output ,otherwise you can cancel that window by selection the cancel button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you r not selecting any line in this than what is point of selecting ok button ,you can select the cancel button to comeout of that popup.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Feb 2007 06:29:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-pop-up-window/m-p/1926384#M384324</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-15T06:29:01Z</dc:date>
    </item>
  </channel>
</rss>

