‎2007 Nov 14 9:24 AM
Hi,
I have a table control.
i want to disable all other rows when i clicked on insert new line button. I ONLY want that new line to be enabled while others disabled.
how do i do that?
thanks.
useful answer will be rewarded points.
‎2007 Nov 14 11:18 AM
‎2007 Nov 14 9:56 AM
Hi,
you can try this example in PBO
LOOP AT itab WITH table_control.
module init_tab.
ENDLOOP.
MODULE init_tab OUTPUT.
LOOP AT SCREEN.
IF SCREEN-NAME = 'FIELD1' "check your data here
MODIFY SCREEN.
ENDIF.
ENDLOOP.
ENDMODULE.
Reward points if it helps,
Satish
‎2007 Nov 14 11:18 AM
‎2007 Nov 15 9:16 AM
Thanks so much for the replies.
My question is solved.
points rewarded.
‎2008 Jan 31 6:20 PM
‎2008 Feb 14 8:52 AM
Please refer to jonathan's reply. he provided a very useful link. that will solve your problem.