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

smart form character settings

Former Member
0 Likes
736

how can i rotate my text in samartform.

is it possible.

if yes

plz suggest me the way.

immediate reply will be highly appreciable.

how can i rotate my text in samartform.

is it possible.

if yes

plz suggest me the way.

immediate reply will be highly appreciable.

4 REPLIES 4
Read only

Former Member
0 Likes
668

Hi

I don't believe you can do it

Max

Read only

Peter_Inotai
Active Contributor
0 Likes
668

I don't think it would be possible with smartforms. Maybe with <i>samartform</i> is possible, but I didn't heard about that one:-))))))

Peter

Read only

Former Member
0 Likes
668

Hi,

you can do one thing , if it is Static text, upload the Tiff and then show that in your smartform, but this will be like a image. otherwise it is not possible.

regards

vijay

Read only

sridhar_k1
Active Contributor
0 Likes
668

If u always print static text, create a bmp in mspaint and upload into sap using SE78, and use it in ur smartform.

Printing dynamic text vertically in sap smartforms is little complicated, it involves copying and modifying printer device type:

If you are using PCL driver in the device type then do the following to print vertical text:

1. Copy the PCL device type

2. create print control ZRVRT , Check hexadecimal radiobutton enter 1B2661393050 in the control char string

3. Create print control ZRHRZ, Check hexadecimal radiobutton enter 1B26613050 in the control char string

4. save and assign the device type to the pcl printers ur going to use

activating Print control ZRVRT, prints the text vertically, after printing vertically, u need to call print control ZRHRZ to set the printer to horizontal mode again.

the following lines print text vertically in sapscript:

/: PRINT CONTROL ZRVRT

  • print vertical text

/: PRINT CONTROL ZRHRZ

  • print horizontal text

You can use command node to call above print controls in smartforms or use INCLUDE standard text

Regards

Sridhar