cancel
Showing results for 
Search instead for 
Did you mean: 

How to display text in Vertical format in script

Former Member
0 Kudos

Hi All,

How to display text in vertical format in SAP Script.

Is it possible.

Thanks,

Subu

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Hope it is not possible.

If it is a fixed test embedded as an image.

Else try to fix the same in a window of length 1.

Regards,

Baburaj

Answers (4)

Answers (4)

former_member196280
Active Contributor
0 Kudos

It is not possible to display the text in vertical format.

But, if it is not dynamic text try like this.. it may help you.. try to create your text in MSpaint in vertical format and upload it to SAP in SE78, try to display this image in your form.. it will give you a feel as if you are displaying Vertical text.

Regards,

SaiRam

Former Member
0 Kudos

Hi,

SAPScript itself is not able to print the text vertically but I think you can instruct the printer to do that. Use the following in your Window

Print-Control ZM200

                                • (Text that you want to print vertically)

Print-Control ZM300

The Print control ZM200 informs the printer to print the 'following text' vertically and the Print control ZM300 instructs the printer to print 'following text' horizontally.

You can define a print control macro using TCode SPAD

Try to create a new window for the vertical text you want to print.

Hope this helps.

Regards

Sudheer

Former Member
0 Kudos

Hi,

Store the text you want to store in a bitmap format and include as graphics in the window.

Reward if it is useful.

Thanks,

Geeta

Former Member
0 Kudos

One way u can do it is

do string_length times.

write_form

inside the elemnt in the script u call in write form

the variable should be printed one char at a time

like

var(count)+1

endddo.