‎2008 Feb 05 8:56 AM
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,
‎2008 Feb 05 9:02 AM
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
‎2008 Feb 05 9:02 AM
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
‎2008 Jul 07 12:22 PM
well, all the rows visible in the table control gets the run at PAI, so have to handle it saperately.
Thanks,
Naveen Vishal