<?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 ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4965740#M1157573</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;FORM USER_COMMAND USING R_UCOMM TYPE SY-UCOMM &lt;/P&gt;&lt;P&gt;LS_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;&lt;/P&gt;&lt;P&gt;WHEN 'Fcode of that cell'.&amp;lt;--- &lt;STRONG&gt;What u write here&lt;/STRONG&gt;  for double click ALV Have standard Function code ,Find ant standard ALV Program ,goto Pf-Status,In Function Keys u found For Double click ,use that one for double click.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call Transaction 'SE37'.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Dec 2008 05:39:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-18T05:39:50Z</dc:date>
    <item>
      <title>Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4965737#M1157570</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 got output in ALV Grid.My requirement is if we double click on any cell of output,Transaction should go to SE37.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written the following code snippet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM USER_COMMAND USING R_UCOMM TYPE SY-UCOMM &lt;/P&gt;&lt;P&gt;                                                  LS_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;&lt;/P&gt;&lt;P&gt;WHEN 'Fcode of that cell'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    call Transaction 'SE37'.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;User_command is passed to F.M 'REUSE_ALV_GRID_DISPLAY'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;But it is not working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2008 05:05:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4965737#M1157570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-18T05:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4965738#M1157571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
in ALV FM pass

 i_callback_user_command = 'USER_COMMAND'


FORM user_command USING user_command LIKE sy-ucomm cursor TYPE slis_selfield.

IF cursor-fieldname EQ '&amp;lt;ALVFIELDNAME_HERE&amp;gt;'.
READ TABLE &amp;lt;FINALITAB HERE&amp;gt; INTO &amp;lt;WORK AREA HERE&amp;gt; INDEX cursor-tabindex.
IF sy-subrc EQ 0.
  SET PARAMETER ID 'LIB' FIELD &amp;lt;WA-FIEDLDNAME&amp;gt;. 
  CALL TRANSACTION 'SE37' AND SKIP FIRST SCREEN.    
ENDIF.


ENDFORM.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2008 05:19:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4965738#M1157571</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2008-12-18T05:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4965739#M1157572</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;User command event gets triggered for any Push button click which is assiciated with a Function code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you double click it is not associated to any FCODE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a different event DOUBLE_CLICK. You need to register this EVENT in your ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using REUSE FM, pass this event name and subroutine (Perform which will handle this event) in IT_EVENTS table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write the code inside the perform which is passed to this table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lakshmi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2008 05:24:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4965739#M1157572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-18T05:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4965740#M1157573</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;FORM USER_COMMAND USING R_UCOMM TYPE SY-UCOMM &lt;/P&gt;&lt;P&gt;LS_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;&lt;/P&gt;&lt;P&gt;WHEN 'Fcode of that cell'.&amp;lt;--- &lt;STRONG&gt;What u write here&lt;/STRONG&gt;  for double click ALV Have standard Function code ,Find ant standard ALV Program ,goto Pf-Status,In Function Keys u found For Double click ,use that one for double click.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call Transaction 'SE37'.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2008 05:39:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4965740#M1157573</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-18T05:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4965741#M1157574</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;Use hide and try. (Eg: HIDE : vbak-vbeln). Hide the field on which you are performing action to go SE37.&lt;/P&gt;&lt;P&gt;Hope it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2008 05:46:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4965741#M1157574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-18T05:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4965742#M1157575</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;&lt;/P&gt;&lt;P&gt;FORM set_pf_status1 USING rt_extab TYPE slis_t_extab.&lt;/P&gt;&lt;P&gt;  SET PF-STATUS 'DISPALY' EXCLUDING rt_extab.  &lt;/P&gt;&lt;P&gt;ENDFORM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM at_user_command1 USING r_ucomm LIKE sy-ucomm&lt;/P&gt;&lt;P&gt;rs_selfield TYPE slis_selfield.&lt;/P&gt;&lt;P&gt;  CASE r_ucomm.&lt;/P&gt;&lt;P&gt;    WHEN 'DISP'........-----&amp;gt;see whether you r giving the function code properly&lt;/P&gt;&lt;P&gt;    call transaction 'SE37'.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Dec 2008 05:47:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/4965742#M1157575</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-18T05:47:53Z</dc:date>
    </item>
  </channel>
</rss>

