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

remove the blod font

Former Member
0 Likes
1,362

Hi,

i have a issuse that when i print the report that is running on background the fonts is printing blod now i wnat remove the bold.how to remove help me.

regards,

sivakumar

Hi,

i have a issuse that when i print the report that is running on background the fonts is printing blod now i wnat remove the bold.how to remove help me.

regards,

sivakumar

9 REPLIES 9
Read only

Former Member
0 Likes
1,322

hi

if intensified on command is there, change it to intensified off

if helpful, reward

Sathish. R

Read only

0 Likes
1,322

Hi

where should i go and off the intensified.

reagrds,

sivakumar

Read only

Former Member
0 Likes
1,322

Hi Siva,

in the write statement if there is intensified ON, make it OFF.

whatever you want to print in bold make it intensified ON , after printing make the

intensified OFF.

Chandan

Read only

0 Likes
1,322

hi

i believe intensified on/off commands are for making the coloring bold, not the font size..just chk this thread

https://forums.sdn.sap.com/click.jspa?searchID=2522158&messageID=2844116

Sathish. R

Read only

0 Likes
1,322

Hi,

how to define the character space using write statement.help me

regards,

sivkumar

Read only

0 Likes
1,322

hi

write 1(10) SPACE.

this writes blank space of 10 positions from position 1

if helpful, reward

Sathish. R

Read only

0 Likes
1,322

try this

write : ` `.

use the single quotes using the key below ESC key on keyboard

Read only

Former Member
0 Likes
1,322

Check tables TSP03 and T022D for the specific printer and font code?

check the font sizes and use that printer , but not sure

Read only

Nawanandana
Active Contributor
0 Likes
1,322

hi

first go to find the background program cheacked weather it has

"format INTENSIFIED ON"

"format INTENSIFIED OFF" command is there... if it has remove it and get the print out ... INTENSIFIED command is the font bold comand.... if u remove it SAP get the normal print......

Ex:

format intensified on.

write : /0 sy-uline,sy-vline,

(08)'Stock ', sy-vline,

(22)'Stock Name', sy-vline,

(18)'NO of Shares', sy-vline,

write at sy-linsz(01) sy-vline.

write sy-uline.

format intensified OFF.

Format Reset. "using thig u can refresh the format

endform.

AFTER REMOVE the intensified command

write : /0 sy-uline,sy-vline,

(08)'Stock ', sy-vline,

(22)'Stock Name', sy-vline,

(18)'NO of Shares', sy-vline,

write at sy-linsz(01) sy-vline.

write sy-uline.

Format Reset. "using thig u can refresh the format

endform.

Now u can get without bold font printout

regard

nawa