Increase of font size in list

I want to increase the font size of letters in the heading of my list output screen.How can I do it?

hi,
Changing the fonts in Print using ABAP is not possible. as basic report output is a text editor.
By changing "Customizing of Local Layout" will only change in display screen and not in print.
One possible way to create a new printer formatr thry SPAD and use that format in while printing.
to know more details about SPAD
Using SPAD - SAP Spool Administration to print different paper size
The SAP spool system manages its own output devices. This includes mostly printers, but also fax and archiving devices. In order for you to use output devices defined in your operating system from the SAP System, you must define these devices in the SAP spool system.
this is a piece of code from SAP-IMG ...its about printing fonts...see if this helps u....
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
also check out these links:
For More Info Go thru this Link,
font size in basic list output
http://www.sapdesignguild.org/resources/MiniSG-old/BCMSG03E_DEL.htm
http://sap4.com/modules.php?name=conteni2&pa=showpagina&pid=100
do reward points if it helps
rgds

Similar Messages

  • 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 ⌥⌘-  .

  • To increase font size in List Output in Report

    Hi, I have to increase the font size of my report's list output. I dont have to print it. So, please dont suggest print control. Only it needs to be displayed as an output.....
    Thanks.

    Sagar,
          If you want the font size to be more you can do that using the SAP GUI settings .The output will then appear in the increased format as it is only a list output that you are trying to see.press ALT+F12.Choose New Visual Design and then increase font size to maximum.
    Hope this helps.
    Cheers
    Nishanth

  • Is there a way to increase the font size for the "songs" and "artists" lists in the new music app for iPad 2 (iOS 5)? It is too small for me.

    Is there a way to increase the font size for the "songs" and "artists" lists in the "music" app for iPad 2 (iOS 5)? It is smaller than the previous version.

    falkner09 wrote:
    is there really no fix for this?
    It would depend on your definition of "Fix"
    Your iPod touch running OS 4.2 has a ZOOM feature which will enable you to see the screen more clearly.
    To turn Zoom on or off got to:
    Settings > General > Accessibility > Zoom and tap the Zoom On/Off switch.
    _To Zoom in or out_:
    Double-tap the screen with three fingers. By default, the screen is magnified 200 percent. If you manually change the magnification (by using the tap-and-drag gesture, described below), iPod touch automatically returns to that magnification when you zoom in by double-tapping with three fingers.
    Increase magnification: With three fingers, tap and drag toward the top of the screen (to increase magnification) or toward the bottom of the screen (to decrease magnification). The tap-and-drag gesture is similar to a double-tap, except you don’t lift your fingers on the second tap—instead, drag your fingers on the screen. Once you start dragging, you can drag with a single finger.
    _Move around the screen_:
    When zoomed in, drag or flick the screen with three fingers. Once you start dragging, you can drag with a single finger so that you can see more of the screen. Hold a single finger near the edge of the display to pan to that side of the screen image. Move your finger closer to the edge to pan more quickly. When you open a new screen, Zoom always goes to the top-middle of the screen.
    _Large Text_:
    Large Text lets you make the text larger in alerts, and in Calendar, Contacts, Mail, Messages, and Notes. You can choose 20-point, 24-point, 32-point, 40-point, 48-point, or 56-point text.
    Set the text size: In Settings, choose General > Accessibility, tap Large Text, then tap the text size you want.
    I hope this has helped a little - other than this option I think it pretty much is what it is.
    BTW - This information can be found on page 208 of the iPod Touch iOS 4.2 Users Guide.
    Best wishes..
    Ricky

  • How do I increase the font size in my email and maintain resolution.

    Hi folks. Mr Newbie is seeking some help, I hope it is relatively straight forward, thanks
    How do I increase the font size in my standard email and document views without losing resolution.  Right now my font size in email, headers and text is less than that on my iPhone, it rather defeats the point of having a 27" screen if most of it is blank and I have to sit with my nose to the screen to read email.  Thanks for your help, once you have stopped laughing.  C

    Two things you can do to easily aid with readability in Mail are as follows:
    1) Increase the size of folders in the sidebar:
    a) select "system preferences" from the Apple menu
    b) select "general settings"
    c) select small, medium or large under "sidebar icon size"
    2) Increase the text in the main body of the email (both sent and received):
    a) select "preferences" from the Mail menu
    b) select "fonts and colors"
    c) adjust font size for "message list font" and "message font".  I have noticed this works properly while in classic mode, but in regular mode the message list font doesn't appear to change size.
    Select classic mode by accessing Mail preferences and selecting the "viewing" tab.
    Another shortcut is to right click on the toolbar, then select "customize toolbar", and then drag the "smaller / bigger" buttons onto the toolbar.  Now you can decrease and increase font size as desired on the fly.

  • 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

  • I recently downloaded and installed OS X Mavericks. The font size on the display is smaller. How can I increase the font size. Also everything seems to be running a tad slower. Will this speed up?

    How can I increase the font size in all my displays after it shrank after installing OS X Mavericks?
    How can I increase the speed after installing OS X Mavericks? It is slower now.

    Reset the page zoom on pages that cause problems: <b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    See http://kb.mozillazine.org/Zoom_text_of_web_pages
    Your plugins list shows outdated plugin(s) with known security and stability risks.
    * Shockwave Flash 10.0 r45
    * Next Generation Java Plug-in 1.6.0_17 for Mozilla browsers
    Update the [[Java]] plugin to the latest version.
    *http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)
    Update the [[Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/

  • How can I increase the font size in the Comment pane?

    In the commenting preferences, I can specify different fonts and font sizes. However, it seems like those settings only affect the text that appears in the popups. How can I increase the size of the font in the Comment pane itself? It is so tiny, it's hard to read. I use Acrobat's Comment pane features extensively to reply to my reviewers' comments, and increasing the font size would help reduce eye strain.

    Unfortunately you can't but starting in Acrobat XI, you can at least undock the Comment List and expand the window.

  • How can I increase the font size in Reminders

    Is there any hack, tweak or 3rd party software to increase the font size in Reminders. It is really tiny and can't enlarge even on a huge display.

    Unfortunately you can't but starting in Acrobat XI, you can at least undock the Comment List and expand the window.

  • How to do I increase the font size inside the drop down menus?

    I am trying to enlarge the default font size of the drop down menus that appear when you use the items in the menu bar. For example, I want to increase the font size used in the list that appears under "bookmarks." I do not trying to do anything other than this. Theme and Font size changer does not do this.

    Can you clarify with a screenshot which for items you want to change the font size?
    I use this code on Linux for some font sizes:
    <pre><nowiki>/* font-size: sidebar */
    #commonDialog *, #sidebar-box *, #bookmarksPanel *, #history-panel *{ font-size:11pt!important; }
    /* font-size: Bookmarks */
    #bookmarksBarContent menuitem.bookmark-item,
    #bookmarksMenuPopup menu,
    #bookmarksMenuPopup menuitem { font-size:11pt!important; }
    /* font-size: search bar,autohide */
    #search-container .textbox-input-box {font-size:0px!important}
    #search-container .searchbar-textbox:hover .textbox-input-box,
    #search-container .searchbar-textbox[focused="true"] .textbox-input-box { font-size:12pt!important; font-family:"DejaVu Sans Mono"; }
    /* font-size: navigator toolbox */
    #navigator-toolbox menupopup menu, #navigator-toolbox menupopup menuitem { font-size:12px!important; }</nowiki></pre>

  • 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

  • Increase Action font size in button mode

    I'm using CS4 and the font for the Actions in button mode seems to have changed. Anyone know how I can increase the font size in the list of buttons?

    Im not aware how one could edit the font-size for only one panel, but if You are willing to change it for all panels You could edit it under: Preferences  Interface  UI Font Size

  • How do I increase the font size of my app group names?

    At the moment the font is too small and hard to read without glasses on. Does anybody know how the font size of the app groups that I have created can be increased in size or the app names in general? I have found the option to increase the font size in mail etc but not for app names. Any help would be appreciated. Thanks in advance.

    You can't.
    You could put in a feature request: http://www.apple.com/feedback/

  • 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.

  • 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

Maybe you are looking for