<?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 list problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223048#M137059</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The solution which u have provided to me is not working. Some thing might me wrong. Can you please explain it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Mar 2006 11:39:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-30T11:39:37Z</dc:date>
    <item>
      <title>ALV list problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223045#M137056</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;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1433924"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;this query is the extension of the above link.&lt;/P&gt;&lt;P&gt;After dispalying the window as a dailog box,if the user clicks on the other line then the table must refersh and display all line items that corresponds to the clicked line. her i have used the 'RESUE_ALV_LIST_DISPALY' to display the output and i set the parametres like 'line no column' etc to dispaly as a dailog box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirment is after double click on another line automaticaly the dailog box must refresh and it has to display  all line items which correspond the line which i have clicked it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you understood my problem and also i guess there might be another function module to behave like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2006 10:51:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223045#M137056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-30T10:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: ALV list problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223046#M137057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi lisa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. automaticaly the dailog box must refresh &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For that in the call back form,&lt;/P&gt;&lt;P&gt;we have to use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;slis_selfield-REFRESH = 'X'.&lt;/P&gt;&lt;P&gt;and then we should&lt;/P&gt;&lt;P&gt;again show another alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. just copy paste to get a taste  of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT abc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS : slis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------" /&gt;&lt;P&gt; Data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF itab OCCURS 0.&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE t001.&lt;/P&gt;&lt;P&gt;DATA : END OF itab.&lt;/P&gt;&lt;P&gt;DATA : alvfc TYPE slis_t_fieldcat_alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt; Select Data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM t001 INTO TABLE itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*------- Field Catalogue&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;i_program_name = sy-repid&lt;/P&gt;&lt;P&gt;i_internal_tabname = 'ITAB'&lt;/P&gt;&lt;P&gt;i_inclname = sy-repid&lt;/P&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;ct_fieldcat = alvfc&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;inconsistent_interface = 1&lt;/P&gt;&lt;P&gt;program_error = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------" /&gt;&lt;P&gt;Display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;it_fieldcat = alvfc&lt;/P&gt;&lt;P&gt;i_callback_program = sy-repid "&amp;lt;-------Important&lt;/P&gt;&lt;P&gt;i_callback_user_command = 'ITAB_USER_COMMAND' "&amp;lt;------ Important&lt;/P&gt;&lt;P&gt;I_SCREEN_START_COLUMN = 5&lt;/P&gt;&lt;P&gt;I_SCREEN_START_LINE = 5&lt;/P&gt;&lt;P&gt;I_SCREEN_END_COLUMN = 75&lt;/P&gt;&lt;P&gt;I_SCREEN_END_LINE  = 25&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;t_outtab = itab&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;program_error = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2.&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;HR originaltext="--------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CALL BACK FORM&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="--------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM itab_user_command USING whatcomm TYPE sy-ucomm whatrow TYPE&lt;/P&gt;&lt;P&gt;slis_selfield.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE itab INDEX whatrow-tabindex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;whatrow-refresh = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt; Select Data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM t001 INTO TABLE itab&lt;/P&gt;&lt;P&gt;where bukrs = itab-bukrs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*------- Field Catalogue&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;i_program_name = sy-repid&lt;/P&gt;&lt;P&gt;i_internal_tabname = 'ITAB'&lt;/P&gt;&lt;P&gt;i_inclname = sy-repid&lt;/P&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;ct_fieldcat = alvfc&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;inconsistent_interface = 1&lt;/P&gt;&lt;P&gt;program_error = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------" /&gt;&lt;P&gt;Display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;it_fieldcat = alvfc&lt;/P&gt;&lt;P&gt;i_callback_program = sy-repid "&amp;lt;-------Important&lt;/P&gt;&lt;P&gt;i_callback_user_command = 'ITAB_USER_COMMAND' "&amp;lt;------ Important&lt;/P&gt;&lt;P&gt;I_SCREEN_START_COLUMN = 5&lt;/P&gt;&lt;P&gt;I_SCREEN_START_LINE = 5&lt;/P&gt;&lt;P&gt;I_SCREEN_END_COLUMN = 75&lt;/P&gt;&lt;P&gt;I_SCREEN_END_LINE  = 25&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;t_outtab = itab&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;program_error = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2.&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;ENDFORM. "ITAB_user_command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2006 11:01:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223046#M137057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-30T11:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: ALV list problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223047#M137058</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;I think you should only refresh the output table you're moving to ALV for POPUP, so:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;every time you call ALV you should append only the records you have to display and after backing from popup you should clear the output table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2006 11:38:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223047#M137058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-30T11:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: ALV list problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223048#M137059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The solution which u have provided to me is not working. Some thing might me wrong. Can you please explain it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2006 11:39:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223048#M137059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-30T11:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: ALV list problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223049#M137060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi lisa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. what i understood is&lt;/P&gt;&lt;P&gt;   on double-clicking the 1st alv,&lt;/P&gt;&lt;P&gt;   2nd alv should come !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;2. for that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a) call back form u must have used&lt;/P&gt;&lt;P&gt;b) it would be somewhat like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM itab_user_command USING whatcomm TYPE sy-ucomm &amp;lt;b&amp;gt;whatrow TYPE&lt;/P&gt;&lt;P&gt;slis_selfield.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;READ TABLE itab INDEX whatrow-tabindex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM. "ITAB_user_command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;c) in that,&lt;/P&gt;&lt;P&gt;   we have to use&lt;/P&gt;&lt;P&gt;   whatrow-REFRESH  = 'X'.&lt;/P&gt;&lt;P&gt;  (so that same alv gets refreshed,)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;d) then in that same thing, &lt;/P&gt;&lt;P&gt;   we write code to show NEW alv.&lt;/P&gt;&lt;P&gt;  (it wont show in new window, bcos&lt;/P&gt;&lt;P&gt;  we have given REFRESH = 'X'.&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2006 11:44:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223049#M137060</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-30T11:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: ALV list problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223050#M137061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thats not a pop up actually,I am defining the size of the screen by using some parameters.Is there any function exists to dispaly as popup?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2006 11:45:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223050#M137061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-30T11:45:00Z</dc:date>
    </item>
    <item>
      <title>Re: ALV list problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223051#M137062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi lisa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. in the reuse_alv_list_display FM,&lt;/P&gt;&lt;P&gt;   we have to pass&lt;/P&gt;&lt;P&gt;I_SCREEN_START_COLUMN&lt;/P&gt;&lt;P&gt;I_SCREEN_START_LINE&lt;/P&gt;&lt;P&gt;I_SCREEN_END_COLUMN&lt;/P&gt;&lt;P&gt;I_SCREEN_END_LINE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so that it comes as POPUP.&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;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2006 11:47:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223051#M137062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-30T11:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: ALV list problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223052#M137063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mittel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have defined the same parameters thats why the window looks like pop-up.Even though i defined as what you said above its not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2006 11:50:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223052#M137063</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-30T11:50:38Z</dc:date>
    </item>
    <item>
      <title>Re: ALV list problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223053#M137064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mittel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem unable to refresh is! when the popup window is active the back ground window is inactive so even if i double click on it its not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2006 13:28:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223053#M137064</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-30T13:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: ALV list problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223054#M137065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. it seems i have not understood your question properly !&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2006 13:41:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223054#M137065</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-30T13:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: ALV list problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223055#M137066</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;Lisa, excuse me, but where are you doing the doubleclick?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your're selecting a line of popup window, you should implement the user_command for it to manage the doubleclick.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2006 13:43:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223055#M137066</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-30T13:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: ALV list problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223056#M137067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am clicking on the back ground window not on the popup window.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Mar 2006 07:25:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223056#M137067</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-31T07:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: ALV list problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223057#M137068</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;how can you click on background window , and how can it let you do that. it will not be possible, and it won't respond. &lt;/P&gt;&lt;P&gt;that is impossible.&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;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Mar 2006 07:34:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-list-problem/m-p/1223057#M137068</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-31T07:34:07Z</dc:date>
    </item>
  </channel>
</rss>

