‎2010 Jul 12 6:38 AM
Hi ,
I have Created a text editor in screen.But i want exactly 99rows and each row is of 60digit each.Please tell me how to control to these limits in text editor control.I have tried but i didnt get it.
Please help me..
Thanks,
Neelima
‎2010 Jul 12 11:15 AM
create your internal table with 60 character lenght,
and give the text editor's max_number_chars = 5940 -->(60*99), i think this solve your problem.
data : begin of text_tab occurs 0,
line(60),
end of text_tab.
CREATE OBJECT: editor
EXPORTING parent = container
wordwrap_mode = 2
wordwrap_position = 60
max_number_chars = 5940.