Application Development 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: 

SapScript Text

Former Member
0 Kudos

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

Former Member
0 Kudos

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

Former Member
0 Kudos

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

Former Member
0 Kudos

Hii

please use a separate character format

use paragraph with bold

<b>text</b>

Text will become bold

Thanks&Regards

Naresh

former_member181962
Active Contributor
0 Kudos

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

0 Kudos

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?

0 Kudos

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

Former Member
0 Kudos

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.

Former Member
0 Kudos

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

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

Cheers Steve.

Message was edited by: Stephen OShea

0 Kudos

Thanks all problem solved and points awarded to all that responded