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

Bold text in Classical Report

Former Member
0 Likes
1,419

hi,

I am developing classical report for printing. In that I want some letters in bold text.

How I will get that?

Manoj..

hi,

I am developing classical report for printing. In that I want some letters in bold text.

How I will get that?

Manoj..

4 REPLIES 4
Read only

Former Member
0 Likes
881

Hi Manoj,

Use the following:

FORMAT INTENSIFIED ON.

WRITE : < your text >.

FORMAT INTENSIFIED OFF.

Regards,

Nitin.

Read only

Former Member
0 Likes
881

Hi,

You cant do BOLD in Classical Report.

you can just intensify the text.

you can use some fonts which is bold(default).

Regards

Sandipan

Read only

Former Member
0 Likes
881

Hi

Intensifying the text is possible in classical report.

Regards

Sachin Sharma

Read only

Former Member
0 Likes
881

Hi,

check out this...

DATA col TYPE i VALUE 0.

DO 8 TIMES.

col = sy-index - 1.

FORMAT COLOR = col.

WRITE: / col COLOR OFF,

'INTENSIFIED ON' INTENSIFIED ON,

'INTENSIFIED OFF' INTENSIFIED OFF,

'INVERSE ON' INVERSE ON.

ENDDO.

Regards,

Venkatesh