‎2012 Jun 13 6:15 AM
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
‎2012 Jun 13 6:21 AM
Hi Experts
I am expecting your replies, can anyone give your suggestion on this pls.
Regards
Rajaram
‎2012 Jun 13 6:33 AM
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
‎2012 Jun 13 6:41 AM
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.