White background(no borders) with desformat=spreadsheet

Hi
I created a JSP report (that can have an excel output or a pdf output depending on desformat being passed).
However, I have some issues when i pass desformat as spreadsheet. The report output is not well formatted and the cells come without a border - that is output is displayed in a white background.
Is there some setting that I am missing out on?
Any inputs?

Make sure that you allow pages to choose their colors and that you haven't enabled High Contrast in the Accessibility settings.
*Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
*http://kb.mozillazine.org/Website_colors_are_wrong
*http://kb.mozillazine.org/Websites_look_wrong

Similar Messages

  • Pls help:sending oracle reports with desformat=spreadsheet to email

    Is there a way to send the reports with desformat=spreadheet to email(destype=mail). I tried to execute the commandline with destype=mail desname=[email protected] desformat=spreadsheet but I am getting a report with html type attachment. How could I make it xls(excel) instead of html

    When having lots of repeating frames and fields placed in a complex pattern, the Oracle Reports doesn't know how to place them in the .xls cells.
    You ought to have a second layout for the report (containing the same data) that would print when the desformat = spreadsheet and would be be rather simple in comparison to the one that would print when desformat=pdf/html.
    In case you have several repeating frames it is best to have all the fields in those frames placed and vertically aligned on the same row in the layout, from left to right. This should give a reasonable output.

  • PDFs that have white backgrounds always print with small dot grids instead of plain white

    If I print out of the browser it's white, but when i save the PDF and print it later it has these small dots in a grid, is there a setting in Adobe Reader that is doing that?

    I have the SAME problem. My pdf was created by exporting a text document from pages. Anyone can HELLLP????

  • Desformat=spreadsheet, no gridlines.  Please help!

    I'm using a paper layout to format my report that I plan to run with desformat=spreadsheet. After deploying the report definition file (tried both .xml and .rdf) and running the report via an http request to rwservlet, my report is returning in Microsoft Excel showing no gridlines. I have tried setting the fill colors, cell borders, etc in the paper design/layout formats but none of these options work.
    How can I have the excel spreadsheet enable gridlines by default? Thank you in advance.
    Andre

    We've seen this bug on machines running IE6 with a certain security patch (I forget its number). There's a thread in the Metalink reports forum about it. It appears to be somewhat tied to another problem where IE runs the report twice (you can see that in Showjobs. You're seeing the problem in 6i; I believe it persists in 9i.
    The workarounds are (1) set Acrobat so it doesn't open within IE or (2) switch to a different browser, like Netscape. For workaround 1, Start Acrobat Reader, Choose File -> Preferences -> General, Uncheck Web Browser Integration
    There's some evidence that it occurs more often with urls that include single quote characters. I think it's worse with XP, but I don't have any proof.
    If you check Adobe's site, you will see this isn't just an Oracle Reports problem. I think we're waiting for Microsoft on this one, so don't hold your breath for a quick fix.
    -- jim

  • White background of image created in Photoshop prints as grey through iPhoto postal ordering service.

    I have created an image in Photoshop with a white background (I stuck with the default white background that the new image gave me). Over the top of this, I placed some images, saved it as a JPG, imported it into iPhoto and ordered it as a postcard-sized picture.
    When I received it in the post, the whole image had printed with a grey overtone: the white background was in fact grey, and the pictures over the top were darker.
    How can I resolve this to print my image with a truly white background through iPhoto's ordering service?
    Many thanks,
    Adam

    If unchecking the scene-referred profiles box clears the display problem in Photoshop, you most likely have hit a known bug with defective monitor profiling packages building defective monitor profiles that affect Photoshop and After Effects — specifically, the defective profile is erroneously marked as "scene referred."
    Version 4 ICC Profiles: If your are using v4 printing profiles, try Googling for more information...some symptoms of this bug are Photoshop prints a light cyan or blue in the page white areas. The Fix is to use Version 2 printer profiles.
    there is another old known issue that has to do with trying to Hard Proof simulate press conditions (printing cyan in whites) but i am not sure what you are trying and i can't recall it right now
    if those aren't it upload these screenshots of your workflow:
    show full Photoshop window including zoom% and Docuent Profile in lower left corner

  • What is the easiest way to take out white background in elements 12?

    what is the easiest way to take out white background in elements 12?

    Try this:
    Open the program and go to Expert tab
    Double click the background layer to convert it to a regular layer
    Get the magic wand tool out of the toolbox. On the tool's option bar, check "contiguous" or leave it unchecked depending on the presentation of the white background. Start with tolerance setting 32; you may have to adjust it down - - depends on picture
    Left click on a white area and hit delete on keyboard
    Press CTRL+D to get rid of the marching ants
    If you encounter a problem, post a representative picture here for targeted guidance. You can do that via the camera icon in the reply box, but not in an e-mail reply.

  • How do I get a white background with black lines

    How do I get a white background with black lines and characters on my screen. To run the program, copy it out and delete the ` and it should go. If it does not compile on your machine, I would like to know. There is a test on about line 34 for changing the colors.
    `//Simple program to test Graphics2D.setBackground(white) obtained from BufferedImage.getGraphics()
    `import java.awt.Frame; //Object>awt.Component>Container>Window>Frame
    `import java.awt.Insets; //Object>awt.Insets
    `import java.awt.image.BufferedImage; //Object>awt.Image>awt.image.BufferedImage
    `import java.awt.Graphics; //Object>awt.Graphics
    `import java.awt.Graphics2D; //Object>awt.Graphics>Graphics2D
    `import java.awt.Color;
    `import java.awt.BasicStroke;
    `public class TstBgCol { //frame & BufferedImage in pixels & BasicStroke in points ????????????
    ` TstBgCol tstBgCol;
    ` public static void main(String[] args) {
    ` TstBgCol tstBgCol=new TstBgCol(); tstBgCol.tstBgCol=tstBgCol;
    ` tstBgCol.main2(); tstBgCol.byteBinary();
    ` }
    ` Graphics fgcontext;
    ` Frame fram; Insets insets; //borders of the Frame, Container.getInsets
    ` int bIWid=1272,bIHgt=876; //set for 1280x1024 screen on windows XP & matches paper ratio 10.6x7.3
    ` int unusedPixHgt=84;
    ` void main2() {
    ` fram=new Frame();
    ` fram.addWindowListener(new java.awt.event.WindowAdapter() { //anonymous inner class
    ` public void windowClosing(java.awt.event.WindowEvent e) { System.exit(0); }
    ` });
    ` fram.setVisible(true);
    ` insets=fram.getInsets(); //(Container)getInsets() works after displayable
    ` System.out.println("Insets l,t,r,b:"+insets.left+","+insets.top+","+insets.right+","+insets.bottom);
    ` fram.setSize(insets.left+bIWid+insets.right,insets.top+bIHgt+unusedPixHgt+insets.bottom);
    ` fgcontext=fram.getGraphics(); //creates Graphics context for this component
    ` }
    ` void byteBinary() {
    ` BufferedImage buIm=new BufferedImage(bIWid,bIHgt,BufferedImage.TYPE_BYTE_BINARY); //can be resized
    ` Graphics2D bIG2=buIm.createGraphics(); //returns Graphics2D context
    ` //change to if(true) to use either of the following two lines
    ` if(false) bIG2.setBackground(Color.white); //does not change the background color to white
    ` if(false) bIG2.setColor(Color.black); //does change the foreground color to black
    ` edgeLinesAndX(buIm,bIG2);
    ` fgcontext.drawImage(buIm,insets.left,insets.top,fram);
    ` }
    ` private void edgeLinesAndX(BufferedImage bI,Graphics2D bIG2) { //really on the edge
    `      BasicStroke strk=new BasicStroke(10f); bIG2.setStroke(strk);
    ` int x0,y0,xmx,ymx;
    ` x0=bI.getMinX(); y0=bI.getMinY(); xmx=bI.getWidth()-1; ymx=bI.getHeight()-1;
    ` bIG2.drawLine(x0+xmx,y0,x0,y0+ymx); //lo-left to up-right
    ` bIG2.drawLine(x0,y0,x0+xmx,y0+ymx); //up-left to lo-right
    ` bIG2.drawLine(x0,y0,x0+xmx,y0); //up-left to up-right
    ` bIG2.drawLine(x0,y0,x0,y0+ymx); //up-left to lo-left
    ` bIG2.drawLine(x0,y0+ymx,x0+xmx,y0+ymx); //lo-left to lo-right
    ` bIG2.drawLine(x0+xmx,y0,x0+xmx,y0+ymx); //up-right to lo-right
    ` bIG2.drawString("("+x0+","+y0+") wid="+(xmx+1)+" hgt="+(ymx+1),(xmx+1)/5,(ymx+1)/5);
    ` }
    `} //the result on my screen is a black background, why?????

    How do I get a white background with black lines and characters on
    my screen.Contrary to what you might think, the linebIG2.setBackground(Color.white);does not give the buffered image a white background. The API docs
    http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Graphics2D.html#setBackground(java.awt.Color)
    say: "Setting the background color in the Graphics2D context only
    affects the subsequent clearRect calls... " So adding a line to your
    if blocks we getif (false) {
        bIG2.setBackground(Color.white);
        bIG2.clearRect(0, 0, buIm.getWidth(), buIm.getHeight());
    if (false) {
        bIG2.setColor(Color.black);                    
    }Changing the false to true results in a white background (and black
    X and text).

  • My iphone 4 is stuck on the hello screen...with a white background after i tried to update it.  How do i correct this?  I have already gone to itunes and backed it up.  But after i back it up it always return to the hello screen in  different languages ?

    My iphone 4 is stuck in the setup phase with a white background.  It tells me hello in several diffrent  languages and tells me to slide to set up.  I have already backed it up on itunes several times but it always returns to the hello screen with the white back ground.  Can anyone please help me with this?  All of this happened after i updated it for the 1st time. Help pLease?
    Edward

    Hello Edward
    Follow the prompts on your iPhone and you will get either at your home screen like normal or get to a point of restoring from back up. The article below will give step by step for restoring from back up.
    iOS: How to back up and restore your content
    http://support.apple.com/kb/HT1766
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • How can I select and delete the fill color (white background) of a live trace (B&W) with in an actio

    How can I select and delete the fill color (white background) of a live trace (B&W) with in an action set?
    Illustrator CS4 in windows XP.

    Maybe Li[ve trace] is not t]he way[ to go
    I have some suggestion one leave it as is and use a blending mode of multiply to give it a color background like this
    leave it as is make it a grayscale tiff import int Illustrator and color it it in Illustrator like this
    Or trace over it with the brush tool aand then give it a color ground.
    Or do the original over and do a cleaner job with no tone or a minimum of tone. Then Live trace.

  • Image with transparent background shows up with a white background in ID

    Amateur needs help.
    I have a copy of a logo with a transparent background.  I made the (white) background transparent in PS by creating a layer from background and then selecting the white color in the background and deleting it.  This has always worked in the past.  But when I place this image into ID, it shows up with a white background.  I have tried saving as a PSD, TIF, JPG, etc.  I cannot get it to work. 
    I normally research these things until I find an answer, but I am on a tight deadline.  Thanks!

    I totally forgot to put that in my post.  Yes, I am putting logos with transparent backgrounds in front of colored rectangles.  That's how I noticed that this one logo is showing up with a white background.  The weird thing is that the other two logos are fine.  I did find a different version of this logo and this one works fine.  The one that works fine is a JPG and the one that shows up with a white background is a JPG.

  • Open PDFs with white background

    How can I get PDFs to open in PS CS3 with a white background?

    Once open, you can add a white background layer or you can flatten.
    PDF files can contain transparency so a white background might be a modification that can only be done after the file is opened.

  • When inserting a .pdf of a document with a standard white paper color the test and images show up, but the white background is transparent. How do you also make the white paper color show up?

    When inserting a .pdf of a document into a Keynote template with a standard white paper color the text and images show up, but the white background is transparent. How do you also make the white paper color show up?

    Use the color fill option - select the inserted .pdf and assign a fill color of white to it using the Color Fill Menu on the Toolbar or the Color Picker Palette.
    Good Luck.

  • Print 3D PDF document with white background

    Hi!
    Is it possible to print a view from 3D PDF document with white background?
    I could not find any possibilty to change the grey background color, neither in the standard preferences nor in the print options...
    Thanks for your help!
    Kind regards,
    Mark

    Hi,
    As you experienced all DIALOG function modules will not work in Batch because the is no connection with a frontend (PC).
    You have to get your PDF on a server so you can process them in Batch.
    Maybe you can than use the FM: ALINK_DOCUMENTS_CREATE_FILE
    Success,
    Rob

  • How do you Whiten an off-white background in PSE (pic of a person with a shadow)?

    I have PSE10 on my PC. I use it to edit photos I take of people in a studio set up with a white background and white vinyl on the floor.
    Currently I whiten the BG and floor by, 1) using a Levels layer (to darken the image) and then 2) apply the Dodge tool (set to highlights) to the original image.
    It is good (a bit time consuming) but when I get to the shadow of a person I don't know how to edit the shadow of the person. If I leave the shadow alone, the photo then looks odd!! Currently I use the Dodge tool (set to Shadows at about 75%) and go over the shadow to lighten it a bit which seems okay but I wanted a method from someone that was familiar with editing studio pics of people...ideally something that was a guided/automatic edit but any manual method would do.
    2 examples I have seen thus far are;
    Using Curves in CS to whiten the background (which is quick and easy and automatically lightens the shadows of the subject to provide a natural look) but only 'Colour' Curves is available in PSE and I am not sure if this will do the same job?
    Using Set White Point in Levels and then use the mask and paint brush to paint the subject back in but I am not sure of every step and don’t know how well this works and if it is of any use when it come to the shadow of a person?
    Please provide a step by step guide on your method of doing this.
    Thanks in advance :-)

    Have you tried Enhance...Adjust Lighting...Shadows/Highlights?
    Ken

  • My IPhone 3GS JailBroken turns on but shuts off then the black background comes up with white apple logo? And then turns on again? Does it over and over! HELP!

    My IPhone 3GS JailBroken turns on but shuts off then the black background comes up with white apple logo? And then turns on again? Does it over and over! HELP! Why Does This Happen And Is This Repairable?
    Let Me Know! Cheers
    Ryan Crawt
    [email protected]

    Its against the forum TOS to talk about J/B  phones.  you will have to use google to resolve your issue.

Maybe you are looking for