Header font goes out of column width in fit to page option for print

Hi,
I've tried to print wide report as landscape with fit to page option. it printed out good but when i saw column header, header has missed some words.for e.g my column name is "Legacy Order" and it's showing only "Legacy Or" even i wrapped that column. it's works fine with 90% scalling option.i'm still confusing because there are over 1000 reports existed and i think i will have to touch all reports to print correctly.Older version took cares all of those things.
Any idea would be great for me.
Thanks,
Jay

Boy ... I thought I was watching a scene from Dragnet as I've just read this thread for the first time .... 8-)
Sgt Friday: did you see the culprit ma'am?
Woman: yes I did
Sgt Friday: was he tall?
Woman: yes and he reminded me of my son-in-law who bakes cookies ... and ...
Sgt Friday: (interrupts): just the facts ma'am ..
Woman: oh ... of course
Sgt Friday: did he use Discoverer?
Woman: yes he did
8-)
I'd love to see a 'Chips' one next:
Ponch: oh look ... a Discoverer report going wild
Jon: I'll just jump onto this computer and pull the plug ...
Ponch: oh no ... there's a lady with her kids running the report, careening out of control we didn't see ...
Jon: No problem, I'll just slow it down carefully and bring this server to a controlled halt
Woman: thank God you two came along and saved my report
camera pans away with everybody smiling and frozen in time ...
8-)

