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 column into display mode

Former Member
0 Likes
517

Hi Experts

Can anyone suggest me how to set a particular column into display mode in table control at run time.

Please advice me.Expecting your replies.

Thanks in advance.

Regards

Rajaram

3 REPLIES 3
Read only

Former Member
0 Likes
438

Hi Experts

I am expecting your replies, can anyone give your suggestion on this pls.

Regards

Rajaram

Read only

0 Likes
438

Hi Rajaram,

In se51 select that particular column . In the attributes box of that particular fields Select the program tab.

select the output field and output oly . in input select not possible.

Then u'l get in display mode.

Regards,

Ramya Ramasamy

Read only

0 Likes
438

Thanks guys i got the answer from one of the thread, thanks to Jinson Venattu.

DATA wa LIKE LINE OF tab_con-COLS.

loop at tc-cols into wa.

wa-SCREEN-INPUT = 0 .

modify tc-cols from wa.

endloop.

where tc is ur table control and

My problem solved. Thank you.