‎2010 Jan 11 7:20 AM
WHEN for F4 click on a field in table control ,how can i know that this row with this column is clicked or f4 pressed.
‎2010 Jan 11 8:12 AM
‎2010 Jan 11 7:28 AM
Dear Prajapati ,
in Module Pool table control we have a command like
TABLE_CONTROL-CURRENT_LINE
in this we will get the current line(for which column you press f4 with this we will do further actions
For Example
LOOP AT ITAB
INTO WA_ITAB
WITH CONTROL TABLE_CONTROL
*CURSOR TABLE_CONTROL-CURRENT_LINE*.
MODULE TABLE_CONTROL_GET_LINES.in the above code(generated after creation of Table contol in a screen) we have Current_linw
with that help u will solve ur query
Thanks
Surendra P
‎2010 Jan 11 8:12 AM
‎2010 Jan 11 8:21 AM
thanks to answer dear...
but i already solved my problem by using get field ..
thanks again dear