cancel
Showing results for 
Search instead for 
Did you mean: 

Problem in SAP Script - Paragraph AS - Chars getting truncated at end of

Former Member
0 Kudos

Output for one of script is not getting printed correctly.

When i see output of Script, text is printing beyond the end of line and last few characters are getting truncated.

For ex:

xxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.Purc

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

xxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

For instance it was suppossed to show Purchase order in second line. But half of letter is truncated.

I want Purchase order to be printed on 3rd line automatically is enough space is not available on second line.

Please provide some useful solution for this

Thanks in advance

Umesh

Message was edited by:

umesh sn

Accepted Solutions (0)

Answers (3)

Answers (3)

former_member196280
Active Contributor
0 Kudos

if you want to print purchase order on next line do it like this...

Ex,

  • &var1& &var2& &var3&

  • Purchase Order &P_ORDER&.

Here, variable 1, 2 & 3 will be displayed in line 1 and purchase order will be displayed in line 2... now if you think data of variable 1 2 and 3 are getting truncated.. use tab spaces between this variables...define tab spaces in your paragraph format.

Ex:

  • &var1&,, &var2&,, &var3&

Note: if you think variable is too long use offset...

Ex: &var1(20)&

Close the thread if your question is answered.

Regards,

SaiRam

Former Member
0 Kudos

Hi Umesh,

U just try expanding your Purchase Order printing Window. It will solve your problem.

Regards,

Sujoy

Former Member
0 Kudos

In sapscript if the width of the text exceeds the width of the window, then it will be overlapped or it will be taken to the next line. So, adjust the width and check it.