Increasing font size in ABAP List Output
Hi Guys!!!
I need one help if any one can do.
I am trying to increase the font for the ABAP report output / Printing of the report output through spool request.
If anybody know some thing on this please help me out.
Thanks in advance,
Monika
hi
You can increase font size of output list.
Consider the following code:
new-page print on.
print-control size 4 color black font 5.
write: 'Test output'.
Basically u can not change font size during screen display, but yes u can always change it for spool.
There are also other methods u can use for Such printing.
rave
If you want to change the font size for only some lines check the help for PRINT-CONTROL (note that the printer must be known at the time you use it, for eg you execute with 'Execute and Print' or you use NEW-PAGE PRINT ON ...)
If you want to change the font size for all the report output there might be 2 possibilities :
1. Check in SPAD the format type that exist and choose and appropriate one, if there isn't one ask your basis to create one.
2. Check the LINE-SIZE you've declared for you report it determines the format type of the spool request. So if you've declared a line-size of 255 it will take an appropriate format even if you print only 80 character per line.
CaKe