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

font space

Former Member
0 Likes
918

Hi all,

is it possible to set space between characters on printing form.

I know font style , family, but space between characters how to set

e.g.. 0,4 CH between numbers 3 (0,4ch) 8

7 REPLIES 7
Read only

Former Member
0 Likes
787

Hi Nick,

Check with these links

hope these will useful to you..

Thanks!

Read only

Former Member
0 Likes
787

Plz give deatils, are u facing prb in SAPSCRIPT. there is one way to put space between two words in using TABS in present in PARAGRAPH format.

like this : 3,,8

but if u want to increase space between letters in word try using diff font families they reallly change a lot .

Read only

0 Likes
787

no between two words! beteen chatacters in word

e.g. DOG must be D O G or number 53453 must be 5 3 4 5 3

Read only

faisalatsap
Active Contributor
0 Likes
787

Hi, Nick

Try with the following Code i have tested accorking to your requirment it is working fine, it will solve out your problem,

DATA: s1 TYPE string,
      s2 TYPE string,
      i1 TYPE i,
      i2 TYPE i.

s1 = 'SAP Development Network'.
i1 = STRLEN( s1 ).
i2 = 0.
DO i1 TIMES.
  CONCATENATE s2 s1+i2(1) INTO s2 SEPARATED BY space.
  ADD 1 TO i2.
ENDDO.

WRITE: s2.

Please Reply if else problem

Kind Regards,

Faisal

Edited by: Faisal Altaf on Jan 25, 2009 5:47 PM

Read only

0 Likes
787

Ok again..

problem is output in smart form.

Space between letters must be variable e.g.. 3/char or 0,PMML or 1,24cm

DOG must be D(space 3/4 char)O(space 3/4 char)G(space 3/4 char)

943 must be 9(1,24mm)4(1,24mm)3(1,24mm)

in microsoft word it is possible.

Read only

0 Likes
787

Hi, Nick

Follow the following Steps in this way you will be able to create your own font may be u will be able to solve out your problem in this way,

TCode --> smartforms --> Select Radio Button : Style and create your own Style,

Hope will help.

Kind Regards,

Faisal

Edited by: Faisal Altaf on Jan 26, 2009 7:15 PM

Read only

Former Member
0 Likes
787

it is not posible.

solved.