Need to increase the font size of SAP printer

Hi all,
We had some new HP printers HP4015 which needs to print from SAP . we created the new device type ZHPLJCM1 after checking correct device type for it from HP printer site. For some users printouts are coming in small fonts ,they wanted it to print in big fonts .
These are some of the  t codes  that they use KAH3 , FB03 , Y_DEV_39000067.
we tried to change the printer fonts in SE73 of that particular device type and increased the font size , but that also ended in vain.
Kindly suggest possible ways by which we can solve this issue.
Please let me know if more information are needed.

Hi,
Is this ABAP lists, sapcript or smartforms? For sapscript or smartforms, you need to specify the font size in the paragraph/character formats for sapscript and in the smartstyle for smartforms.
For ABAP lists, the font size is selected based on the format used. e.g. If you create a list with format X_65_255, it should print in landscape and the font size is calculated based on the size needed to fit 255 characters into a page. If the format is X_65_132, then the font size is calculated based on the size needed to fit 132 characters into a page so it is a bit larger.
Regards,
Aidan

Similar Messages

  • Need to Increase the Font Size of a screen field in a Dialog Screen ?

    Hi ppl,
    I have a requirement wherein i need to increase the font size of one field on a dialog screen .
    i was going through the threads and found this which has beautiful example given by vijay
    Increase text size in Screen
    But I'm facing a problem in implementing it since the value in the field (of which the font size needs to be increased) depends on a nother field filled by user at runtime only.
    Can anyone gimme some suggestions or alternative way to solve my problem
    Thanks
    Sachin Soni

    Hi Sachin,
    There is not way to change the font style.
    But you can add ur own text through icons or graphics.
    Create your own graphics or icons and include it in ur module pool.
    Or,
    Goto the Layout Editor of your Screen.
    Double click on the text field .. Double clk the text fild, and from the Botton right u can see an arrow icon -> click on that -> will open a Popup -> in that set Area Title to TRUE.
    Hope this solves your problem.
    Thanks & Regards,
    Tarun Gambhir

  • I Need To Increase The "Font" Size - I Had An "ICON" Before "Firefox" Was Installed - Can You Help ???

    I Was Using My Comcast "e-mail" All Of A Sudden The Letters On The Page Began To Shrink In Size. The Letters Are So Small I Cannot Make Them Out. Would This Be something I Should Address With Comcast ???

    See this: <br />
    https://support.mozilla.com/en-US/kb/Page+Zoom

  • Need to color and increase the font size of the text in Excel Attachment

    Hi ,
    I have a requirement where i need to send an Excel attachment as email.
    and In the Excel I need to increase the font size and add colour to the header text in order to distinguish it form the item details.
    Is there a way that we can do it.using ALE programming .....if yes how can we do it...??
    regards
    Abaper

    Hello
    * Row color change
    FORM set_rows_fill USING number TYPE i
                                  colorindex.
      CALL METHOD OF excel 'Rows' = rows EXPORTING #1 = number.
      CALL METHOD OF rows 'SELECT'.
      CALL METHOD OF excel 'SELECTION' = selection.
      CALL METHOD OF selection 'Interior' = interior.
      SET PROPERTY OF interior 'ColorIndex' = colorindex.
      SET PROPERTY OF interior 'Pattern' = 1.
    ENDFORM.                    " SET_COLUMN_FILL
    * Font change
    FORM WRITE_ROW USING USING LEFT TOP BOTTOM RIGHT.
      DATA: bcells TYPE ole2_object,
            ecells TYPE ole2_object.
      CALL METHOD OF excel 'CELLS' = bcells EXPORTING #1 = top #2 = left.
      CALL METHOD OF excel 'CELLS' = ecells EXPORTING #1 = bottom #2 = right.
      CALL METHOD OF excel 'RANGE' = range EXPORTING #1 = bcells  #2 = ecells.
      CALL METHOD OF range 'SELECT'.
      CALL METHOD OF range 'Font' = font.
      SET PROPERTY OF font 'Name' = 'Arial Cyr'.
      SET PROPERTY OF font 'Size' = 12.
    ENDFORM.

  • Increasing the font size for printing in FB03

    Hi All,
    I am trying to print a FI document from FB03.
    But, i am getting print only 1/4th of the A4 size paper.(i mean only 25% of the page is covered and remaining 75% is blank) Now, I need to increase the font size so that it covers more portion of A4 size paper.
    I tried to change "Format settings" in Print settings but in vain.
    Please advise
    Thanks & Regards,
    Pavan Kumar.

    Hello,
    Please make sure that the format settings that you have changed has taken effect.
    X_65_200 is suitable and it gives the print with 90% of the page.
    When you change the format settings it will change the font size according to properties.
    Regards,
    Ravi

  • How to increase the font size of the report output in the printout.

    Hi Team,
    i have a requirement like to print the report output as a direct print from an internal table.I am using the below mentioned code, the output is printing fine but the Font size of the output text is so small so i need to increase the font size of the text of output data.
    call function 'GET_PRINT_PARAMETERS'
       exporting
         immediately                    = 'X'
         line_count                     = 65
         line_size                      = 320
         mode                           = 'CURRENT'
         no_dialog                      = ' '
         release                        = 'X'
         user                           = sy-uname
       importing
         out_parameters                 = st_param
       exceptions
         archive_info_not_found         = 1
         invalid_print_params           = 2
         invalid_archive_params         = 3
         others                         = 4.
      if sy-subrc eq 0.
        new-page print on parameters st_param no dialog.
    could you please suggest me how to increase the font size while printing the report output..
    Thanks in Advance.
    Puneet.

    hey,
    in our system when we click on print. on widow is coming.
    there is a properties button.
    we click on it.
    there FORMAT----AND then we select forat from there and then printing .
    not sure. but check on ur system. is there properites button.
    HI,
    READ THIS,
    You can specify attributes such as the character width and font size in the device type formatting yourself.
    contact ur basis team .
    in the report PRINT-CONTROL SIZE option is there. try to find more o this.

  • How can I increase the font size of my email when I print it out, it is printing tiny

    How can I increase the font size when I print out emails, it is printing tiny size?

    In the Print dialog window, click the small reveal-button to the right of the printer's name -
    The window will expand to show additional settings (similar to 'old' Page Setup) -
    Be sure "Scale:" is set to 100% and the 'Keep apparent font size' item is checked.

  • How to increase the font size of  print ouput in SAP 4.7

    Hi,
    How to increase the font size of the ouput of Write statement on PRINT ?  in 4.7
    THANKS IN ADVANCE
    MOOSA

    You can do that using the PRINT-CONTROL Statement.This will only work when you send the list to the printer.Sample code is as below :
    REPORT zfont NO STANDARD PAGE HEADING LINE-SIZE 80 LINE-COUNT 65.
    Start of print-control
    NEW-PAGE PRINT ON.
    PRINT-CONTROL FUNCTION 'SF000'.
    WRITE: / 'This is CPI 20'.
    SKIP.
    PRINT-CONTROL FUNCTION 'SF020'.
    WRITE: / 'This is CPI 6'.
    SKIP.
    PRINT-CONTROL FUNCTION 'SF008'.
    WRITE: / 'This is CPI 12'.
    Depending on your SAP printer device, this may also work
    PRINT-CONTROL FONT 1 LPI 6.
    you can try to change font and LPI numbers
    WRITE: / 'font 1 lpi 6'.
    PRINT-CONTROL FONT 2 LPI 6.
    WRITE: / 'font 2 lpi 6'.
    PRINT-CONTROL FONT 3 LPI 6.
    WRITE: / 'font 3 lpi 6'.
    End of print-control
    NEW-PAGE PRINT OFF.
    *--- End of Program

  • How to increase the FONT Size in a report while printing in SAP

    Hi ,
    Can anybody let me how how to increase the Font size  while printing a report in SAP .
    Thanks
    Dhaval..

    hi Raje,
    WELCOME TO SDN
    use <b>PRINT-CONTROL</b> option
    PRINT-CONTROL FUNCTION 'SF000'.
    WRITE: / 'This is CPI 20'.
    SKIP.
    PRINT-CONTROL FUNCTION 'SF020'.
    WRITE: / 'This is CPI 6'.
    How to change font sizi in a classical report?
    REgards,
    Santosh
    Message was edited by: Santosh Kumar P

  • Increasing the font size of an ALV report while printing it.

    The requirement is to increase the font size of an ALV report while printing it. The ALV Report is coded using the Factory method.
    I could find a class called CL_SALV_ITEM with a SET_FONT method but I am not sure how to link it with the CL_SALV_TABLE class from which the display table has been created. I even tried checking the report display in SPOOL transaction SP01.But I guess the font shown there depends on the SAP GUI settings.
    Do you have any suggestions?
    Thanks and regards
    Sathya

    The status bar is a fixed fontsize which does not change. While I have no problem reading the time off the status bar you should also have the time on the lockscreen and/or glance screen with a much larger font so I do not really see the issue.
    I have all my music on SkyDrive so would not know for sure, but check out THIS to see if it serves your needs.
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • How do I increase the font size of a large document?

    Whenever I try to increase the font size of a large document, the text boxes cross their boundaries and mix with each other, or partly disappear at the end of every page. Do I really have to adjunst every text bos in the document or is there a faster way? Im having this issue with adobe acrobat 11 pro

    This is not a feasible thing to do. Editing a PDF is a desperate last resort for so many reasons.
    Whatever you need to solve, you are unlikely  to solve it in Acrobat. Probably best to export text and remake it.

  • I have Photoshop cs6 Ext on an ASUS laptop. How can I increase the font size of the contents of the FILTER Panel situated on bottom left of screen. The font size is extreamly small and almost unreadable. I have changed display parameters, not the resoluti

    I have Photoshop cs6 Ext on an ASUS laptop. How can I increase the font size of the contents of the FILTER Panel situated on bottom left of screen. The font size is extreamly small and almost unreadable. I have changed display parameters, not the resolution, to no avail.
    David.

    Paragraph breaks are good for readability. ;-)
    Have you noticed any difference between your MacBook and others at the Apple store? Wondering whether this is a configurable setting at the system level, i.e., DPI.
    You can default Firefox to a larger zoom level to avoid having to zoom every page. You'll still be able to adjust the size for individual sites as needed. It sounds as though you are aware of these add-ons:
    * Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    * NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/
    There are some discussions about changing coming in Firefox 22 (I think) to address higher density displays like the Retina display. So perhaps there will be a built-in setting to address this in the future.

  • Need to increase bookmark font size. my eyesight is poor

    my eyesight is poor. How do I increase the font size on the bookmark bar?

    See http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files
    Add code to [http://kb.mozillazine.org/UserChrome.css userChrome.css] below the @namespace line.
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #personal-bookmarks .toolbarbutton-text {font-size:13pt !important; font-weight:bold;}
    #personal-bookmarks .bookmark-item menupopup * {font-size:13pt !important;}
    </nowiki></pre>
    *ChromEdit Plus: http://webdesigns.ms11.net/chromeditp.html

  • Increase the font size of a Content Query Web part

    Hi - I have been trying to increase the font size of one of my Content Query web parts, I've had a look at your articles however I am unsure where to insert the lines of code. Unfortunately I am not a programmer however I need to be able to increase the
    font size, please can you assist?
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/d0cfd348-c9d0-43b7-bd00-3bb17d612ea0/increase-font-size-of-the-content-query-web-part?forum=sharepointgeneralprevious
    Kind Regards
    Natasha

    Hi Natasha, Do you have multiple Content Query Web Parts on the same page? If so, are you looking to change the font on all of these or just a specific one?
    Also, are you looking to make this change to your entire site or only a specific page?
    Dimitri Ayrapetov (MCSE: SharePoint)

  • How to increase the font size in list view

    I have Aperture open in list view and even tho I have the slider all the way to the right, so the images are larger to see, the actual font size of the various topics in list view has not increased.  I have trouble seeing and need the font size to be made larger.  Within Aperture = don't want to do the change to the whole computer, just to the list view in Aperture.  Thanks.

    Aperture does not support to increase the font size.  If you do not want to reduce the resolution of the display to make the fonts larger, you could enable Accessibility and activate a local Zoom.
    This way you can zoom in on text, but your images will show in the best possible resolution.
    The Accessibility options are activated from the System Preferences > Accessibility.
    You can toggle zooming using ⌥⌘8,    zoom in using ⌥⌘=, zoom out using ⌥⌘-  .

Maybe you are looking for

  • Bug in Page source view

    In Page Source view in 32-bit Firefox 3.6 under Windows, if there is a URL in the source code that is erroneously not closed with a quote, for example: <a href="http://mozilla.com>The Mozilla' site</a> (Note absence of quote after .com) And you reloa

  • Read Only form after Submit to Email

    I have a form i'm working on. Basically its a form I like for users to fill out and then click submit once they are done to send it in an email. The script i found below does what I want but with further testing i found out it's not exactly what I wa

  • ITunes crashes on opening..absolutely will not open!!!!!!!

    I was using 7.2 since it was upgraded with no problems, then all of a sudden it won't open. I can't pin it down to anything really. I'm getting really ****** at this point. I've tried re-installing, trashing the plists, running disk warrior, verifyin

  • Skype Click to Call on Firefox 39 using OSX Yoshimite 10.10.3

    hey guys, i am tyring to install skype click to call on firefox or chrome but its not working for both browsers i am on  OSX Yoshimite 10.10.3Firefox version 39Chrome Version 43.0.2357.132 (64-bit) please help me get this installed.

  • OGG Vorbis in iTunes 10?

    How to play OGG Vorbis in iTunes 10? Tried XiphQT 0.1.9 and oggvorbis_r45 component, but no luck.. Any ideas ?