‎2009 Jan 24 11:46 AM
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
‎2009 Jan 24 11:52 AM
‎2009 Jan 24 11:52 AM
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 .
‎2009 Jan 24 11:56 AM
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
‎2009 Jan 25 12:47 PM
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
‎2009 Jan 26 1:57 PM
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.
‎2009 Jan 26 2:09 PM
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
‎2009 Sep 24 10:55 AM