<?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: Regarding interactive ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-interactive-alv/m-p/4567482#M1077863</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can go upto 20 levels deep. Because SAP can handle 20 internal sessions in one external session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The way is same as you would do for level 1, i.e in the user command of each list, you will call the next detail level list ( ALV ) based on the selection of the previous list (ALV).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Sep 2008 14:15:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-30T14:15:26Z</dc:date>
    <item>
      <title>Regarding interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-interactive-alv/m-p/4567481#M1077862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;Can you please tell me at what level we can go in interactive ALV by double clicking on any field?&lt;/P&gt;&lt;P&gt;Also, tell me the way after level 1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 14:09:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-interactive-alv/m-p/4567481#M1077862</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T14:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-interactive-alv/m-p/4567482#M1077863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can go upto 20 levels deep. Because SAP can handle 20 internal sessions in one external session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The way is same as you would do for level 1, i.e in the user command of each list, you will call the next detail level list ( ALV ) based on the selection of the previous list (ALV).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 14:15:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-interactive-alv/m-p/4567482#M1077863</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T14:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding interactive ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-interactive-alv/m-p/4567483#M1077864</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;STRONG&gt;First you need to define class and method to handle double click functionality.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; *----------------------------------------------------------------------*
*       CLASS DEFINITIONS                                              *
*----------------------------------------------------------------------*
* Class Event Handler Definition for screen 0002
CLASS lcl_event_handler DEFINITION.
PUBLIC SECTION.
*       METHODS: handle_double_click
*                     FOR EVENT double_click OF cl_gui_alv_grid
*                         IMPORTING e_row e_column.
ENDCLASS. " CLASS LCL_EVENT_HANDLER DEF..
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Second: you need to implement Class&lt;/STRONG&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*----------------------------------------------------------------------*
*       CLASS IMPLEMENTATION.                                          *
*----------------------------------------------------------------------*
CLASS lcl_event_handler IMPLEMENTATION.
*  METHOD handle_double_click.
*      CHECK e_row-rowtype(1) EQ space and e_column-FIELDNAME = 'MATNR'
*.
*      perform form1.
*  ENDMETHOD. " HANDLE_DOUBLE_CLICK 

ENDCLASS. " CLASS LCL_EVENT_HANDLER IMPL...&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Third: Create a variable with type ref class event handler as below.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; *----------------------------------------------------------------------*
*       TYPES                                                          *
*----------------------------------------------------------------------*
data: gv_event_handler  TYPE REF TO lcl_event_handler,  " Event handler&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Fourth: trigger event handler.&lt;/STRONG&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*-For Double click functionality
*  CREATE OBJECT gv_event_handler.
*  SET HANDLER gv_event_handler-&amp;gt;handle_double_click FOR gv_alv_grid1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 14:18:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-interactive-alv/m-p/4567483#M1077864</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T14:18:16Z</dc:date>
    </item>
  </channel>
</rss>

