<?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 ALV POPUP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-popup/m-p/1172010#M123359</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;I have developed a ALV report with a push button on the output of the list. Now when I push the button, I want to display  a popup into which I can enter some values and append them to the output of the ALV list. Can anyone please explain me how I can achieve this ? Actually this was a suggestion given by Saquib Khan in my previous query .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Feb 2006 21:23:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-27T21:23:21Z</dc:date>
    <item>
      <title>ALV POPUP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-popup/m-p/1172010#M123359</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;I have developed a ALV report with a push button on the output of the list. Now when I push the button, I want to display  a popup into which I can enter some values and append them to the output of the ALV list. Can anyone please explain me how I can achieve this ? Actually this was a suggestion given by Saquib Khan in my previous query .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2006 21:23:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-popup/m-p/1172010#M123359</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-27T21:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: ALV POPUP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-popup/m-p/1172011#M123360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you using GRID function or OO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case of using GRID function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you have defined a user interface at screen level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then You will write routine for the user interface:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM FRM_USER_COMMAND  USING R_UCOMM LIKE SY-UCOMM&lt;/P&gt;&lt;P&gt;                  RS_SELFIELD TYPE SLIS_SELFIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE R_UCOMM.&lt;/P&gt;&lt;P&gt;    WHEN  'SELECT'.&lt;/P&gt;&lt;P&gt;   PERFORM GET_data  USING RS_SELFIELD.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; ENDCASE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM GET_data  USING RS_SELFIELD.&lt;/P&gt;&lt;P&gt;  READ TABLE TAB_DATA INDEX RS_SELFIELD-TABINDEX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call POP -UP Function .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Example &lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'POPUP_CHECK_N'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        TITEL  = Z_TITLE&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        ANSWER = W_ANS&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        TEXT   = XZSEL.&lt;/P&gt;&lt;P&gt;    IF W_ANS =  'Y'.&lt;/P&gt;&lt;P&gt;*--add your logic  to change TAB_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; RS_SELFIELD-REFRESH = 'X'.    --This will refresh the ALV display with changed values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;Lanka&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2006 21:46:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-popup/m-p/1172011#M123360</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-27T21:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: ALV POPUP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-popup/m-p/1172012#M123361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When user clicks on button, call fm POPUP_TO_gET_ONE_VALUE.&lt;/P&gt;&lt;P&gt;USer will enter the value then populate your final itnernal table again with this new value and display new report.&lt;/P&gt;&lt;P&gt;Take care of BACK button while handling this. You may not want to go back to old version of report when user clicks BACK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample code for the fm&lt;/P&gt;&lt;P&gt;  call function 'POPUP_TO_GET_ONE_VALUE'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            textline1      = 'Enter Amount'&lt;/P&gt;&lt;P&gt;            titel          = 'Amount Entry'&lt;/P&gt;&lt;P&gt;            valuelength    = 20&lt;/P&gt;&lt;P&gt;       importing&lt;/P&gt;&lt;P&gt;            answer         = l_ans&lt;/P&gt;&lt;P&gt;            value1         = l_amt&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            titel_too_long = 1&lt;/P&gt;&lt;P&gt;            others         = 2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2006 21:48:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-popup/m-p/1172012#M123361</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-27T21:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: ALV POPUP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-popup/m-p/1172013#M123362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since you want to enter data on the screen, when the button is pressed:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  call screen 100 starting at  1  6
                  ending   at 80 10.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Define screen 100 as modal dialogue and process it. You'll have to add PBO and PAI logic to your report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2006 21:50:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-popup/m-p/1172013#M123362</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-27T21:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: ALV POPUP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-popup/m-p/1172014#M123363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did the same thing and my problem is solved. Thank you very much for the response Rob.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2006 21:53:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-popup/m-p/1172014#M123363</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-27T21:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: ALV POPUP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-popup/m-p/1172015#M123364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad to help - please close the thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2006 21:55:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-popup/m-p/1172015#M123364</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-27T21:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: ALV POPUP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-popup/m-p/1172016#M123365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also use FM "REUSE_ALV_POPUP_TO_SELECT" to display data as ALV POPUP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2006 21:58:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-popup/m-p/1172016#M123365</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-27T21:58:00Z</dc:date>
    </item>
  </channel>
</rss>

