Very Very Urgent...Printing problem please help me.....

Hi there,
Today, i struggled with one printing problem. can anybody help me please!. We are preparing reports using reports 10g. I created a report with orientatin of Landscape and Paper size is 11.5*8.5 that is A4 size and right margin 0.2 left margin with 0.2 and top and bottom margins with 0.5.Report output is correctly coming in report builder runtime. Now the actual problem is, this report must linked to one server for example http://xx.xx.xxxx.main.html.we linked the report generated by me to this link.
when i run the report using this weblink, report is displayed in htmlcss(i opted) perfectly,now user can take the printout of this report by clicking print from file menu. The actual problem i faced is when i run this report in html link report is correctly displaying but paper size is letter and page margin are right 0.75 and left 0.75 defualtly. When i print the report with these setings date is truncating when user takes printout in html. User don't know the page margins i.e right o.2 both left and right (actually in report builder). So he cant adjust it correctly in file menu pagesetup in html page.He simply click print and it should come as with report builder margin settings. To solve this i change the default preferences in control panel ---printers, but no use. Is it possible to pass margins both right,left and top bottom margins as runtimeparameters in url of the this report. Is there any alternative way.
Please do reply urgent, becoz since this is my clients urgent requirement,help me
Thanks and regards
thanx in advance.
Jeevan

Hi,
Though HTMLCSS pages are created using the same page margins that you specify in the report definition, the problem may become more clear to you if you try to create PDF files instead of HTMLCSS. Set DESFORMAT=pdf, and see the output PDF file in Acrobat Reader. Do you see the margins that you want, or is the problem still the same? If you don't see the correct margins even in the PDF file, it probably means you need to modify your report definition to get the margins you want.
In case you see the correct margin in PDF output, it means that your report design is fine. The problem is with printing. In that case, I think what other people have suggested you is true - probably the printable area for your particular printer is less than what you want.
I'm afraid I may not be the best person to specify the printer or OS settings. Please consult your printer vendor.
The other option may be to get output in PDF format, and print PDF files.
Navneet.

