‎2008 Mar 08 11:11 AM
Hi,
I am displaying my data in table control in screen 1001, and my requirement is , whenever i am clicking on entry in table control, i need to get the screen 1002.
Here, Please help me where we need to write the logic to get new screen , when we click on table control.
it will be very very thankfull to your efforts.
it is very urgent. please help me
Thanks & Regards,
vinesh.
‎2008 Mar 08 11:26 AM
hi,
do like this
make ur table control field RESPONDS TO DOUBLE-CLICK ,
check the check the box and activate it .
in the PF-status which you are creating for the screen,
make one button in application tool bar with name PICk (compulsary)
then assign F2 as 'Recommended function key settings for
'PICK'.
in the PAI event , for the module user command write the following code
CASE sy-ucomm.
WHEN 'PICK'.
call screen '1001'..
ENDCASE.
reward if usefull
‎2008 Mar 08 11:38 AM
Hi shah,
coule you tell me what is RESPONDS TO DUBLE CLICK in table control.
thanks for your help shah
regrds,
vinesh.
Edited by: Siddivinesh Jogu on Mar 8, 2008 5:08 PM
‎2008 Mar 10 6:08 AM
Hi,
As in PF Status, when we are creating an Application tool bar with PICK.
Whenever you double click on the table control on any field it will trigger
and call the screen 1001.
‎2008 Mar 10 8:04 AM
hi,
respond to double click means we can make it like interactive report same as ALV....
go to screen layout....
double click on any field of table control...
property window will open for this field there u can tick respond to double click...
then follow the steps i have given in previous answer
‎2008 Mar 10 6:05 AM
Hi,
make selection of row for table control. then write code in PAI event for any row selected or not. if selected use call screen command to show next screen.
next way is, we can use follwing statement in PAI event. it will trigger while DB clicking in field. ref in documentation for below comand.
module <module name> at cursor-selection.
reward if useful.
L.Velu
‎2008 Jun 03 11:30 AM
‎2008 Jun 04 5:23 AM