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

Script Font

Former Member
0 Likes
618

Hello friends,

I have developed a script and everything prints fine.

The problem is I have a line and in the line I need some words to be BOLD and some withour bold.

I am using a paragraph type P1 for that line. Now everything is printing non-bold.

Eg:

Currently it is printing as: Hazardous material is defined by code of : 12345678

( P1 Hazardous material is defined by code of : &CUAFVD-MATNR&)

I need it as : <b>Hazardous material</b> is defined by code of : <b>12345678</b>

(Hazardous material and 12345678 needs to be bold)

Note : : Hazardous material is defined by code of, is hardcoded and 12345678 is the material # from SAP.

Thanks,

Ster

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
531

HI,

use character formats. in scripts write like this

<C1>Hazardous material</> is defined by code of : <C1>12345678</>

Define c1 as bold

regards,

ananth

3 REPLIES 3
Read only

former_member632991
Active Contributor
0 Likes
531

Hi,

for this create the character format in script as u have created paragraph format.

Regards,

Sonika

Read only

Former Member
0 Likes
532

HI,

use character formats. in scripts write like this

<C1>Hazardous material</> is defined by code of : <C1>12345678</>

Define c1 as bold

regards,

ananth

Read only

0 Likes
531

Thanks.

Ster