‎2007 Jun 13 5:46 AM
Hi Friends,
I am facing a problem while displaying a string data in smartform. Actually it is a one of the field's data in an internal table. It is a STRING field type of length 0. While populating in an internal table it is having a all the data(Around 700 char data). But while displaying in a smartform surprizingly only few characters(Around 225 char data). How can i overcome this problem?
Regards,
Sekhar.J
‎2007 Jun 13 6:00 AM
Hi
try this and see
Declare some Variables of 72 char each and split that long string data of internal table text field into them and display these variables strings one below other in smartform
var1 = itab-text+0(72)
var2 = itab-text+72(72)
var3 = itab-text+144(72)
like that
and display one below other in smartform.
&VAR1&
&VAR2&
&VAR3&
.........
........
Reward points for useful Answers
Regards
Anji
‎2007 Jun 13 6:16 AM
hi
good
try to increase the width of theparticular smartform screen where you r trying to display the string data.
thanks
mrutyun^