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

Smartform Problem in Displaying a string data

Former Member
0 Likes
457

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

2 REPLIES 2
Read only

Former Member
0 Likes
419

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

Read only

Former Member
0 Likes
419

hi

good

try to increase the width of theparticular smartform screen where you r trying to display the string data.

thanks

mrutyun^