cancel
Showing results for 
Search instead for 
Did you mean: 

print text vertically in SAPScript

Former Member
0 Kudos

Hi,

How to print text vertically in SAPScript?

Can we use controls for it?

Please help its urgent.

Thanks,

Madhura

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Requirement is print text vertically as

V

E

N

D

O

R

BUT in that also now vertical text should be written as HORIZONTAL.

e.g v should be >.

Thanks ,

Madhura

Former Member
0 Kudos

You can print horizantally. using the following code

You know the total length of your text right.

You need to have conditions to avoid unnecessary spaces.

If &v_text(1)& is not initial.

ph &v_text(1)&

endif.

if &v_text+1(1) is not initial.

ph &v_text+1(1)

enddif.

if &v_text+2(1) is not initial.

ph &v_text+2(1)

enddif.

But we cant rotate letters to left . Not sure . Will explore on it and let you know.

Reward points if useful.

Regards,

Nageswar

Former Member
0 Kudos

might help if you give some more details about your requirement.

Regards,

Nageswar