cancel
Showing results for 
Search instead for 
Did you mean: 

Printing string of length more than 255

meikandan_krishnan2
Participant
0 Kudos

Hi

I have to print a string which is of length more than 250 in smartforms.

if the length of the string is more than 255 , smartform prints only upto 255 ,even if am putting it to tables of a main window.

Please do the needful.

Regards

Meikandan

Accepted Solutions (0)

Answers (3)

Answers (3)

former_member196280
Active Contributor

Do it like this, using offset values.

string1 = string+0(255).

string2 = string+255(255).

etc.,

Regards,

Sairam

Former Member
0 Kudos

Hi,

Smartform prints only first 255 chars of the string. instead of two strings try addding the same field with offsets:

&G_TEXT(255)&&G_TEXT255(255)&&G_TEXT510(255)&

<b>Reward points</b>

Regards

Former Member
0 Kudos

Define a character field of the desired length and use this variable in the smart forms. Strings will be able to hold a maximum of 255 characters.