2009 Jan 12 3:48 AM
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..
2009 Jan 12 3:57 AM
Hi Manoj,
Use the following:
FORMAT INTENSIFIED ON.
WRITE : < your text >.
FORMAT INTENSIFIED OFF.
Regards,
Nitin.
2009 Jan 12 4:07 AM
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
2009 Jan 12 5:42 AM
Hi
Intensifying the text is possible in classical report.
Regards
Sachin Sharma
2009 Jan 12 5:46 AM
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
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |