2007 May 10 4:05 AM
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
2007 May 10 4:16 AM
hi
if intensified on command is there, change it to intensified off
if helpful, reward
Sathish. R
2007 May 10 4:21 AM
Hi
where should i go and off the intensified.
reagrds,
sivakumar
2007 May 10 4:29 AM
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
2007 May 10 4:31 AM
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
2007 May 10 4:32 AM
Hi,
how to define the character space using write statement.help me
regards,
sivkumar
2007 May 10 4:36 AM
hi
write 1(10) SPACE.
this writes blank space of 10 positions from position 1
if helpful, reward
Sathish. R
2007 May 10 4:38 AM
try this
write : ` `.
use the single quotes using the key below ESC key on keyboard
2007 May 10 4:36 AM
Check tables TSP03 and T022D for the specific printer and font code?
check the font sizes and use that printer , but not sure
2007 May 10 4:58 AM
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