cancel
Showing results for 
Search instead for 
Did you mean: 

sapscript

Former Member
0 Kudos

hi all

i am working in sapscript .can any one tell me how to change the font size of the text .

regards

rakesh singh

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

Check the paragraph formays that are assinged to your text.

for example

PH &v_text&

In this case PH is the paragraph format .

Now go to paragraph formats and click on that paragraph format . Now you can see the fonts and all.

If you have character formats defined it apears as below

PH <CH>&v_text&</>

Here CH is character format.

you can change fonts in character format tab .

For scripts you done need to go for smartstyles.

Reward points if useful.

Regards,

Nageswar

Former Member
0 Kudos

Go to CHARACTER FORMAT and create character format of your required font size.

Now go to text editor and write those words in HTML format.

Suppose you have created character format c1 with your required font size and you want Pay/Beared Name in that format then write :

<c1>Pay/Beared Name

Reward points if useful,

Former Member
0 Kudos

goto t-code SMARTSTYLES

create a character format with font size and font name as per ur requirement.

in Scripts: character format tab use this character format.

and in command line editor

P1 <C1> &FLD1&

P1 <C2> &FLD2&

where P1, P2: paragraph format

and C1, C2 : Character format ( created in SMARTSTYLES)