‎2006 Oct 06 10:52 AM
hi to all,
help me in this issue
how to keep editable columns in module pool table control
so that enduser can edit and save that column.
thanks in advance
kiran kumar
‎2006 Oct 06 10:55 AM
‎2006 Oct 06 10:55 AM
‎2006 Oct 06 10:59 AM
Whenever u define a columnn in the table control defaultly will be in editable mode.
But u can able to control it programtically....
loop at screen.
if screen-name = 'XYZ'.
screen-input = '1'.
endif.
modify screen.
endloop.
‎2006 Oct 06 11:02 AM
Hi,
when table control is defined and fields are
assigned to table control set the field attributes
input output checked .so that by default it
will be input enabled.
if you want to handle dynamically use below logic
oop at screen.
if screen-name = 'P' or
screen-name = 'P2'
screen-input = 0.
modify screen.
endif.
endloop.
else.
loop at screen.
if screen-name = 'P3' or
screen-name = 'P4'
screen-input = 0.
modify screen.
endif.
endloop.
Regards
amole