<?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: ALV Interactive in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-interactive/m-p/5956828#M1337006</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Santosh Do like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program      = sy-repid
        i_callback_top_of_page  = 'TOPOFPAGE'
        I_CALLBACK_USER_COMMAND = 'PICK'
        i_grid_title            = 'MIS Tender Report'
        is_layout               = i_settings
        i_save                  = 'X'
        it_fieldcat             = i_fieldcat
      TABLES
        t_outtab                = it_data.


FORM PICK USING COMMAND LIKE SY-UCOMM
SELFIELD TYPE SLIS_SELFIELD.
  clear: i_fieldcat1, iSD_TEN_ITM_bd, iSD_TEN_ITM_bd[].
  READ TABLE it_data INTO wa_data INDEX SELFIELD-TABINDEX.

  CASE COMMAND.
    WHEN '&amp;amp;IC1'.

 call function 'POPUP_TO_CONFIRM'
      EXPORTING
        titlebar       = 'Create a New Record'
        text_question  = 'Choose Any One'
        text_button_1  = 'Price variance report'(009)
        text_button_2  = 'Variable variance report'(010)
        default_button = '1'
      IMPORTING
        answer         = answer.
endcase.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Aug 2009 11:51:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-17T11:51:42Z</dc:date>
    <item>
      <title>ALV Interactive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-interactive/m-p/5956825#M1337003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guis,&lt;/P&gt;&lt;P&gt;I am working on interactive ALV.Afer selecting PO No i have to display one popup on the screen. on that i have to be  two options one is Price variance report and second Variable variance report.Please any body give suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 11:39:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-interactive/m-p/5956825#M1337003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-17T11:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Interactive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-interactive/m-p/5956826#M1337004</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;    Where you are handling your user_command after the user clicks on the PO you can call Fm: POPUP_TO_CONFIRM and give the button names as you want in order to see how to handle uinteractive you can search SCN there are already a lot of threads about the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reagrds,&lt;/P&gt;&lt;P&gt;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 11:43:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-interactive/m-p/5956826#M1337004</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-17T11:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Interactive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-interactive/m-p/5956827#M1337005</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;create a screen with two radiobuttons (Price variance report and second Variable variance report).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the application tool bar of initial alv, have a button Display..when the user clicks on it call the screen having two radio-buttons and then in the PAI of the screen ..Write the logic and display the report ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 11:45:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-interactive/m-p/5956827#M1337005</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2009-08-17T11:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Interactive</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-interactive/m-p/5956828#M1337006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Santosh Do like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call function 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program      = sy-repid
        i_callback_top_of_page  = 'TOPOFPAGE'
        I_CALLBACK_USER_COMMAND = 'PICK'
        i_grid_title            = 'MIS Tender Report'
        is_layout               = i_settings
        i_save                  = 'X'
        it_fieldcat             = i_fieldcat
      TABLES
        t_outtab                = it_data.


FORM PICK USING COMMAND LIKE SY-UCOMM
SELFIELD TYPE SLIS_SELFIELD.
  clear: i_fieldcat1, iSD_TEN_ITM_bd, iSD_TEN_ITM_bd[].
  READ TABLE it_data INTO wa_data INDEX SELFIELD-TABINDEX.

  CASE COMMAND.
    WHEN '&amp;amp;IC1'.

 call function 'POPUP_TO_CONFIRM'
      EXPORTING
        titlebar       = 'Create a New Record'
        text_question  = 'Choose Any One'
        text_button_1  = 'Price variance report'(009)
        text_button_2  = 'Variable variance report'(010)
        default_button = '1'
      IMPORTING
        answer         = answer.
endcase.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 11:51:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-interactive/m-p/5956828#M1337006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-17T11:51:42Z</dc:date>
    </item>
  </channel>
</rss>

