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

SapScript Text

Former Member
0 Likes
1,259

Hi

I am adding a paragraph to a SAPScript, How do I bold a portion of a sentence for example if the sentence was “Please indicate in the space below whether this information agrees with” How would I just BOLD space below?

Thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,200

hi

create a seperate charecter format say bold and enable bold option in that.

then in the script where ur writing the paragraph

use

<b>xyzkjkjh<bold>this comes bold </> igiggkj</b>

plz reward helpful posts

8 REPLIES 8
Read only

Former Member
0 Likes
1,201

hi

create a seperate charecter format say bold and enable bold option in that.

then in the script where ur writing the paragraph

use

<b>xyzkjkjh<bold>this comes bold </> igiggkj</b>

plz reward helpful posts

Read only

Former Member
0 Likes
1,200

Hii

please use a separate character format

use paragraph with bold

<b>text</b>

Text will become bold

Thanks&Regards

Naresh

Read only

Former Member
0 Likes
1,200

That is what Character formats are used for.

Create a character format which intensifies the characters.

Then use the char format in the text elements.

/P: <b>chaghg</b> vjhgjh

The part of text in between <b> and </b> will be bold.

Regards,

Ravi

Read only

0 Likes
1,200

Thanks, I have tried this ands the BOLD is working fine however the </b> is showing up as text and the bold is continuing. Am I missing something?

Read only

0 Likes
1,200

Hi George,

To make that to work follow the following steps.

1) Go to se71 and go into the form, click on the character format button on the application toolbar.

2) CReate a new character format, say BB.

3) Click on the Font Button and chose

4) Give the Font Family and Font size and select the radio-button for "bold".

5) Save the character format.

6) NOw use this character format on your text elements editor as mentioned earlier.

Regards,

Ravi

Read only

Former Member
0 Likes
1,200

Hi George,

create a character format for bold say B.

/: Please indicate in the <B>space below </b> whether this information agrees with.

think it helps.

regards,

keerthi.

Read only

Former Member
0 Likes
1,200

Try </> to turn off the bold instead of </b>

eg. <B>These words will be bold</>.

Cheers Steve.

Message was edited by: Stephen OShea

Read only

0 Likes
1,200

Thanks all problem solved and points awarded to all that responded