Increase Font Size in Standard Report

I need to Increase the font size on a standard report,
i changed in the layout editor and nothing is happening when i run the report on the applications. What ever size i change i get printed with only one size and type.
how can this be acheived ? plz advice..
i did some customizations on the standard report.

Hi,
Please check thw SRW. option, through this you can also change the font size, is your report is running in Character mode, if it is running in PDF format then with SRW. facilities you can change the text size.
Thanks
Shishu Paul

Similar Messages

  • How to increase font size in the report when emailed as PDF

    How do I increase the font size of the report when I distribute the report as PDF to the users. I tried using different paper sizes in the LayOut tab in Broad Caster and Orientations. When I open the PDF from the mail I see the report shrinked and not readable, but when I magnify the report the numbers are visible with no loss in quality. I cannot give the users to print a shrinked PDF file. I would like to see a visiable font and print the same size what I see.

    The size of the font is increased by selecting a bigger page size while emailing. This will automatically increase the size of the page.

  • Font size in abap reports

    hi all,
    is it possible to increase font size in abap reports.
    i am trying to print a Zreport which is having line size of 325 . so i decided to print on A3 landscape . it seems to be printing very small size ,cannot be readable! . in this case i have to increase the font size of the output.
    is their possibilities to do.
    reply asap,
    regards
    vijay

    Hi Vijay,
    You can increase the font size during printing dynamically. In the Device Types -> formats, which ever format you are using, you can ask your Basis person to edit the format and increase the font size. Also the page setup like portrait, landscape, CPI, etc can be done there itself.
    See the below link it  will help...
    http://www.sap-img.com/basis/how-can-i-print-a3-format-in-sap.htm
    Regards,
    P. Kumaravel.

  • How to increase font size in report

    Dear ABAPers,
    I got one requirement that i hav to increase font size in report.
    I am using Write statement in report.
    PL guide me regarding this.
    Regards,
    Simha.

    hi shakya,
    I have tried that,
    i think font size cannot be increased.....it wil auto adjust based on ur no of coloumns and records.... try to reduce the no of coloumns u r displaying, then it will auto adjust itelf.
    With regards,
    S.Barani

  • 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

  • Need to increase font size of header in ALV

    Hi,
        I have a requirement to increase the font-size of header in the output ALV report. Also, i need to remove some of the standard icons from the output ALV using IT_EXCLUDING ?...Could any of you help me with this ?

    Hi friend,
    first, to increase font size of ALV header you can build a header manually as below:
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    * EXPORTING
    *   I_INTERFACE_CHECK                 = ' '
    *   I_BYPASSING_BUFFER                = ' '
    *   I_BUFFER_ACTIVE                   = ' '
    *   I_CALLBACK_PROGRAM                = ' '
       I_CALLBACK_PF_STATUS_SET          = 'PF_STATUS_SET '
       I_CALLBACK_USER_COMMAND           = 'HTML_TOP_OF_PAGE'
    *   I_CALLBACK_TOP_OF_PAGE            = ' '
    *   I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
    *   I_CALLBACK_HTML_END_OF_LIST       = ' '
    *   I_STRUCTURE_NAME                  =
    *   I_BACKGROUND_ID                   = ' '
    *   I_GRID_TITLE                      =
    *   I_GRID_SETTINGS                   =
    *   IS_LAYOUT                         =
    *   IT_FIELDCAT                       =
    *   IT_EXCLUDING                      =
    *   IT_SPECIAL_GROUPS                 =
    *   IT_SORT                           =
    *   IT_FILTER                         =
    *   IS_SEL_HIDE                       =
    *   I_DEFAULT                         = 'X'
    *   I_SAVE                            = ' '
    *   IS_VARIANT                        =
    *   IT_EVENTS                         =
    *   IT_EVENT_EXIT                     =
    *   IS_PRINT                          =
    *   IS_REPREP_ID                      =
    *   I_SCREEN_START_COLUMN             = 0
    *   I_SCREEN_START_LINE               = 0
    *   I_SCREEN_END_COLUMN               = 0
    *   I_SCREEN_END_LINE                 = 0
    *   I_HTML_HEIGHT_TOP                 = 0
    *   I_HTML_HEIGHT_END                 = 0
    *   IT_ALV_GRAPHICS                   =
    *   IT_HYPERLINK                      =
    *   IT_ADD_FIELDCAT                   =
    *   IT_EXCEPT_QINFO                   =
    *   IR_SALV_FULLSCREEN_ADAPTER        =
    * IMPORTING
    *   E_EXIT_CAUSED_BY_CALLER           =
    *   ES_EXIT_CAUSED_BY_USER            =
      TABLES
        t_outtab                          =
    * EXCEPTIONS
    *   PROGRAM_ERROR                     = 1
    *   OTHERS                            = 2
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    in your code, write 2 subroutines name: HTML_TOP_OF_PAGE and PF_STATUS_SET
    FORM html_top_of_page USING r_top TYPE REF TO cl_dd_document.
      DATA: text TYPE sdydo_text_element.
      DATA: s_table TYPE REF TO cl_dd_table_element.
      DATA: col_key TYPE REF TO cl_dd_area.
      DATA: col_info TYPE REF TO cl_dd_area.
    ** split TOP-Document
      CALL METHOD r_top->vertical_split
        EXPORTING
          split_area  = r_top
          split_width = '50%'.
    *    IMPORTING
    *      right_area  = a_logo.
    ** fill TOP-Document
      text = 'Example of a Heading'(201).
      CALL METHOD r_top->add_text
        EXPORTING
          text         = text
          sap_style    = 'HEADING'.
      CALL METHOD r_top->new_line.
      CALL METHOD r_top->new_line.
    CALL METHOD r_top->new_line.
      CALL METHOD r_top->new_line.
      CALL METHOD r_top->add_table
        EXPORTING
          no_of_columns = 2
          with_heading  = ' '
          border        = '0'
        IMPORTING
          table         = s_table.
      CALL METHOD s_table->add_column
        IMPORTING
          column = col_key.
      CALL METHOD s_table->add_column
        IMPORTING
          column = col_info.
      text = 'A key value marked'(202).
      CALL METHOD col_key->add_text
        EXPORTING
          text         = text
          sap_emphasis = 'Strong'.
      CALL METHOD col_info->add_gap
        EXPORTING
          width = 6.
      text = '600' .
      CALL METHOD col_info->add_text
        EXPORTING
          text      = text
          sap_style = 'Key'.
      CALL METHOD col_info->add_gap
        EXPORTING
          width = 3.
      text = 'Test'.
      CALL METHOD col_info->add_text
        EXPORTING
          sap_fontsize = cl_dd_area=>large "set font size
          text         = text.
    endform.
    *&      Form  pf_status_set
    *  Set pf status for alv list
    *      -->PT_EXTAB   tab for excluding fcode
    FORM pf_status_set USING pt_extab TYPE slis_t_extab.
      DATA:
            ls_extab TYPE slis_extab.
    *-sort up
      ls_extab-fcode = '&OUP'.
      APPEND ls_extab TO pt_extab.
    *-- sort down
      ls_extab-fcode = '&ODN'.
      APPEND ls_extab TO pt_extab.
      SET PF-STATUS 'STANDARD' EXCLUDING pt_extab. "change standard as your status
    ENDFORM.                    "pf_status_set
    You can refer the set font size in report DD_STYLE_TABLE.
    regards,

  • "apple-+" does not increase font size in preview pane in mail.app 4.2

    i have letterbox http://harnly.net/2009/software/letterbox/letterbox-beta-4-for-snow-leopard/ installed on my machine. before the SL upgrade, i could hit cmd-+ and increase the font size of the message i am viewing. that was super convenient!
    i can't do it any more. any ideas anybody on how to bring that back? btw, if i open a separate window for the message, i can use cmd-+ to increase font size. but no more can i use it in the preview window.

    the obvious suspect would be letterbox. it's beta (=bugs) and I've also heard report that it's incompatible with 10.6.2. you can try uninstalling it and see if that fixes the issue.

  • How to Increase Font Size in Normal List Display

    Hi All,
    I needs to increase the font size in List (Normal List not ALV). How can i achieve this one. I have used Print-control option but its not working fine for me .
    Please help me in this. Thanks in Advance.
    Regards,
    Sreedhar.T

    >
    Gautham Vangaveti wrote:
    > You can use classes for the same.
    >
    > check sample program DD_STYLE_TABLE.
    Are you sure that we can enlarge the font size in classical reports?
    I think we can utmost use  intensified/emphasize options as an work around.
    Cheers

  • How to manage the font size for webRfc Reports

    Hi All,
    How to manage(increasing or decreasing) the font size for webRFC Reports.
    Regards
    Sri

    Hi,
    Can you try republishing and see ....
    Ideally the font size would be controlled by the <font tag and if you have made changes correctly it should be reflected correctly.
    Check whether the HTML code is also correct.
    Thanks & Regards,
    Vijith

  • After ios5 upgrade can no longer increase font size on iPad or iPhone, any suggestions apart from getting new glasses!! Also the backlight on the iPad isn't as bright as before. Any ideas?

    After ios5 upgrade can no longer increase font size on iPad or iPhone, any suggestions apart from getting a new pair of glasses! Also, the backlight on the iPad isn't as bright as before the upgrade, any ideas?

    Hi Zak, thanks for the reply.
    The filename is whatever is set to be the background fill of the site (I presume the desktop background fill, if mobile versions are set to be different). I've tried a number of different files, sizes and types/formats and the result is still the same, so as far as I can tell it's not the file itself causing the issue...
    It uploads all pages (desktop, tablet and phone versions), .css files and .html files, and even the favicon .ico file but then hangs on the first image file, which incidentally is the background fill image.
    The total number of files is said to be 154. It gets stuck on file number 24.
    Yes the "Resume" dialog appears and upon clicking it just attempts to continue from the hang at the first image file (apparently 66% of the way through).
    Re: the "BC site has changed" part - I thought as much but figured worth reporting.
    ... Incidentally, as I've written this reply, I left the "Resume" dialog open (ie neither clicking "resume" or "cancel" and just as I've finished typing it appears to have published the site successfully?!! (I must've left it for roughly 5 minutes)
    Bizarre behaviour... I'm not sure if this will repeat itself with other sites but I'm sure there's a bug here that needs looking at regardless...?!
    Any thoughts?

  • In mail, how do you increase font sizes in a reply.  Cannot find things like "underline", "italic" etc either.  Where are they?  Entourage was easier!!

    In mail, how do you increase font sizes in a reply.  Cannot find things like "underline", "italic" etc either.  Where are they?  Entourage was easier!!

    Preferences/Compsing/set to Rich Text (only then you can use bold etc).
    Then Rightclick the toolbar in Mail, and clcik Customize the toolbar.
    Put the icons (with or without text) that you want on your toolbar.

  • Bold chars & increase font size in ALV Top of Page - OOPS

    Hi,
    I am using ALV OOPs to display my data.
    I am splitting the container and using top container to display headings in following way:
    data:   top TYPE REF TO cl_dd_document
      CREATE OBJECT top
        EXPORTING
          style = 'ALV_GRID'.
      lv_fontsize = cl_dd_document=>large.
    lv_text = 'HEADING'.
      CONDENSE lv_text.
      CALL METHOD top->add_text
        EXPORTING
          text         = lv_text
          fix_lines    = 'X'
          sap_fontsize = lv_fontsize         "cl_dd_document=>large
        CHANGING
          document     = cv_top.
    But the heaidng is not displayed with high font size and is similar to the text with cl_dd_document=>medium
    How can I increase font size of heading.
    Thanks!

    Hi Vasu,
    Use SAP_STYLE parameter in the method.
    Value will be HEADING or KEY.
    Regards,
    Amitava

  • Increasing font size in Itunes 8

    OK, I know Itunes doesn't really allow you to increase font size over the "Large" setting. However, Robert Jacobson previously posted how to edit the ituneslocalized,qtr file in Itunes7 to change the default "large" font to 32pt.
    The font size for the "large" font in iTunes 7 is stored at offset 0x5358D, and for iTunes 6 at 0x446BE in the file
    \Program Files\iTunes\iTunes.Resources\en.lproj\iTunesLocalized.qtr
    By default the "large" size is 0xA (10 pt), but you can change it so say, 0x24 (36 pt) to make it very large.
    Anyone know how to do this in Itunes8?

    The offset for iTunes 8.0 is
    0x7D91C
    For iTunes 8.0.1 it is
    0x7DE38
    Hex editing isn't that hard! Trust me, you can do this without me writing a script for it.
    Download XVI32 (it's free):
    http://www.chmaas.handshake.de/delphi/freeware/xvi32/xvi32.htm
    Unzip the file to a folder and run xvi32.exe.
    First, quit iTunes if it is running.
    Then, *make a backup* of <pre>C:\Program Files\iTunes\iTunes.Resources\en.lproj\iTunesLocalized.qtr</pre>
    Open the above file in xvi.
    From the "Address" menu, select "Goto". Click the radio button "hexadecimal", then put $7D91C (or $7DE38 for iTunes 8.0.1) and click OK.
    The cursor should end up on "0A".
    From the "Tools" menu, select "Encode Number". In the "Number" box, type the font size you want (the default "large" size for iTunes for Windows is 10.). Select the "byte (1 byte)" radio button. On the right, select "Overwrite at current address". Then click OK.
    Save the file and close XVI32.
    Wasn't that easy?
    Now, if you open iTunes and select the "Large" font for the List Text, it should be the size you specified.

  • Please help! How to increase font size in RemoteApp?

    I have weak-sighted user.
    There is some RemoteApp running on Windows Server 2008 R2 Standatd x64.
    I need to increase scale of fonts to 125% and use 120 dpi fonts for this user.
    But  increasing scale of fonts disabled on RDP Session.
    Option to use 120 dpi font doesn't exist.
    On Windows Server 2003 I can locally increase scale and dpi and this apply for RDP sessions of all users.
    If I locally increase font scale on Windows 2008 R2 this doesn't apply on RDP Session.
    I tried to use desktop customisation to increase fonts of Windows Title, Menu and etc for this user. But I can't increase system fonts on dialogs. 
    Please help me to increase font size for my RemoteApp.

    This is an old thread, but the problem persists on W.Server R2
    Interestingly, as Microsoft removed this functionality to solve this problem, wich in my case, with thin client's connected to the server, the problem is aggravated.
    It seems that there is not the slightest intention to solve this problem by Microsoft, since it is understood that each end-user settings, is completely independent of the configuration that should be the default Server or System Confg.
    Jesus..!!

  • How to increase font size in menu bars

    Hi, have eyesight dissability, need to increase font size in all menu bars for my brand new G5
    have any ideas? thanks
    Pepe

    System Preferences>Universal Access. Or change the resolution to 1344 X 840. System Preferences>Displays.
    BTW if you have a MacBook Pro it is not a G5. It is an intel Mac. G5 Macs were discontinued years ago.

Maybe you are looking for

  • Command line treating a *.class file

    I don't know if its possible, but can a jar be set up to run like a normal executable at the command line? Like dir, ls, tar, gzip, etc... So that the command line doesn't have to be built with the first java XXXClass So: %> java XXXClass becomes %>

  • Unable to merge to panorama

    Merge to Panorama no longer works in CS4. I have reinstalled CS4 to no avail and am using the latest LR 3.6. OS is Win 7. All works up until I get to the Merge window in CS4 where I can select any options and then select the "OK" button and nothing h

  • I lost a custom made action. Is there any way to get it back?

    I'm doing a stop motion project for school. I have  about 150 images so obviously if I wanted to apply any change to all of  them I'd make an action. So I did and with much success. It was very  simple, just Cross Process curve with a few changes and

  • TS1702 I HAVE BEEN BILLED FOR APPS I DID NOT ORDER , ANYONE ELSE EXPEIRENCED THIS?

    I HAVE BEEN CHARGED FOR APPS WHICH SHOULD HAVE BEEN FREE, THIS HAS HAPPENED TWICE NOW, I FEEL MY DETALS ARE NOT AS SECURE AS APPLE MAKE OUT, HAS THIS HAPPENED TO ANY ONE ELSE?  HOW DO I REMOVE MY CARD DETAILS? I FIND THE WEBSITE VERY CONFUSING AND UN

  • Where is the Magi Wand tool?

    I have photoshop elements 12, but I can't seem to find the magic wand tool, is it here? David