‎2008 Aug 29 4:21 AM
Hi experts,
I need make my table control as noneditable for a specific transaction after fetching values.
i did till fetching part and displaying in table control. but its diplaying as editable field. i need to make that as non editable... plz help me in this....this screen is for only dispaly purpose...
Note:- i did Table control through wizard...
‎2008 Aug 29 4:25 AM
You can set the attributes of the table control columns as Output only. or just un check the input only check box.
Then see ..
‎2008 Aug 29 4:30 AM
hi ,
I just make clear that some other transcations are also using the table control for input operations.
so i need to make that noneditable for one transcation only.....
‎2008 Aug 29 4:38 AM
Based on your transaction identifier , and also give the Screen group1 for all the columns ex: AAA you can do some thing like this in the PBO
PBO
Loop at itab with control tc.
module input_enable_disable.
endloop.module input_enable_disable output.
if Transaction = 'DISP'.
loop at screen.
if screen-group = 'AAA'.
screen-input = 0.
modify screen.
endif.
endloop.
endif.
endmodule.