‎2008 May 12 4:16 PM
Hi,
I am developing module pool program which has two table control in a single screen. Among the two table controls one will be always active for User input. But the other table control will be active for input only after the input of data in a particular field on the same screen. please suggest how to achieve it.
Regards,
Pulokesh
‎2008 May 12 4:21 PM
In your PBO section have a module like this.
loop at <second tc > with <second itab>..
MODULE SECOND_TC_ENABLE.
endloop.
Module SECOND_TC_TABLE.
if <your field> <> space.
loop at screen.
if screen-name = <Name of your TC fields>
screen-output = 1.
screen-input = 0.
modify screen.
endif.
endloop.
endif.
endlmodule.
Regards,
Ravi Kanth Talagana
‎2008 May 12 4:21 PM
In your PBO section have a module like this.
loop at <second tc > with <second itab>..
MODULE SECOND_TC_ENABLE.
endloop.
Module SECOND_TC_TABLE.
if <your field> <> space.
loop at screen.
if screen-name = <Name of your TC fields>
screen-output = 1.
screen-input = 0.
modify screen.
endif.
endloop.
endif.
endlmodule.
Regards,
Ravi Kanth Talagana
‎2008 May 14 7:30 AM
Hi,
Your reply solved other problems but didn't solve the problem that i mentioned above. Any way today i have solved the problem myself. thanks for the help.
Regards,
Pulokesh
‎2008 May 14 7:31 AM
Table control itself is a separate screen. Use its own components to play with it.