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

prob in table control

naveenvishal
Contributor
0 Likes
366

how can i get the row that ive updated in table control..

im using the foolowing code

loop with control tblctrl_sancm.

module read_table_control_0110.

endloop.

but i want to update that record only that ive changes in table control..above loop runs for each row, but i want to trap the updated row only......even flag assigned with it only gets updated when the whole row gets selected..how it can be dealt...

Regards,

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
343

Hello,

Do like this.


loop with control tblctrl_sancm.
module read_table_control_0110.
endloop.

In SE38
module read_table_control_0110.
  MODIFY IT_TC01
     INDEX TC01-CURRENT_LINE. " Check Here

endmodule read_table_control_0110.

Cheers,

Vasanth

2 REPLIES 2
Read only

Former Member
0 Likes
344

Hello,

Do like this.


loop with control tblctrl_sancm.
module read_table_control_0110.
endloop.

In SE38
module read_table_control_0110.
  MODIFY IT_TC01
     INDEX TC01-CURRENT_LINE. " Check Here

endmodule read_table_control_0110.

Cheers,

Vasanth

Read only

naveenvishal
Contributor
0 Likes
343

well, all the rows visible in the table control gets the run at PAI, so have to handle it saperately.

Thanks,

Naveen Vishal