Application Development and Automation 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: 
Read only

MODULE POOL TABLE CONTROL

Former Member
0 Likes
421

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
396

Hi

[Check this Thread.|;

Get Cursor Field Field_name line line_number

Cheerz

Ram

3 REPLIES 3
Read only

Former Member
0 Likes
396

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

Read only

Former Member
0 Likes
397

Hi

[Check this Thread.|;

Get Cursor Field Field_name line line_number

Cheerz

Ram

Read only

0 Likes
396

thanks to answer dear...

but i already solved my problem by using get field ..

thanks again dear