Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Table control as non editable

Former Member
0 Likes
514

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...

3 REPLIES 3
Read only

Former Member
0 Likes
475

You can set the attributes of the table control columns as Output only. or just un check the input only check box.

Then see ..

Read only

0 Likes
475

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.....

Read only

0 Likes
475

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.