Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Table control with double click

Former Member
0 Kudos

Hi All,

In table control during the double click on any of the row, then need to call a screen as popup .. How can do this ?

How can i track double click action on table control event ?

Thanks in advance.

Regards,

Ranjith

4 REPLIES 4

Former Member
0 Kudos

Hi ,

yes u can do this . Go to attributes of the field that u want to perform double click . In the attributes u will be having a check box 'Repond to double click'. With this u will get a hot spot. Provide 'Pick' Fcode in the pf status .

Edited by: A kumar on Aug 14, 2008 6:09 AM

former_member188685
Active Contributor
0 Kudos

> How can i track double click action on table control event ?

to enable a double click event, you go to the cell and double click on that you will get the attributes pop up, there you set the Respond to Double click.

along with that in the PF-STATUS set the Function F2's function code as 'PICK'.

Former Member
0 Kudos

Hi,

do like this

goto the screen what you had developed and then double click on the field and

you can see the attributes of the field in that, click on the tab Display,

in that you will find a check box with Description RESPONDS TO DOUBLE-CLICK ,

check the check the box and activate it .

in the PF-status which you are creating for the screen, click on the function keys

menu bar , then in the 'Recommended function key settings for the KEY F2 give the

function code as 'PICK'.(Its compulsary)

in the PAI event , for the module user command write the following code

CASE sy-ucomm.

WHEN 'PICK'.

call screen '1001'..

ENDCASE.

Former Member
0 Kudos

hi...

see this closed thread u will get the ans...

regards

vivek