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: 

To print letters in bold

Former Member
0 Kudos
185

how to print the letters in bold format in classiscal reports

1 ACCEPTED SOLUTION

Former Member
0 Kudos
84

Hi,

use INTENSIHIED in WRITE statement to get list in BOLD letters.

FORMAT INTENSIFIED ON.

WRITE: / ...............

.....................

FORMAT INTENSIFIED OFF.

Reward if helpful.

Thanks.

4 REPLIES 4

Former Member
0 Kudos
84

before using the write statement use

Translate your_string to upper case.

Former Member
0 Kudos
84

Hi,

In classical report its is not possible to change the font of any letters..

Thanks,

Ramya.R

Former Member
0 Kudos
85

Hi,

use INTENSIHIED in WRITE statement to get list in BOLD letters.

FORMAT INTENSIFIED ON.

WRITE: / ...............

.....................

FORMAT INTENSIFIED OFF.

Reward if helpful.

Thanks.

Former Member
0 Kudos
84

Use the INTENSIFIED addition with write statement.

... INTENSIFIED [{ON|OFF}|{= flag}]

Effect

This addition determines the intensity of the background color. For flag, a data object of type i is expected. If ON is specified or if the content of flag is not equal to 0, an intensive background color is used (default setting). If OFF is specified or if the content of flag is equal to 0, a weak background color is used. An exception to this is the COL_BACKGROUND background color, with which INTENSIFIED OFF influences the foreground color. If neither ON, OFF nor flag are specified after INTENSIFIED, then the ON addition takes effect.

At the same time if the INPUT ON attribute is set, the INTENSIFIED OFF addition changes the foreground color of fields that are ready for input. If the INVERSE ON setting is made at the same time, the INTENSIFIED OFF setting has no effect (with the exception of COL_BACKGROUND).