Similar Messages

  • Ridiculous printing problem - please help!

    Hello, I have Photoshop CS5 and an Artisan 800 printer, and I'm in the middle of the biggest printer nightmare I've ever had. 
    I need to print a DVD insert, printing to regular letter paper in landscape mode.  11x8.5.  Landscape is selected.  Letter is selected in the printer.  So both Photoshop and the printer know they're dealing with the same size.  But when I click print, I get the stupid 'Image is larger than paper's printable area, some clipping will occur' warning, which is weird, because the image size and the paper size are exactly the same. 
    Then things actually start getting weird.  If I tell it to print anyway, it cuts the image off a few inches before the end of the righthand side of the page.  If I tell it to scale to fit media, then print, it cuts the image off at the same spot, as if nothing was changed.  My PPI is 300.  I've checked and rechecked that the settings are the same on the printer and in photoshop.
    Finally, I figured maybe it was somehow just my document causing the problem.  So I open a new document, and tell it to print just a regular 8.5x11 letter.  Didn't even put anything there.  Just printing a blank page.
    It says it's too big to fit on the paper!
    I'm working on a fairly big job right now and need to print forty of these things by Monday.  I'd really rather not have to go to Kinko's or something, as this is all out of my pocket.  Plus I can't believe that with a program I spent this much money on, and a two hundred dollar printer, an 8.5x11 page is too big for me to print.  Any help is greatly appreciated!

    You have not provided enough information for others to help or clarify things for you..
    What exact version of Photoshop are you on?  12.0.4? 12.1?  Perhaps you have not applied any updates at all?
    What exact version of the OS are you running?
    What exact version of the printer driver?
    What are the exact pixel dimensions of your image?  (How many pixels wide by how many pixels high?)
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers: 
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Printing problem, please help :~~~

    Hi, i am new to java =[
    I am trying to print a text using awt.print in a applet, but I have a problem
    the printer doesn't have pages, but one big paper, it is a fiscal printer...
    when I send the text to the printer, the printer not only print the text in the paper, but grabs more paper, the size of an A4 paper
    I don't want it, i just need that the printer only prints the necessary and stops
    because if not, it will loose the position to print the fiscal note again...
    Please, help me with this...
    the code:
    import java.awt.*;
    import java.awt.font.*;
    import java.awt.geom.*;
    import java.awt.print.*;
    import java.awt.image.*;
    import java.text.*;
    import java.net.*;
    public class Example6  {
       //--- Private instances declarations
       private final static int POINTS_PER_INCH = 72;
        * Constructor: Example6 <p>
       public Example6 () {
          //--- Create a new PrinterJob object
          PrinterJob printJob = PrinterJob.getPrinterJob ();
          //--- Create a new book to add pages to
          Book book = new Book ();
          //--- Add the document page using a landscape page format
          PageFormat documentPageFormat = new PageFormat ();
          documentPageFormat.setOrientation (PageFormat.LANDSCAPE);
          //Paper paper = documentPageFormat.getPaper();
          Paper paper = new Paper();
          // Limit paper width and height
          paper.setSize(120, 120);
          paper.setImageableArea(10, 10, 80, 80);     
          // set the paper to this, edited one
          documentPageFormat.setPaper(paper);
          book.append (new Document (), documentPageFormat);        
          //--- Tell the printJob to use the book as the pageable object
          printJob.setPageable (book);
          //--- Show the print dialog box. If the user click the
          //--- print button we then proceed to print else we cancel
          //--- the process.
          if (printJob.printDialog()) {
             try {
                printJob.print(); 
             } catch (Exception PrintException) {
                PrintException.printStackTrace();
        * Class: Document <p>
        * This class is the painter for the document content. In this example,
       private class Document extends Component implements Printable {
           * Method: print <p>
           * @param g a value of type Graphics
           * @param pageFormat a value of type PageFormat
           * @param page a value of type int
           * @return a value of type int
          public int print (Graphics g, PageFormat pageFormat, int page) {
             //--- Create the Graphics2D object
             Graphics2D g2d = (Graphics2D) g;
             //--- Translate the origin to 0,0 for the top left corner
             g2d.translate (pageFormat.getImageableX (), pageFormat.getImageableY ());
             //--- Set the drawing color to black
             g2d.setPaint (Color.black);
             //--- Draw a border arround the page using a 12 point border
             //g2d.setStroke (new BasicStroke (4));
             Rectangle2D.Double border = new Rectangle2D.Double (0,
                                                                 0,
                                                                 pageFormat.getImageableWidth (),
                                                                 pageFormat.getImageableHeight ());
             g2d.draw (border);
             Font titleFont = new Font ("Courier New", Font.BOLD, 10);
             g2d.setFont (titleFont);
             g2d.drawString("w=" + pageFormat.getWidth(), 20, 20);
             //--- Validate the page
             return (PAGE_EXISTS);
    } // Example6

    This will print a text file
    PrintDoc.java
    ===========
    import java.io.File;
    import java.io.FileInputStream;
    import javax.print.Doc;
    import javax.print.DocFlavor;
    import javax.print.DocPrintJob;
    import javax.print.PrintService;
    import javax.print.PrintServiceLookup;
    import javax.print.SimpleDoc;
    import javax.print.attribute.HashPrintRequestAttributeSet;
    import javax.print.attribute.PrintRequestAttributeSet;
    import javax.print.attribute.standard.Finishings;
    import javax.print.attribute.standard.MediaSizeName;
    import javax.print.attribute.standard.Sides;
    import javax.print.event.PrintJobAdapter;
    import javax.print.event.PrintJobEvent;
    import javax.print.event.PrintJobListener;
    import javax.swing.JFileChooser;
    public class PrintDoc {
         public static void printDoc(File file) {
              DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
               PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet();
               aset.add(MediaSizeName.ISO_A4);
               aset.add(new Copies(1));
               aset.add(Sides.TWO_SIDED_LONG_EDGE);
               aset.add(Sides.ONE_SIDED);
               aset.add(Finishings.EDGE_STITCH_LEFT);
               PrintService printService = PrintServiceLookup.lookupDefaultPrintService();
               DocPrintJob job = printService.createPrintJob();
               try{
                 FileInputStream input = new FileInputStream(file);
                PrintJobListener pjlistener = new PrintJobAdapter() {
                    public void printDataTransferCompleted(PrintJobEvent e) {
                      System.out.println("finish printing one document");
                  job.addPrintJobListener(pjlistener);
                 Doc doc = new SimpleDoc(input, flavor, null);
                 job.print(doc, aset);
                //inStream.close();
                 input.close();
               catch(Exception t){t.printStackTrace();}
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              JFileChooser chooser = new JFileChooser();
              int approve = chooser.showOpenDialog(null);
              if (approve == JFileChooser.APPROVE_OPTION) {
                   printDoc(chooser.getSelectedFile());
    }

  • HP Photosmart B109n-z (printing problem) please help

    Hi all,
    I have the HP Photosmart B109n-z printer and have it set up wirelessly and it works fine I've had no problems with it. 
    The other day the black ink stopped working - the cartridge isn't empty but it's no longer prinking black on any documents.  I have since put all new cartridges in, it recognises them all, including the black one, and if I'm printing something like a word document then it moves as if printing but the page comes out blank - no black ink is used.
    I work for myself and work from home so need to get this resolved asap.
    I've checked the cartidge - it's good.
    I've checked the connection and print cartridge bay - they're clean. 
    Please help.
    The colour is working fine.
    The black ink issue is the same whether printing, scanning, or copying.
    And I have tried turning everything off and on again!!!
    This question was solved.
    View Solution.

    Hi,
    You might try Solution 5 in the troubleshooting document I am linking here:
    Ink Quality Troubleshooting
    This will show the colors that are printing.  There are also addtional troubleshooting steps to follow
    Say Thanks by clicking the Kudos Star in the post that helped you. Please mark the post that solves your problem as Accepted Solution.
    I am employed by HP

  • I am having printing problems, please help

    I go on a website to get an application wich is in a pdf format and i try and print it and i get an error saying i have to install a printer before being able to print etc.  my printer is installed , powered on, attached. so I don't know what the issue is, please help, you can also reply to me at [email address deleted by host]

    I'm having the exact same problem....and it all started when I downloaded an Adobe update last night. Until that point I could
    print PDF just fine. Everything else prints fine (word, excel, e-mails, etc...) I'm running windows XP professional version 2002 w/ SP 3, and running Adobe Acrobat 9 standard.

  • G580 Very slow, and mouse problems, please help

    I purchased a brand new G580 approx 2 weeks ago. 
    It has 4GB of memory compared to my old lenovo which had 2GB.  This new one runs at half the speed of my old one and has nothing on it (i.e pictures, music, vids etc) 
    If i open a programme to do something and then open another, it cannot cope with it and will take forever to do anything on the 2nd programme when it eventually opens. 
    also the mouse wanders! I dont have to be touching it or doing anything near it, it just wanders across the screen which is getting very annoying. 
    Please could somebody help me? 

    Hi kiri_tc,
    Welcome to Lenovo Community Forums!
    I’m sorry to hear that your G580 Laptop is not performing as expected and the cursor is moving erratic, re-installing the Touchpad driver should resolve this issue and let me know the OS (Operating System) that is installed in the computer and the country where the computer was purchased, also the Type of G580 for providing the steps to resolve performance issue and exact touchpad driver link. Below is the link to locate the model number and Type of the computer which is mentioned on the sticker at the base of the Laptop.
    How to find the Serial Number (S/N) and Type of your computer
    Hope to hear back soon
    Best Regards
    Shiva Kumar
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • IPhoto Printing Problems - please help!

    Hi All,
    I'm having continued problems trying to sort out printing from iPhoto '09. I dont have a great printer - Epson Photo r265 so it is a cheapy however it does print fine. If I print from my PC to this printer it works perfectly. Therefore I assumed there was a driver issue between the mac and the printer. Finally I worked out how to get the correct epson driver as opposed to apples version installed and set as default. Now the photos no longer have crazy lines all over them but the quality remains very poor by comparison to printing on this printer using the same photo from other sources.
    I then downloaded Epsons easy photo print. If I print using this very basic package on the mac now the quality is much better (still not amazing though but certainly acceptable). So it sounds like problem solved??? ..... NO!!! The problem is that the Epson Easy Photo Print software cannot 'see' the photos in iPhoto and so to print, you first have to copy photos to desktop or some place else outside of iPhoto. This all seems due to iPhoto's wierd need to keep its arms locked around the photos within it with the result that when you look in Finder all you see is a file called "iPhoto Library" .... and 3rd party software as simple as this epson print package cannot translate this and see the photos within.
    Can anyone help here and give some options?
    1. Is it actually possible to print at good quality from iPhoto?
    2. Is there other printing software I can use which will actually be able to see the photos in iPhoto Library
    3. I even though my printer is very cheap and basic i know it is not its fault - that said are there printers better optimised to use with a mac? I would consider changing the printer if needed as I'm really sick of this.
    4. Can I change the iPhoto settings somehow to stop all my photos appearing as a single file - "iPhoto Library"??
    All help much appreciated.
    Adam

    The first of these might help:
    There are many, many ways to access your files in iPhoto:
    *For Users of 10.5 and later*
    You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    Uploaded with plasq's Skitch!
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    Uploaded with plasq's Skitch!
    *For users of 10.4 and later* ...
    Many internet sites such as Flickr and SmugMug have plug-ins for accessing the iPhoto Library. If the site you want to use doesn’t then some, one or any of these will also work:
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. However, if you're using Gmail you can use iPhoto2GMail
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    *If you want to access the files with iPhoto not running*:
    For users of 10.6 and later:
    You can download a free Services component from MacOSXAutomation which will give you access to the iPhoto Library from your Services Menu. Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and later:
    Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    Regards
    TD

  • Urgent typical problem- Please help!!

    Dear All,
    I have a BOM material(say M) which is made up of 3 components(say A, B and C).
    I procure component A from 3 different countries(T1, T2 andT3), component B from 2 different countries(T4 and T5) and component C from 4 different countries(T6, T7, T8 and T9).I process them and prepare a finished good ‘M’(as mentioned above) and export it. I want to track the country of origin of each of the components of this BOM.How can I achieve this?
    To make my question more clear…..If I am exporting material M, I should be able to track all the 9 countries(T1…..T9) because M is made up of 3 components procured from 9 countries(in all).
    Since the problem is critical, I would appreciate your urgent help on this.Thanks!!

    Hi Reshu
    You can certainly download list of components that are imported and its vendor's name through a query as follows:-
    1)  Goto SQVI
    2)  Table join MBEW and EORD
    3)  Select the Valuation Class field BKLAS in MBEW and LIFNR in EORD
    4)  In Valuation Class, give 3002 & 3003 (Imported Duty Paid & Duty Free)
    5)  Execute the report
    A report will be generated wherein you can see all imported components and its respective vendor list.
    I think you only have to decide which particular component goes into which assembly and no report is available to my knowledge.  Others correct me if I am wrong.
    By the way, I am sure, the above suggestion will be helpful to a great extent and if so, dont forget to reward points please.
    Thanks
    G. Lakshmipathi

  • Printer Problems please help!

    I have the C4480 all in one printer. I have searched the forums and troubleshooting pages and still cannot resolve the issue. When I insert a memory card from my digital camera directly into the printer I can print pictures without any problems. The copy function also works fine. The issue is I cannot print images or documents from the computer. When I press print it will take the page in about half way then it stops and just sits there. After about 5 or 10 minutes it will spit the page out but it only prints the first few lines of the image, the rest of the page is left blank. Also, the power button on the printer flashes while this is happening but no error messages are displayed. I have tried downloading the newest drivers. I also un-installed all the software and reinstalled but am still having the same issue, not sure what else I can try. Thanks for any help.

    I'd like to suggest you go to www.tune-up.com and download and install this program.
    You get a 30 day free trial to start. If you sign up as a reseller you can get the program for $29 after that.
    I'm not an employee of the company but I just recommend the program as it has fixed many a friends
    problems and has kept my computers and my familys computers running straight and clean with no problems.
    Even if you don't buy the program after using it and it fixes your problems you can uninstall it and consider it a blessing.
    I'm sure once you see what it can do you will think twice to buy it.
    Other than that, I don't know much about your system to even begin to try to tell you what to do as a troubleshooter.
    It could be any number of things that are wrong with it. Number one, the registry might be really messed up.
    Tune-up will fix that fix off for you. A computer is like a car, it has to be kept in tune in order to keep running right.
    Another problem area is malware and viruses. We all know about them but do we ever really know if we might have been bit
    by any of them. Most times not until something serious causes us problems. Can I suggest another program you might try?
    AVG Internet Security 2011 at www.avg.com.  It's another 30 day free trial program. I am also a reseller and have all my computers
    and family members registered and using it.
    I can tell you that with only these two programs installed on your computer you can rest easy and use your computer without any fears or problems.    Let me know how it goes for you. Good luck.
    Paul Streicher
    Tampa, FL

  • How to implement drop down list in WDP Abap....very urgent...please help me

    Hi Gurus,
    I wanted to implement the drop down list button in the WDP Abap interactive form. Once the users clicks on the drop down button, an RFC should be called and display the details under the drop down button. Please give me the logic with code. Its very urgent...please help me. Please note that it is in WDP Abap interactive forms. We are using NW2004S, ECC6.0.

    Hello,
    you have to use ZCI form to use DDLB in WD-ABA. The content of the DDLB has to be present at rendering time, there is no dinamic call when you click the "dropdown".
    The attribut you map to the DDLB has to be an element with a value-set, and the value set has to contain the text / value pairs.
    >> this will be displayed when you click the dropdown.
    Best regards,
    Dezso

  • IOS 7 very slow, i have many problem , exemple  download documents , typing doc to go .   Very slow, sometime no response , please help us for this error

    IOS 7 very slow, i have many problem , exemple  download documents , typing doc to go .   Very slow, sometime no response , please help us for this error,

    spacepilot wrote:
    i live in the WS10 / 0121 area and have been having similar problems. i have an up to 20mb services, but up to a month ago connected at 4800, then my line went dead for 6 days, and all indis could do was send me  new router, which came the day after my line was restored, but had dropped to 2418 and remained so for the past 3 to 4 weeks, then i dropped to 1963 yesterday, and 729 today.
    all speeds are far lower on my upto 20mb than they where on my upto 8mb link.
    foegot to add, i reported the problem via the report a problem link, which hopefully will be red by someone with  a firmer grasp of english that the normal call centre staff
    welcome to the forum    why don't you start your own subject and post the adsl stats from your router and also run btspeedtester and post the results and someone may be able to offer assistance
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • I cant use the highlight, underline, or strikethrough function in a specific pdf file. The file isnt locked. I used to highlight texts from that file before the latest update. The problem occurs only with that file. Urgent need. Please help. Thanks!

    i cant use the highlight, underline, or strikethrough function in a specific pdf file. The file isnt locked. I used to highlight texts from that file before the latest update. The problem occurs only with that file. Urgent need. Please help. Thanks!

    Chester31,
    Thank you very much for sharing your file with us!  Now that we are able to reproduce the problem at our end, you may stop sharing the file on Acrobat.com.
    Do you know when this problem (for not being able to add new highlight/strikeout/underline) has started?  Did you update your iOS from 7.x to 8.0 recently?
    We will continue investigating the problem and let you know what we find.
    Thank you again for your help.

  • Urgent Problem please Help(hayat)

    Hello Hi,
    I want to Install Form 6.0 With Oracle 8i on Server
    mean not personal oracle,
    if i install first oracle 8i and then form 6.0 then
    they overwrite their homes and vice versa.
    What method i use to control this problem.
    please help me so that i install form 6.0 on oracle 8i server.
    thanks
    hayat

    Ok, I have read the sun site and downloaded the JDK and saved it to disk in the C:\ drive.
    However I still get the same error so I think I must be very stupid and I think the computer knows that.

  • I'm having multiple crashes on my new 5s. I can't connect to my Mac Pro!! Power cord broken. How can I fix this without connecting to my MacBook? Very frustrating and disappointing. Please help!!!

    I'm having multiple crashes on my new 5s. I can't connect to my Mac Pro!! Power cord broken. How can I fix this without connecting to my MacBook? Very frustrating and disappointing. Please help!!!

    Hi there Rlong50,
    You may want to try force closing all open apps and resetting the device as an initial troubleshooting step. Take a look at the articles below for more information.
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/ht1430
    -Griff W.

  • I upgraded my iPad 2 (3G) to the new OS8 and I can no longer connect to 3G.  All the settings on the iPad are correct.  It just shows that it's searching for a signal.  I'm in an area where my signal (pre OS8) was very good in strength.  Please help!

    I upgraded my iPad 2 (3G) to the new OS8 and I can no longer connect to 3G.  All the settings on the iPad are correct.  It just shows that it's searching for a signal.  I'm in an area where my signal (pre OS8) was very good in strength.  Please help!

    Hello Jpahlphoto!
    I'm sorry to learn about the issues mentioned in your post. Let's fix this for you OK?
    Please restore your iPad and see if that does the trick. You'll find the steps here:
    http://bit.ly/16hQAlr
    Thanks,
    ChristinaB_VZW
    Follow us on Twitter @VZWSupport

Maybe you are looking for

  • Package for Business Objects Explorer

    Hello, can anyone say what the "name" of the package is that we have to order to get access to ASP Business Objects Explorer software? We want to use the non accelerated version of Explorer first. I am asking here to speed up the process - I want to

  • "False" in quiz is always graded as "True"

    I'm new to Captivate.....using version 6.  I've created 3 short quizzes with a variety of questions. The problem is, there are several true/false questions, and each time the students answer True to a question that is actually False, it grades them a

  • WebService dataControls

    Hi, in model i create WEbServiceDataControl. On local i use ip like 195....... But when i deploy ma app on server - webServices must call from 172.... ip. My problem: i cant change ip for my dataControls. It work great on local or on server, i just w

  • Live streaming to FMS server from analog cable?

    Need to stream an analog cable signal (may consist of 60-70 channels in VL and VHF)to FMS server. im doing a small scale project. so i want some hardwares supporting these. please suggest me some reasonable ones.. is it possible to do the same with a

  • Pages is driving me mad....

    I have been trying to compile a newsletter in Pages (v 3.0.2). All my software is up to date. The program keeps crashing and referring to a possible problem caused by a plug in called SFWordprocessing. I am hugely frustrated. Sometimes the draft docu