<?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: drill down in screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-in-screen/m-p/6703515#M1452714</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks it worked &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Mar 2010 03:52:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-11T03:52:36Z</dc:date>
    <item>
      <title>drill down in screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-in-screen/m-p/6703511#M1452710</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 have created a screen with table control with number of columns and rows. i want the user to drilldown to transaction IQ03 when he double click on secific cell. &lt;/P&gt;&lt;P&gt;is it possible ? if yes can i get an example ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 20:08:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-in-screen/m-p/6703511#M1452710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-09T20:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: drill down in screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-in-screen/m-p/6703512#M1452711</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;Try to use following code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*---------------------------------------------------------------------*
*      Form  user_command
*---------------------------------------------------------------------*
FORM user_command USING r_ucomm LIKE sy-ucomm               "#EC CALLED
                        rs_selfield TYPE slis_selfield.

* user command for calling tcode IQ03 (Material Serial Number Display).
  CASE r_ucomm.
    WHEN '&amp;amp;IC1'.
* Read the record from the internal table on which is double clicked.
      READ TABLE gt_output INTO gw_output INDEX rs_selfield-tabindex.
      IF sy-subrc = 0.
        SET PARAMETER ID 'MAT' FIELD gw_output-matnr.
        CALL TRANSACTION 'IQ03' AND SKIP FIRST SCREEN.
      ENDIF.
  ENDCASE.

ENDFORM.                    " USER_COMMAND
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandravadan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Chandravadan Jaiswal on Mar 9, 2010 3:17 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Mar 2010 20:16:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-in-screen/m-p/6703512#M1452711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-09T20:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: drill down in screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-in-screen/m-p/6703513#M1452712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks, but i want to know what do i have to do in order to creat a DOUBLE CLICK evet  - i doubled click on a cell and nothing happened, even when i did "/H" and doubled click on the table in order to see what happemed after - it didnt start the debugger. &lt;/P&gt;&lt;P&gt;What else do i ahve to do ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 03:55:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-in-screen/m-p/6703513#M1452712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-10T03:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: drill down in screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-in-screen/m-p/6703514#M1452713</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;In Screen Painter double click a Cell and in the Attribute window select the &lt;STRONG&gt;DISPLAY&lt;/STRONG&gt; tab and select the check box for &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RESPOND TO DOUBLE CLICK&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Then go to the &lt;STRONG&gt;PF-STATUS&lt;/STRONG&gt;  In Expand Function Keys and Give a name like &lt;STRONG&gt;DBL&lt;/STRONG&gt; For &lt;STRONG&gt;F2&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;now in PAI

LOOP AT ITAB.
MODULE DOUBLE_CLICK.
ENDLOOP.
in Program.

module DOUBLE_CLICK input.
case ok_code.
when 'DBL'.
GET CURSOR FIELD ITAB-CARRID LINE LINE_NO " Declare line_no in TOP include
" Transfer these values into a Temp Work Area since the Line_no will not be the same on your ITAB 
You can call the Required Transaction from within this loop if possible
otherwise do the same CALL TRANSACTION outside the loop 
by SET PARAMETER ID as mentioned above.
" This give you the line on which the User Clicked. now proceed further
endcase.

" In module next to the LOOP ENDLOOP statement you can process this Temp Work Area to 
display the Drill down Screens
Hope this serves your purpose.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Cheerz&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;P&gt;endmodule&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Mar 2010 04:04:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-in-screen/m-p/6703514#M1452713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-10T04:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: drill down in screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-in-screen/m-p/6703515#M1452714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks it worked &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 03:52:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-in-screen/m-p/6703515#M1452714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-11T03:52:36Z</dc:date>
    </item>
  </channel>
</rss>