Similar Messages

  • Use column in 2d array as page number for 3d array

    I have a 2D array coming from a database containing (I simplify a bit for this example)
    column 0: plot number
    column 1: x values
    column 2: corresponding y values
    to be able to process everything and later put it in a graph, i would like to convert it into a 3d array where the page number is the plot number (so column 0) from my original array. I tried two different approaches you can see in the attachment, both give unwanted results:
    1. the resulting array contains two pages with only x2 and y2 for each plot
    2. the resulting array contains two pages with only x1 and y1 for each plot
    What am i doing wrong here?
    As a second difficulty the order in the example 2d array is logical (x1 of plot 1, x1 of plot 2, x2 of plot1.....) .
    The order in the actual array might just as well be as the example in the second attachment
    Thanks!
    Attachments:
    bad order.PNG ‏2 KB
    Move column to page.PNG ‏18 KB

    Attached (LV 8.0) is something I quickly whipped up using the above 2 assumptions as being true. I did not fully test this, so be sure to put it through its paces.
    Your solutions centered on using Insert Into Array. The reason this won't work is because your first x/y pair could be from plot 1 (the second page). But, you cannot insert a second page into an empty array.  I opted for pre-creating the 3D array and then using Replace Array Subset. 
    OK, I posted this before I got the notification that you answered my questions. Given that, then how is one supposed to know the order of the X/Y pairs? Obviously, your example used strings for demonstration. Presumably the real values will be numbers. In this case, how is one supposed to know where to place the new X/Y pair?
    Corollary: Arrays must be rectangular. This means that if plot 0 has 3 XY pairs, but plot 1 has 5, then the 3D array MUST have 5 rows for each page. This means you will have empty rows on page 0. Given this, you are better off creating an array of clusters. Each cluster would contain your XY pairs as a 2D array, and each one can have different number of rows, as shown in this figure:
    Message Edited by smercurio_fc on 03-11-2009 10:43 AM
    Attachments:
    2D Array to 3D Array.vi ‏17 KB
    Example_VI_FP.png ‏5 KB

  • How do you import RSS feeds into FF? (i have exported OPML file out of IE8 but can't find import option for feeds in FF)

    how do you import RSS feeds into FF? i have exported opml file out of IE8 but can't find how to import this into FF?

    See OPML Support: https://addons.mozilla.org/firefox/addon/2625

  • Column width in JTables.Help needed!!!!

    Hi
    I am trying to print out a JTable and have had a few problems along the way but have managed to solve them all so far apart from this one. When the JTable is shown on screen it doesn't make the columns wide enough . I ahev managed to find some code from these forums but it doesnt resize correctly if the Column headings contain more text than any of the data (If you know what i mean). Below is the code i am using
    public void sizeAllColumnsToFitData (JTable table)  {
        for (int col = 0; col < table.getColumnCount (); col++)  {
          TableColumn curColumn = table.getColumn (table.getColumnName (col));
          if (curColumn == null)
            continue; // not a valid column skip
    //  Translate to the model
          int modelColumn = curColumn.getModelIndex ();
    //  Loop for all rows in this column looking for the widest piece of data
          int maxColumnWidth = 0;
          for (int row = 0; row < table.getRowCount(); row++)  {
            TableCellRenderer curCellRenderer = table.getCellRenderer (row, modelColumn);
            Object value = table.getValueAt (row, modelColumn);
            Component curRenderComponent = curCellRenderer.getTableCellRendererComponent(table, value, true, true, row, modelColumn);
            Dimension cellDimension = curRenderComponent.getPreferredSize ();
            if (cellDimension.width > maxColumnWidth)
              maxColumnWidth = cellDimension.width;
    //  Set the column width to fit the maximum
          Dimension cellSpacing = table.getIntercellSpacing ();
          curColumn.setPreferredWidth (maxColumnWidth + (cellSpacing != null ? cellSpacing.width : 1));
      }I pass my table into here and it works fine apart from in doesnt take into consideration the size of the headings. Please Help ME!!!!

    java.lang.NullPointerException
         at database_testing.SLAMS.sizeAllColumnsToFitData(SLAMS.java:473)
         at database_testing.SLAMS.getInfo(SLAMS.java:364)
         at database_testing.SLAMS.getInfo_actionPerformed(SLAMS.java:434)
         at database_testing.SLAMS_getInfo_actionAdapter.actionPerformed(SLAMS.java:527)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1764)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1817)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:419)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:257)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
         at java.awt.Component.processMouseEvent(Component.java:5134)
         at java.awt.Component.processEvent(Component.java:4931)
         at java.awt.Container.processEvent(Container.java:1566)
         at java.awt.Component.dispatchEventImpl(Component.java:3639)
         at java.awt.Container.dispatchEventImpl(Container.java:1623)
         at java.awt.Component.dispatchEvent(Component.java:3480)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3450)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3165)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3095)
         at java.awt.Container.dispatchEventImpl(Container.java:1609)
         at java.awt.Window.dispatchEventImpl(Window.java:1590)
         at java.awt.Component.dispatchEvent(Component.java:3480)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:450)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)Also i think it may have something to do with my headerRenderer being null cus if i replace the line TableCellRenderer headerRenderer = curColumn.getHeaderRenderer(); with TableCellRenderer headerRenderer = table.getTableHeader().getDefaultRenderer(); then it doesnt come up with an error but only increase the size of the coluns (where neccessary by 2 characters)

  • Column widths not saving

    Hello,
    We have recently found an issue with column widths e.g When you are in a sales order and you press tab in the item no. field, the list of items comes up. If you go to form settings and choose to group by one of the fields it then shows the items grouped by whatever you chose. If you then change the column widths in this window, e.g for item no. and item
    description and then come out of that screen and go back in, the column widths have gone back to
    how they were oringinally.
    SAP Support have said they have managed to reproduce this in both versions.  Please can I request this to be fixed in a future patch release as it is very important to one of our customers.
    Many thanks,
    Kate

    Post a link to the site, or alternatively copy and paste the
    code in here.

  • Resize column width for JTable without column headers?

    Hi,
    I find that for me to resize columns of a JTable by using
    mouse dragging, I MUST have column headers and then drag
    column headers to resize them. Is my understanding correct?
    Actually, I need to have a table without header columns.
    How can I use mouse to resize column width by dragging?
    The background for this request is that I am putting a
    complex table as another table's column header and I hope to
    be able to resizing the complex table by mouse dragging.
    Thanks very much,
    David

    Hi,
    I think you have mistake there. Try
    <style type="text/css">
    table.apexir_WORKSHEET_DATA td {
    white-space:nowrap !important;
    td[headers="DESCR"] {
    width:300px !important;
    max-width:300px !important;
    #apexir_DESCR {
    width:10px;
    max-width:300px !important;
    </style>And you can try add
    table.apexir_WORKSHEET_DATA {
    width: 100% !important;
    table-layout: fixed !important;
    }Regards,
    Jari
    My Blog: http://dbswh.webhop.net/htmldb/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • Column Width Size

    Hi All,
    I have table formate report. .
    E.g
    Column Header Name like below
    Agent Name (Single row) should be spilit like below
    Agent
    Name
    How to set column width size
    i tried below option but not replicated my report.
    Column Properties-->style-->Additional Formatting Options change the width
    Width:10 Height:0
    Lpad:0 Rpad:0
    Thanks

    Balaa wrote:
    Hi,
    Try the below for your column heading.
    "Agent &nbps; Name"
    Thanks,
    Balaa...Hi..When I use this...
    My column in report when run..shows the same "Customer &nbps; Name"
    Please help.

  • My phone spazzes and randomly does stuff on its own like typing a bunch of random letters, or scrolling up/down a page, or going out of an app. What can be done about that?

    I have a 5S and I've had it since december. ever since i got it I've had trouble whit it. It spaces out at random times, types stuff on its own, goes out of applications, scrolls up/down a page etc. This happens almost daily and the only thing I can do about it is lock my phone, go back in, quit all my apps... Along with that now my touch ID has not been working. Although it has started today, I am worried.

    I have an iPhone 6 and have been having this issue since I got it in December 2014. Apps open on their own, scrolling up and down, etc. It's like a ghost is touching the screen. It seems to be the worst when my Verizon connection is only at 3G or my wifi strength is low. I'm not sure if it's an iPhone thing or a carrier issue?? Any ideas?

  • Setting the CheckBoxGroup column width

    Hello guys
    I'm using the IWDCheckBoxGroup UI element to display a list of items in my WD application.
    It is working fine, but the project designer asked me, to set it width to 100%, to fill all the screen width ( that is inside a EP IView )
    My problem is: I'm using 3 columns and it does'nt respect the proportion (33%,33%,33%). Put all the columns agrouped in the left ( or center ) is not an option
    Is there any way to set the columns width in the CheckboxGroup?
    Thanks

    Tks for your answer, but it didn't solve my problem.
    I need to use 100% becouse my checkboxgroup MUST to fill all the page width. My problem as I said is that I don't know how to set the width of the columns. I'm using 3 columns in my checkboxgroup and its widht becomes diferent in runtime.
    To create proportional widths I think that I need to set it own width, not the width of the group.
    Is it possible? I read the API and didn't find any references about this
    Tks again

  • [kde - Homerun kicker] How change columns width

    I found a new Kde launcher a few months ago, I find great (of course this is only my opinion).
    It is the smaller version (not full screen) Homerun , which is available in Aur at the following address : https://aur.archlinux.org/packages/kdep … s-homerun/ , which can be seen in the following link : http://blogs.kde.org/2014/01/29/homerun-120 , although the current version is slightly advanced.
    This launcher version not full screen, works like Lancelot , but is more simply and more faster.
    Moreover, it displays the recently used applications and the recently used documents .
    However, I have a slight regret about this launcher : the column width is fixed and can not be changed.
    Does anyone know how to change the columns width ?
    Thank you in advance for your help.
    Last edited by Pafrapé (2014-05-02 21:37:58)

    @Julie – you can change column width by alt + shift + dragging left or right cell sides without changing the overall size of the table.
    For other table goodies see:
    http://indesignsecrets.com/18-handy-table-shortcuts.php
    Hope that helps!
    Uwe

  • ATA190: Web GUI page options are greyed out

    ATA190: Web GUI page options are greyed out and device failed registration to CM 10.5
      do anyone have a resolution o this issue?

    Options Greyed out issue can be due to the below Bug, which is listed as just cosmetic:
    ATA190: Web GUI page options are greyed out
    CSCur53864
    Description
    Symptom:
    ATA190: Web GUI page options are greyed out.
    Most of the options in the Web GUI of the ATA 190 are greyed out and cannot be configured. There is no option in CUCM configuration page or the ATA190 Web GUI to unlock the configuration options.
    Here is a list of a few of the pages that are greyed out and do not allow any editing:
    Network Setup > Basic Setup > Internet Settings
    Network Setup > Basic Setup > Time Settings
    Network Setup > Advanced Settings > VLAN
    Network Setup > Advanced Settings > CDP & LLDP
    Administration> Log > Log Module
    Administration> Log > Log Setting
    Administration> Log > Log Viewer
    Conditions:
    ATA 190 Devices running firmware version running 1.1.0 (006)
    Workaround:
    These options are not configurable and are supposed to be view only. The issue is cosmetic.
    Most of the Configurable settings are available under the Voice Menu and Administrative Menu.
    -Terry
    Please rate all helpful posts

  • Embedding fonts and images for printing (press quality PDF)

    I have a question about a document I have produced in InDesign that needs to go to the printers. They have told me to make sure it is a print ready document with all of the fonts and images embedded. When I convert an indd document for printing 'locally', I normally just use the Adobe PDF presets and select press quality. I thought ID works its magic and does everything required to make it print ready. Is there anything else I need to do regarding fonts and images to make the PDF ready for print?
    Thanks
    Mark

    Thank you.
    As to bleeds, the printers came back and said my pdf is okay but that yes, I need to set an extra bleed edge of minimum 3mm. Do I set this when converting to the print quality pdf or do I set this whilst working in the actual INDD document itself?
    Is the bleed then on every page regardless of the content?
    What are the steps for setting bleed and crop marks. Does that mean when I place an image for example on a page the image needs to hang slightly off the edges by 3mm or am I barking up the wrong tree?

  • The finder window for an external USB hard disk suddenly started separating files by time (today, yesterday, etc.) and stopped allowing me to change column width, order, etc. Also the header bar shifted to flat white from gray.

    The finder window for an external USB hard disk suddenly started separating files by time (today, yesterday, etc.) and stopped allowing me to change column width, order, etc. Also the header bar shifted to flat white from gray.
    All was normal until the icon for the disk stopped showing up on the desktop when I would plug it in. I rebooted the computer, and the disk icon now shows up but this new look to the finder window started as a result. The hard disk does not have this problem when I use it on another Mac running Snow leopard. Also, two other external hard disks that I use on this computer running lion 7.4 still have the normal header bars with columns that can be reordered, etc.
    I have tried looking in preferences and other places but have not seen this discussed. 

    Well duh - I finally figured out that somehow in the View options for the hard drive, the "arrange by" option had been changed to "by date" from "none". Not sure how that happened, I had never used the "view options" menu tem before. Changing "arrange by" back to "none" gets the gray column headers and the collapsible folder icons back. 

  • How to set column width based on header width?

    I have a column that will only hold 1 character. This is good, but I want the Column width to match the column header.
    For example,
    Currently I get:
    select * from table;
    I NAME
    1 ROBERT
    The problem is, I want the Column header spelled out (in this case it's just ID)
    ID NAME
    1 ROBERT
    Better Yet,
    if i did:
    select ID "ID NUMBER", NAME "FIRST NAME" from table;
    I'd like to see:
    ID NUMBER FIRST NAME
    1 ROBERT
    (Centering the ID within the Column width would be good too, but that is "gravy")
    Any thoughts? I've been trying:
    COLUMN ID FORMAT A10 (which obviously didn't work!)
    Thanks,
    KSL.
    Edited by: leonhardtk on Aug 23, 2010 11:55 AM

    If you use tags it'll be easier to see what formatting effects you're talking about.
    Does <a href="http://download.oracle.com/docs/cd/E11882_01/server.112/e10823/ch_six.htm"><tt>col id head "ID Number" format a9</tt></a> do what you want?
    Edited by: William Robertson on Aug 23, 2010 6:50 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Column's Right Alignment goes out with CR in format Mask like NNN,NN0.00CR

    I am working in Reports 6i. For a numeric calculated column, I give format mask NNNN,NNN,NNN,NN0.00CR. Due to CR, right alignment of the column goes out. That is rows for which CR is NOT printer are also aligned at right. A blank space should be left at the end of every row when no CR is printer. In this way numeric data is right aligned and readability is not disturbed.
    Pl. help.
    Thanks in anticipation.

    I am working in Reports 6i. For a numeric calculated column, I give format mask NNNN,NNN,NNN,NN0.00CR. Due to CR, right alignment of the column goes out. That is rows for which CR is NOT printer are also aligned at right. A blank space should be left at the end of every row when no CR is printer. In this way numeric data is right aligned and readability is not disturbed.
    Pl. help.
    Thanks in anticipation.
    Muhammad,
    I tried this on 6.0.8.14.2 version of Reports 6i and it aligned properly (i.e., spaces where present for those values without CR). I originally had the Arial font which as you know is not a fixed font and in this case, the spacing was not exact. I switched to Courier and the output was much more readable for the numeric values, especially with the spacing.
    Regards,
    Jim Safcik
    Thanks Jim Safcik. I changed the font of that column to Courier and it resolved the problem. But I am using Times New Roman font which creates above alignment problem.
    It would be nice if we have an other solution which is NOT font dependent.
    However I appreciate your guidance and knowledge.
    Pl. guide.
    Thanks.

Maybe you are looking for