Printing to a PDF

I have the following class:
import java.awt.*;
import javax.swing.*;
import java.awt.print.*;
public class PrintUtilities implements Printable {
  private Component componentToBePrinted;
  public static void printComponent(Component c) {
    new PrintUtilities(c).print();
  public PrintUtilities(Component componentToBePrinted) {
    this.componentToBePrinted = componentToBePrinted;
  public void print() {
    PrinterJob printJob = PrinterJob.getPrinterJob();
       PageFormat pageFormat = new PageFormat();
       if(printJob.pageDialog(printJob.defaultPage()).getOrientation()==pageFormat.LANDSCAPE){
         try{
                 pageFormat.setOrientation(pageFormat.LANDSCAPE);
          catch(java.lang.IllegalStateException ise){
                  System.out.println("Print error...\n"+ise);
      printJob.setPrintable(this,pageFormat);
       if (printJob.printDialog()){
           try{
                printJob.print();
           catch(java.awt.print.PrinterException pe){
                System.out.println("Could not print...\n" + pe);
/*   printJob.setPrintable(this);
    if (printJob.printDialog())
      try {
        printJob.print();
      } catch(PrinterException pe) {
        System.out.println("Error printing: " + pe);
  public int print(Graphics g, PageFormat pageFormat, int pageIndex) {
     if (pageIndex > 0) {
     return(NO_SUCH_PAGE);
     else {
          Graphics2D g2d = (Graphics2D)g;
          Toolkit toolkit = componentToBePrinted.getToolkit();
          /* scaling is added to fit printout of maximized birdseye
          window onto a 8.5 X 11 sheet of paper
          Dimension screenSize = toolkit.getScreenSize();
          //fit screen to printable (landscape) page
          double scaleX = (pageFormat.getImageableWidth()) / (screenSize.getWidth());
          double scaleY = (pageFormat.getImageableHeight())/(screenSize.getHeight());
          if(scaleX>.3){
               double scaleFactor = java.lang.Math.min((double)(screenSize.getWidth())/
               (double)(pageFormat.getImageableWidth()),(double)(screenSize.getHeight())/(double)(pageFormat.getImageableHeight()));
               g2d.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
               g2d.scale(.7/scaleFactor,.95/scaleFactor);
          else{
               double scaleFactor = java.lang.Math.min((double)(screenSize.getWidth())/
               (double)(pageFormat.getImageableWidth()),(double)(screenSize.getHeight())/(double)(pageFormat.getImageableHeight()));
               g2d.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
               g2d.scale(.85/scaleFactor,.95/scaleFactor);
          /** It is important that translation be done before the scaling.
          * Failure to follow this order will result in unusual behavior
          * such as strange cropping
          //g2d.translate(pageFormat.getImageableX(),
          //pageFormat.getImageableY());
          //g2d.scale(scaleX,scaleY);
          // speeds up printing process
          disableDoubleBuffering(componentToBePrinted);
          componentToBePrinted.printAll(g2d);
          enableDoubleBuffering(componentToBePrinted);
          return(PAGE_EXISTS);
  public static void disableDoubleBuffering(Component c) {
    RepaintManager currentManager = RepaintManager.currentManager(c);
    currentManager.setDoubleBufferingEnabled(false);
  public static void enableDoubleBuffering(Component c) {
    RepaintManager currentManager = RepaintManager.currentManager(c);
    currentManager.setDoubleBufferingEnabled(true);
}It prints well for the most part. The problem is that I have Adobe Acrobat 6 Professional and I want to
create a pdf using the print class that I have, however it doesn't work. I click the print button in my GUI, and
it calls the PrintUtilities class functions, and I select the printer to be the Adobe PDF Writer, but then I get the following exception message when I click 'ok' to print:
java.lang.IllegalArgumentException: Zero length string passed to TextLayout cons
tructor.
at java.awt.font.TextLayout.<init>(TextLayout.java:471)
at sun.java2d.pipe.OutlineTextRenderer.drawString(OutlineTextRenderer.ja
va:67)
at sun.java2d.pipe.GlyphListPipe.drawString(GlyphListPipe.java:32)
at sun.java2d.SunGraphics2D.drawString(SunGraphics2D.java:2534)
at sun.print.ProxyGraphics2D.drawString(ProxyGraphics2D.java:720)
at javax.swing.plaf.basic.BasicGraphicsUtils.drawStringUnderlineCharAt(B
asicGraphicsUtils.java:234)
at javax.swing.plaf.basic.BasicLabelUI.paintEnabledText(BasicLabelUI.jav
a:81)
at javax.swing.plaf.basic.BasicLabelUI.paint(BasicLabelUI.java:164)
at javax.swing.plaf.ComponentUI.update(ComponentUI.java:142)
at javax.swing.JComponent.paintComponent(JComponent.java:541)
at javax.swing.JComponent.printComponent(JComponent.java:908)
at javax.swing.JComponent.paint(JComponent.java:812)
at javax.swing.JComponent.print(JComponent.java:891)
at javax.swing.JComponent.paintChildren(JComponent.java:651)
at javax.swing.JComponent.printChildren(JComponent.java:921)
at javax.swing.JComponent.paint(JComponent.java:820)
at javax.swing.JComponent.print(JComponent.java:891)
at javax.swing.JComponent.paintChildren(JComponent.java:651)
at javax.swing.JComponent.printChildren(JComponent.java:921)
at javax.swing.JComponent.paint(JComponent.java:820)
at javax.swing.JComponent.print(JComponent.java:891)
at javax.swing.JComponent.paintChildren(JComponent.java:651)
at javax.swing.JComponent.printChildren(JComponent.java:921)
at javax.swing.JComponent.paint(JComponent.java:820)
at javax.swing.JLayeredPane.paint(JLayeredPane.java:557)
at javax.swing.JComponent.print(JComponent.java:891)
at javax.swing.JComponent.paintChildren(JComponent.java:651)
at javax.swing.JComponent.printChildren(JComponent.java:921)
at javax.swing.JComponent.paint(JComponent.java:820)
at javax.swing.JComponent.print(JComponent.java:891)
at java.awt.GraphicsCallback$PrintCallback.run(GraphicsCallback.java:32)
at sun.awt.SunGraphicsCallback.runOneComponent(SunGraphicsCallback.java:
60)
at sun.awt.SunGraphicsCallback.runComponents(SunGraphicsCallback.java:97
at java.awt.Container.print(Container.java:1367)
at sun.awt.windows.WComponentPeer.print(WComponentPeer.java:223)
at sun.awt.windows.WCanvasPeer.print(WCanvasPeer.java:97)
at sun.awt.windows.WPanelPeer.print(WPanelPeer.java:26)
at java.awt.GraphicsCallback$PeerPrintCallback.run(GraphicsCallback.java
:85)
at sun.awt.SunGraphicsCallback.runOneComponent(SunGraphicsCallback.java:
60)
at java.awt.Component.printAll(Component.java:2532)
at PrintUtilities.print(PrintUtilities.java:95)
at sun.print.RasterPrinterJob.printPage(RasterPrinterJob.java:1628)
at sun.print.RasterPrinterJob.print(RasterPrinterJob.java:1085)
at sun.print.RasterPrinterJob.print(RasterPrinterJob.java:986)
at PrintUtilities.print(PrintUtilities.java:32)
at PrintUtilities.printComponent(PrintUtilities.java:9)
at gui.actionPerformed(gui.java:8369)
at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:17
86)
at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Abstra
ctButton.java:1839)
at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
.java:420)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258
at javax.swing.AbstractButton.doClick(AbstractButton.java:289)
at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1
113)
at javax.swing.plaf.basic.BasicMenuItemUI$MenuDragMouseHandler.menuDragM
ouseReleased(BasicMenuItemUI.java:1006)
at javax.swing.JMenuItem.fireMenuDragMouseReleased(JMenuItem.java:584)
at javax.swing.JMenuItem.processMenuDragMouseEvent(JMenuItem.java:481)
at javax.swing.JMenuItem.processMouseEvent(JMenuItem.java:428)
at javax.swing.MenuSelectionManager.processMouseEvent(MenuSelectionManag
er.java:277)
at javax.swing.plaf.basic.BasicMenuUI$MouseInputHandler.mouseReleased(Ba
sicMenuUI.java:360)
at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:2
31)
at java.awt.Component.processMouseEvent(Component.java:5100)
at java.awt.Component.processEvent(Component.java:4897)
at java.awt.Container.processEvent(Container.java:1569)
at java.awt.Component.dispatchEventImpl(Component.java:3615)
at java.awt.Container.dispatchEventImpl(Container.java:1627)
at java.awt.Component.dispatchEvent(Component.java:3477)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
at java.awt.Container.dispatchEventImpl(Container.java:1613)
at java.awt.Window.dispatchEventImpl(Window.java:1606)
at java.awt.Component.dispatchEvent(Component.java:3477)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
read.java:201)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
ad.java:151)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)

SIr
I am also doing the same to print a component. I need to print a table data. When i send myTable object
PrintUtility.printComponent(myTable).
It just prints as much table data as fits into 1 page. But i want to print whole table data that may be multipage. Please suggest something if can. thanx

Similar Messages

  • Printing problem with .pdf

    27" iMac (2012), OS X 10.9.1, Canon MF4770n laser connected by ethernet cable through AirPort Extreme, HP C4200 connected directly via USB
    The Problem:  I received a .pdf file via e-mail and downloaded it.  It consisted of a series of forms in unknown original format.  I needed to print them out, sign them and return them.  I opened .pdf in Preview but when I tried to print it, I got only blank pages from the printer.  The printer seemed to be operating normally in all other respects.
    What I have tried: 
    1.  Successfulloy printed material from other applications using the same computer and Canon printer.
    2.  Successfully printed a different .pdf file from Preview using the same computer and Canon printer.
    3.  Successfully printed the offending .pdf from Preview on the same computer and the HP ink jet printer.
    4.  Successfully printed the offending .pdf from Adobe Reader using the same computer and Canon printer.
      Since I was able to print the .pdf using Adobe Reader, this problem is not critical but it is rather mysterious.  Any suggestions would be appeciated.

    Using ASK.Com - my favorite web browser - does not require you to download anything to use it just enter the url -
    I entered the following:
    Why is my HP laser printer printing slow
    Below is just one of the documents - this one is HP support.
    http://h20564.www2.hp.com/hpsc/doc/public/display?docId=mmr_kc-0100314
    *just a heads up - whenever you have problems with a printer
    1. stop the print queue on your system
    2. shut the printer power off for about a minute to clear any  printer memory
    3. turn on the printer
    4. start the print queue
    *also - using ASK.com have also found answers on this site without the struggle of going through searching this site.

  • Is there any way to disable the popup message I get when I print to a PDF?

    When I print to a pdf by selecting the Adobe PDF Converter as my printer, I always get a popup in my tray "Your PDF file 'document name' has been created".
    This is annoying when I printing a bunch of different documents at a time.  I know the PDF has been created because it opens up, so why the popup?
    HOW DO I DISABLE THIS POPUP???
    Help!!

    If you're talking about the balloon tip that appears in the tray area, I don't know of a way to disable it for just Acrobat, but you can for all programs by modifying the registry: http://support.microsoft.com/kb/307729

  • Unable to Generate Printed Documentation in PDF Format

    This past week I started having a consistent error when attempting to generate a Printed Documentation layout. This error reads "Internal error encountered,  Failed to generate Printed Documentation."  Prior Printed Documentation builds on this same project completed fine. Nothing was done to the Help project between the times when this worked and when it no longer was able to create Printed Documentation.
    I receive this error even if I generate an entirely new "blank project" build, and then attempt to create a Printed Documentation build from this new blank project.  Researching this error, I see this has been a reoccuring problem with this product for some time. The few threads that list the problem as having been "fixed" provide resolution steps that have not worked in my case. Right now I am waiting for our IT Helpdesk people to re-install the Suite. Hopefully this will resolve this problem.
    Additional information on this problem - PDF Printed Documentation is failing - the HTML build works fine. If I select just a .DOC Printed Documentation output, this also works correctly. The resulting Word document looks good, although hyperlinks do not work within this Word document. I have reloaded Office 2003 as a troubleshooting effort, but this has nbot resulted in any change in symptoms.
    The entire error text is enclosed below, although several other people have also done this in past entries. The few lines that read "Warning, and then report a style issue is NOT the problem here. As stated earlier, when I do this same Printed Documentation build on an entirely new "blank project" it does not work, and the Output text in that case does not contain any such "Warnings" about Styles.
    Error text below:
    Starting to build Printed Documentation...
    Printed Documentation processor 8.0.1.204
    Building C:\Documents and Settings\tcleary\My Documents\My RoboHelp Projects\Adobe RoboHelp 8\10515-0366-5004_7800v-hh rsp\!SSL!\Printed_Documentation.doc ...
    Preparing to create Printed Documentation...
    Clearing output folder...
    Preparing files for Print Document...
    Copying files...
    Updating files...
    Finished preparing in 2 seconds.
    Preparing environment...
    Printed Document Generator Environment: Word 11.0.8313,  OS 5.1.2600, RAM 2048 M Bytes
    Building Printed Documentation 'Printed Documentation'...
    Building Single Document 'Printed_Documentation.doc'...
    Building 'RF-7800V-HH About this Help'...
    Building 'Table of Contents'...
    Preparing to build chapters...
    Building 'RF-7800V-HH Help and Support'...
    Processing 'RF-7800V-HH Welcome'...
    Building 'RF-7800V-HH RSP Help'...
    Processing 'RF-7800V-HH Station Information'...
    Building 'RF-7800V-HH Features'...
    Processing 'RF-7800V-HH Features'...
    Processing 'RF-7800V-HH Anc. Connector Mode'...
    Processing 'RF-7800V-HH No-Sync Beeps'...
    Processing 'RF-7800V-HH Power Management'...
    Processing 'RF-7800V-HH Retransmit'...
    Processing 'RF-7800V-HH USB Mode'...
    Processing 'RF-7800V-HH Broadcast Gateway'...
    Processing 'RF-7800V-HH IP Routing'...
    Processing 'RF-7800V-HH Voice Settings'...
    Processing 'RF-7800V-HH Time and Date Settings'...
    Processing 'RF-7800V-HH Position Reporting'...
    Processing 'RF-7800V-HH User Interfaces'...
    Processing 'RF-7800V-HH Net Switches'...
    Processing 'RF-7800V-HH Ethernet Interface'...
    Building 'RF-7800V-HH Global Settings'...
    Processing 'RF-7800V-HH Global Settings'...
    Processing 'RF-7800V-HH Radio Passwords'...
    Processing 'RF-7800V-HH GPS'...
    Processing 'RF-7800V-HH Locksets'...
    Building 'RF-7800V-HH Network Types'...
    Processing 'RF-7800V-HH Network Types'...
    Building 'RF-7800V-HH Fixed Frequency LOS'...
    Processing 'General Information - Fixed Frequency LOS'...
    Processing 'RF-7800V-HH FF Network Information'...
    Processing 'RF-7800V-HH FF Preset'...
    Processing 'RF-7800V-HH FF General'...
    Processing 'RF-7800V-HH FF Comsec'...
    Processing 'RF-7800V-HH FF Data-Voice'...
    Processing 'RF-7800V-HH FF Squelch'...
    Processing 'RF-7800V-HH FF Advanced'...
    Warning: style (p.Heading7) is not defined and will be mapped to 'Normal'.
    Building 'RF-7800V-HH Quicklook'...
    Processing 'General Information - Quicklook'...
    Processing 'Hopset Creation - Quicklook'...
    Processing 'RF-7800V-HH QL Network Information'...
    Processing 'RF-7800V-HH QL Preset'...
    Processing 'RF-7800V-HH QL General'...
    Processing 'RF-7800V-HH QL Comsec'...
    Processing 'RF-7800V-HH QL Data-Voice'...
    Processing 'RF-7800V-HH QL Advanced'...
    Building 'RF-7800V-HH Sample Plans'...
    Processing 'General Information - Sample Plans'...
    Processing 'Simple Fixed and Quicklook Nets'...
    Processing 'Single Fixed and Quicklook Nets'...
    Processing 'RF-7800V-HH Manage Keys'...
    Processing 'RF-7800V-HH Program Radio'...
    Building 'RF-7800V-HH Tech Support'...
    Processing 'RF-7800V-HH Technical Support'...
    Processing 'RF-7800V-HH Radio Firmware Compatibility'...
    Building 'FAQs'...
    Processing 'RF-7800V-HH FAQ Index'...
    Processing 'FAQ 01'...
    Warning: style (span.strong) is not defined and will be removed.
    Warning: style (p.para) is not defined and will be mapped to 'Normal'.
    Processing 'FAQ 02'...
    Processing 'FAQ 03'...
    Processing 'FAQ 04'...
    Processing 'FAQ 05'...
    Processing 'RF-7800V-HH Glossary'...
    Warning: style (p.FM_CellRowHead) is not defined and will be mapped to 'Normal'.
    Warning: style (span.Glossary) is not defined and will be removed.
    Warning: style (p.FM_CellBodyLeft) is not defined and will be mapped to 'Normal'.
    Warning: style (p.FM_GLOSSARY) is not defined and will be mapped to 'Normal'.
    Warning: style (p.FM_Para) is not defined and will be mapped to 'Normal'.
    Completed building chapters...
    Building 'Index'...
    Updating list paragraphs...
    Updating images...
    Updating page numbers...
    Updating page headers...
    Updating Table of Contents...
    Updating Index...
    Saving 'Printed_Documentation.doc'...
    Generating 'Printed_Documentation.pdf'...
    Failed the generate PDF file 'C:\Documents and Settings\tcleary\My Documents\My RoboHelp Projects\Adobe RoboHelp 8\10515-0366-5004_7800v-hh rsp\!SSL!\Printed_Documentation.pdf'...
    Failed to save 'Printed_Documentation.doc'...
    Cleaning up temporary files...
    I am pretty sure nobody will have any fix suggestions that work to solve this problem, but I am making this entry for historical purposes. I will add an entry stating whether the Suite reload resolves this issue.
    Thanks,
    Tim C @ Harris

    If I select ONLY the Word DOC Output format in the Printed Documentation
    setup, the output is created without an error (output text below).  Links do work within
    this Word document (a symptom change since installing patch 8.0.2).
    When I use this Word document to create a PDF (using the Adobe PDF
    printer driver) a PDF is successfully created, however no bookmarks are
    created in the bookmarks panel and none of the links in this PDF work
    (although they are created looking like they will work, i.e., blue
    underlined text).
    Regards,
    Tim
    ------------- Output Text --------------------------
    Starting to build Printed Documentation...
    Printed Documentation processor 8.0.1.204
    Building C:\Documents and Settings\tcleary\My Documents\My RoboHelp Projects\Adobe RoboHelp 8\10515-0366-5004_7800v-hh rsp\!SSL!\Printed_Documentation.doc ...
    Preparing to create Printed Documentation...
    Clearing output folder...
    Preparing files for Print Document...
    Copying files...
    Updating files...
    Finished preparing in 3 seconds.
    Preparing environment...
    Printed Document Generator Environment: Word 11.0.8313,  OS 5.1.2600, RAM 2048 M Bytes
    Building Printed Documentation 'Printed Documentation'...
    Building Single Document 'Printed_Documentation.doc'...
    Building 'RF-7800V-HH About this Help'...
    Building 'Table of Contents'...
    Preparing to build chapters...
    Building 'RF-7800V-HH Help and Support'...
    Processing 'RF-7800V-HH Welcome'...
    Building 'RF-7800V-HH RSP Help'...
    Processing 'RF-7800V-HH Station Information'...
    Building 'RF-7800V-HH Features'...
    Processing 'RF-7800V-HH Features'...
    Processing 'RF-7800V-HH Anc. Connector Mode'...
    Processing 'RF-7800V-HH No-Sync Beeps'...
    Processing 'RF-7800V-HH Power Management'...
    Processing 'RF-7800V-HH Retransmit'...
    Processing 'RF-7800V-HH USB Mode'...
    Processing 'RF-7800V-HH Broadcast Gateway'...
    Processing 'RF-7800V-HH IP Routing'...
    Processing 'RF-7800V-HH Voice Settings'...
    Processing 'RF-7800V-HH Time and Date Settings'...
    Processing 'RF-7800V-HH Position Reporting'...
    Processing 'RF-7800V-HH User Interfaces'...
    Processing 'RF-7800V-HH Net Switches'...
    Processing 'RF-7800V-HH Ethernet Interface'...
    Building 'RF-7800V-HH Global Settings'...
    Processing 'RF-7800V-HH Global Settings'...
    Processing 'RF-7800V-HH Radio Passwords'...
    Processing 'RF-7800V-HH GPS'...
    Processing 'RF-7800V-HH Locksets'...
    Building 'RF-7800V-HH Network Types'...
    Processing 'RF-7800V-HH Network Types'...
    Building 'RF-7800V-HH Fixed Frequency LOS'...
    Processing 'General Information - Fixed Frequency LOS'...
    Processing 'RF-7800V-HH FF Network Information'...
    Processing 'RF-7800V-HH FF Preset'...
    Processing 'RF-7800V-HH FF General'...
    Processing 'RF-7800V-HH FF Comsec'...
    Processing 'RF-7800V-HH FF Data-Voice'...
    Processing 'RF-7800V-HH FF Squelch'...
    Processing 'RF-7800V-HH FF Advanced'...
    Warning: style (p.Heading7) is not defined and will be mapped to 'Normal'.
    Building 'RF-7800V-HH Quicklook'...
    Processing 'General Information - Quicklook'...
    Processing 'Hopset Creation - Quicklook'...
    Processing 'RF-7800V-HH QL Network Information'...
    Processing 'RF-7800V-HH QL Preset'...
    Processing 'RF-7800V-HH QL General'...
    Processing 'RF-7800V-HH QL Comsec'...
    Processing 'RF-7800V-HH QL Data-Voice'...
    Processing 'RF-7800V-HH QL Advanced'...
    Building 'RF-7800V-HH Sample Plans'...
    Processing 'General Information - Sample Plans'...
    Processing 'Simple Fixed and Quicklook Nets'...
    Processing 'Single Fixed and Quicklook Nets'...
    Processing 'RF-7800V-HH Manage Keys'...
    Processing 'RF-7800V-HH Program Radio'...
    Building 'RF-7800V-HH Tech Support'...
    Processing 'RF-7800V-HH Technical Support'...
    Processing 'RF-7800V-HH Radio Firmware Compatibility'...
    Building 'FAQs'...
    Processing 'RF-7800V-HH FAQ Index'...
    Processing 'FAQ 01'...
    Warning: style (span.strong) is not defined and will be removed.
    Warning: style (p.para) is not defined and will be mapped to 'Normal'.
    Processing 'FAQ 02'...
    Processing 'FAQ 03'...
    Processing 'FAQ 04'...
    Processing 'FAQ 05'...
    Building 'RF-7800V-HH Glossary'...
    Warning: style (p.FM_CellRowHead) is not defined and will be mapped to 'Normal'.
    Warning: style (span.Glossary) is not defined and will be removed.
    Warning: style (p.FM_CellBodyLeft) is not defined and will be mapped to 'Normal'.
    Warning: style (p.FM_GLOSSARY) is not defined and will be mapped to 'Normal'.
    Warning: style (p.FM_Para) is not defined and will be mapped to 'Normal'.
    Completed building chapters...
    Building 'Index'...
    Updating list paragraphs...
    Updating images...
    Updating page numbers...
    Updating page headers...
    Updating Table of Contents...
    Updating Index...
    Saving 'Printed_Documentation.doc'...
    Completed building Printed Documentation...
    Preparing output directory...
    Cleaning up temporary files...
    Finished Printed Documentation generation in 5 minutes 36 seconds.
    Building Printed Documentation complete.

  • Excel sheets with defined print areas to pdf

    Hello
    I am trying to convert an Excel file with multiple sheets and defined print areas to pdf using Automator. The problem is that the action "Convert Format of Excel Files" prints everything on all sheets (even information outside the defined print areas).
    Does anyone have a solution to this?
    Thanks!

    Post what you would like to do in Excel here
    http://www.microsoft.com/mac/support

  • I am trying to print all the PDF pages in a range of 5 pages but can only print one page at a time . . . It will print the current page, but not all or pages 1-5.  Can this be overcome?

    I am trying to print all the PDF pages in a range of 5 pages but can only print one page at a time . . . It will print the current page only, but not all or pages 1-5.  I need to go to the next subsequent page and command to print current page; continuing with this procedure until all pages are printed one at a time. Can this be overcome?

    You can use printPages(1, 5), however I need to know how you print current page.

  • How to save print setup for pdf file so that every user can open and print w/o manually performing?

    Can is there a way to configure the print settings (i.e. paper size, orientation, etc.) and save this setting as part of the pdf file? I would like the users of pdf files to be able to open the file and simply print, without having to manually configure the print settings.

    Not sure if this will help. I got this information from the built-in help under Acrobat 9.
    Advanced
    Lists PDF settings, print dialog presets, and reading options for the document.In the PDF settings for Acrobat, you can set a base Uniform Resource Locator (URL) for web links in the document. Specifying a base URL makes it easy for you to manage web links to other websites. If the URL to the other site changes, you can simply edit the base URL and not have to edit each individual web link that refers to that site. The base URL is not used if a link contains a complete URL address.
    You can also associate a catalog index file (PDX) with the PDF. When the PDF is searched with the Search PDF window, all of the PDFs that are indexed by the specified PDX file are also searched.
    You can include prepress information, such as trapping, for the document. You can define print presets for a document, which prepopulate the Print dialog box with document-specific values. You can also set reading options that determine how the PDF is read by a screen reader or other assistive device.
    Create print presets
    A PDF can contain a set of print presets, a group of document-specific values that is used to set basic print options. By creating a print preset for a document, you can avoid manually setting certain options in the Print dialog box each time you print the document. It’s best to define print settings for a PDF at the time that you create it, but print presets provide a means to add basic print settings to a PDF at any time.
    Choose File > Properties, and click the Advanced tab.
    In the Print Dialog Presets section, set options and click OK.
    The next time you open the Print dialog box, the values will be set to the print preset values. These settings are also used when you print individual documents in a PDF Portfolio.
    Note: To retain a print preset for a PDF, you must save the PDF after creating the print preset.
    Print Dialog Presets
    Page Scaling
    Prepopulates the Page Scaling option in the Print dialog box with the option you choose:
    Default
    Uses the application default setting, which is Shrink To Printable Area.
    None
    Prevents automatic scaling to fit the printable area. This setting is useful for preserving the scale of page content in engineering documents, or for ensuring that documents print at a particular point size to be legal.
    DuplexMode
    For best results, the selected printer should support duplex printing if you select a duplex option.
    Simplex
    Prints on one side of the paper.
    Duplex Flip Long Edge
    Prints on both sides of the paper; the paper flips along the long edge.
    Duplex Flip Short Edge
    Prints on both sides of the paper; the paper flips along the short edge.
    Paper Source By Page Size
    Selects the option by the same name in the Print dialog box. Uses the PDF page size to determine the output tray rather than the page setup option. This option is useful for printing PDFs that contain multiple page sizes on printers that have different-sized output trays.
    Print Page Range
    Prepopulates the Pages box in the Print Range section of the Print dialog box with the page ranges you enter here. This setting is useful in a workflow where documents include both instruction pages and legal pages. For example, if pages 1–2 represent instructions for filling out a form, and pages 3–5 represent the form, you can set up your print job to print multiple copies of only the form.
    Number Of Copies
    Prepopulates the Copies box in the Print dialog box. Choose a number from 2 to 5, or choose Default to use the application default, which is one copy. This limitation prevents multiple unwanted copies from being printed.
    Thanks.

  • "Text on a path" and "paths" rasterised when printed from a PDF on an iGen

    I have just obtained from the printer the first proof of my book (printed on an iGen) and I'd like to find out where one of the problems lie. I'll ask the printer his opinion before second proof, but I don't like to annoy him unnecessarily.
    One of the chapters in the book has a lot of maps. I drew rivers by stroking a path, and named the rivers using 'Text on a Path' so that the text follows the curve of the river. Some of the maps have a pale background image on a different layer. And this is where the problem seems to lie.
    1. Rivers (and their names) appear normal on a map WITHOUT a background. By 'normal' I mean they look sharp. When magnified they seem to have been drawn as vectors.
    2. On maps WITH a background layer, 'Text on a path' appears very chunky (as if it has been rasterised at about 300 dpi) and paths (the rivers) appear to have the jaggies. Horizontal text does not appear to be affected.
    I can't be certain that (1) and (2) exactly define the problem, but it's as close as I can get at the moment.
    When I opened the original PDF file from which the book was printed, no matter how much I enlarge it, all paths and 'type on a path' retain their smoothness. i.e they are obviously vectors. However, I noticed when I opened the PDF in Acrobat 7 and tried to edit the 'text on a path', the PDF went haywire: the text I tried to edit disappeared, and other text frames on the page were shifted around.
    A sample PDF (6.7 MB, including an original two-page spread, and a scanned copy of the iGen print of the same), can be downloaded from:
    http://www.mediafire.com/download.php?oe4omuzoqzz
    Two questions:
    Q1: On the maps with a background image, is the rasterising of stroked paths, and 'text on a path' due to the iGen mishandling the file? Or might there be another explanation?
    Q2: Re Acrobat 7 mishandling my 'text on a path': is this a bug that has been fixed in later versions of Acrobat?
    To reproduce this bug do this: Open the PDF described above, and within Acrobat 7 select Tools > Advanced Editing > Touchup Text Tool. Then click inside the name "Georgina River", backspace to try and delete a letter, and the PDF should go haywire.

    Sandee: Almost certainly below the text, but I'd have to check them all.
    But before I do that, we'll have to go back a step. I can almost handle layers in InDesign, but didn't know they existed in PDFs. The printer printed from the PDF and as far as I can tell after a brief visit to HELP, there aren't any layers in the PDF. When I go to View > Navigation Tabs > Layers and click on the Layer Tab when it appears, there's nothing there; and all the items under Options are grayed.
    Q1: Why do I need a layer in a PDF? By not having layers, can that cause problems?
    Q2: Re Robert's suggestions: what do you mean by "move all the text to a top layer"? Within InDesign before I export to PDF?
    Q3: Is printing more foolproof when I export to PDF, if all my text is on the one layer in InDesign and that layer is above any images? There are several hundred river names, place names etc, sitting on lower layers, but if need be I'll move them all.

  • Since upgrading to v 4.01 I am unable to print from a .pdf opened in the browser. How can I fix this?

    Since upgrading to v 4.01 I am unable to print from a .pdf opened in the browser. How can I fix this?
    I can save the page, open in Adobe Reader and print. When in the browser the File - Print command does nothing. Printer screen does not open.
    Windows XP, all updates installed.

    Hi,
    One thing to slow it down: low ink. Please check ink cartridges and replace if required.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Printing problem when PDF is sent to the printer with certain fonts - missing text

    I'm running into a printing problem when PDFs containing certain characters of the Calibri font are used.  The text in large sections of the PDF is missing on the paper version, but the text is there on the screen.  It's also happened when the PDFs we created were e-mailed out to a client and printed on their printer.  The problem is not present when printing directly from the programs (Microsoft Word, Excel, Visio, etc.).  I've been trying to get tech support from Adobe on this, but every time I call they apologize and say they will call back in 4-6 hours with an answer.  Same result each time, no call back.  If anyone from Adobe is listening, it's case number 184891587.  The font appears as an embedded subset when I look at the document properties.  Sometimes deleting one or two Characters allows for larger text blocks to be printed - i.e. removing a long dash in bold from the heading of a paragraph makes the paragraph reappear when printed to paper from PDF.  In all cases the PDF appears correct on the screen.  Printing as an image allows the text to appear, but the image quality isn't acceptable for small text, even at the 600 dpi setting on the printer.  If the PDF is sent out by e-mail, we do not have control over the end-user's printer setup anyway, so we need this to work in all cases.  
    The setup/process I'm using is as follows:
    Windows 7 Professional SP1 64-Bit
    Microsoft Office 2013 - problem is present when printing documents from Word, Excel or Visio.  Even other variations on documents. 
    I've tried Acrobat versions 11.0.0 to 11.0.5 as well as Acrobat Pro 11.0.0 and 11.0.1.  Same Result
    Printing to Adobe PDF as the printer, from the third party application
    Printing to a Xerox printer from PDF using Acrobat - Text missing
    Client prints to Konica printer - Text missing
    I print to the wide-format Ricoh (which also does 11x17) and the text is present. 
    Is there something I'm missing?  Is the entire font not getting embedded into the PDF file?  I noticed that rolling back to a much older version of the Calibri font (1.02 compared to 5.72) makes the problem mostly go away, but it's not completely gone.  Is it possible the font is too large to be completely embedded?  Where can I go from here? 

    Success!  At least for now.  It looks like my problem was fixed with Adobe's most recent update, 11.0.06.  From the release notes:
    PDF creation
    Added support for Lotus Notes 9.
    Added support for WebCapture in IE 11.
    Added support for conversions from AutoCAD 2013.
    3652540 A blank pdf is created for files having hidden visual style.
    3601108 Flow Chart converts as a multicolored square.
    3654345 Word documents missing parts of images in conversion to PDF.
    3654572 Temporary file size increases when creating pdf by combining multiple files into one PDF.
    3670155 PDF file created with Distiller XI prints incorrectly to some printers. (Emphasis mine)
    3599407 Checkbox check marks do not appear in these files.
    3663233 IE Web Capture in localized OS: Icons and drop-down menu items are missing and conversion dialog is not localized.
    3651931 Chrome Only: Few web pages when converted to pdf from Chrome plugin doesn’t show up the Save As dialog.
    3597910 EPM Mode On: Web capture is not working on Windows 8-32 bit when cache folder is missing.
    3610644 Firefox 23.0: With Firefox version 23.0 (latest), the WebCapture icon shows up very dim as if it is disabled.
    3650244 ODA falis to convert DWG files to PDF for large files.
    I don't know if that's definately what solved the problem, but it sure sounds similar and this is the update that made the printing problem go away.  We can't get the PDFs to fail at this point with our printers, even with Calibri 5.72.  I'll come back to thread if we have printing problems at the end-user locations. 

  • [Applet]Printing issue with pdf files on Xerox 4595

    Greetings !!
    I'm trying to print to a Xerox 4595 printer from a Windows XP station (limited account) using a Java Web Applet.
    This applet generates pdf files which have to be printed.
    The Xerox 4595 uses a printing queue that is detected by the Applet.
    The problem is the following: usually when printing a simple local file from this computer there is a box that asks you your login to let you create a job and then print.
    When using the Java Applet, there is no way to have this print box displayed. We have the Java Print Dialog but once clicked on "Print" there is no box displayed to pass the login to the printer and let us print.
    Is anyone already worked with Xerox 4595 and experienced such issue ?
    How can I, using the Java language and modify the Applet, ask the printer to send me the dialog box asking for the login ? Without this login no jobs are accepted and we can't print the generated pdf files.
    I looked on the printer queue settings and it seems that the Xerox uses the IPP to communicate with the local computers in the office.
    The server from which the Applet is used is a openSuSE Linux Web server (apache2)
    How come using Linux workstations any pdf files are printed (on shared printers such HP laserjet) and under windows there is jammed characters and sheet feed instead ?

    A lot can depend upon which app your are using on your tablet device, the same applies to computer programs but apps are much worse.
    Which app are you using?
    I would try the free Adobe Mobile Reader. This product seems to support more features than other apps.
    There could even be issues with the type of tablet you are using. The Apple line may work better then Android devices since there is QA check and approval by Apple.
    Another factor is the how the PDF was created.
    How well are the maps displayed on your laptop or desktop? Try different values of zoom.

  • Elements dropping off my files when printed from a PDF

    Please can anyone help... I am running InDesign CS1, I have recently designed a leaflet which included dotted lines for answers to questions.
    To make the dotted lines I used the full stop button (rather than the dotted line option on the line tool). Because the file had an awkward bleed area it was necessary to create a PDF file (using the inDesign PDF export option at High Resolution, no compressions) to lay the document up ready for print.
    However when I printed the document to a networked Colour Copier and to the Platemaking system the lines had mysteriously dropped off... Unfortunately I didn't spot that they weren't on the Platemaker Preview because they hadn't appeared on the Colour Copy (which I use to compare the two for errors) and so a 10,000 print run later and the job was rejected. Does anyone know why this has happened?
    If I print directly from the original InDesign document they show perfectly. If I print the same PDF layup from InDesign CS2 they don't show. Yet if I print from InDesign CS4 they print perfectly from exactly the same file, so I don't think it can be down to the PDF or the typeface (which is standard Helvetica Light).
    I obviously can't afford for this to happen again and it would be good to know if there is something I can do to prevent it... In a perfect world all 3 machines in the office would be running the same version, but in the current financial climate we can't afford to upgrade. I would use CS4 all the time, but for the other two computers which would never be able to open the InDesign files again. It doesn't make sense to me as EVERYTHING was created on the CS1 machine, so I would assume that the machine and software would be able to use it's own programming without issue.
    Thank you for any help you can give me.

    Why are you using the line tool or full stops for this? Use a right indent tab and use a "full stop" in the leader
    http://indesignsecrets.com/tab-leaders-part-1-separating-columns-of-text-with-dots.php
    http://indesignsecrets.com/tab-leaders-part-2-formatting-leaders.php
    I'm not clear on what version of InDesign you are referring to - CS1, CS2, CS4?
    As for why it's not appearing, that is a mystery? Any screenshots ?

  • Superscript Characters not printing in a PDF

    I was wondering if anybody knows of a work around to print superscript characters in a table.
    I am a Structural Engineer and use tables for my loadings however instead of m^2 (the 2 is superscript and no ^) I get m when I print my document to a pdf. But when I print to paper it prints as shown.
    The wierd thing is if the superscript isn't in a table it will print ok !!!
    I can obviously use ^2 instead but this looks unprofessional and a mess.
    I tried to log this problem to Apple, but they wanted $20 just for the privledge
    Thanks inadvance

    Just tried again in the new Numbers 3.5 with Yosemite and this seems to have been finally fixed.
    Printed to a pdf and superscript text was printed correctly.
    I'll do some more testing but I hope I can finally say goodbye to Numbers 2.3.
    My guess is this will be fixed in Pages too...

  • Printing to a PDF when Adobe Reader disables "Save as PDF"

    I have searched far and wide on the web and cannot figure this out.
    I have an Adobe PDF. When I try to open it with Preview, I get the following message:
    Please wait...
    If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of document.
    You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by visiting http://www.adobe.com/go/reader_download.
    For more assistance with Adobe Reader visit http://www.adobe.com/go/acrreader.
    Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Mac is a trademark of Apple Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the U.S. and other countries.
    From what I have read, Adobe has imbeded some commands into the PDFs created by certain software which only allows the PDFs to be opened by Adobe products (Reader, Acrobat, etc.). I can easily open it with Adobe Reader and fill the document in. However, it is a job application, and I would like to be able to email it back to somebody, but I wish to make it so that it is not editable.
    Normally, this would be easy, simply use Preview's "Save as PDF" function. Unfortunately, "Save as PDF" does not work from Adobe Reader, I am not sure why although I am sure both Apple and Adobe will point fingers at the other when asked.
    Thus, I am looking for a program that will effectively clone a printer, but print to a PDF instead of a actual printer. I have used PDFwriter in the past, and tried CUSP-PDF, but neither seems to work in Mountain Lion. I am running Mountain Lion 10.8.3 and the most current version of both of these  PDF print clone programs appears to be several years old, Snow Leopard era.
    Any input on how I can convert the PDFs that are only openable in Adobe Reader to a non-editable format would be greatly appreciated. I can easily print them and then scan them back in, but the end result does not look professional and I would prefer to not have to do this.
    Thank you,
    Willis

    I found another discussion that provided a solution:
    CutePDF for Mac or other compatible software
    For instrucitons on use see:
    http://basics4mac.com/article.php/print_to_pdf#here
    Look for the program CUPS-PDF.
    "cups pdf is like cute pdf but for mac
    https://bitbucket.org/codepoet/cups-pdf-for-mac-os-x/downloads
    after installing you need to go to settings, printer, add printer
    full instructions here
    http://basics4mac.com/article.php/print_to_pdf
    pdfs go in /Users/Shared/CPS-PDF/{your account name}"
    Thanks to Bob Harris and geagon.
    Be sure to allow all software to be downloaded.
    You have to locate the file where the prints are saved.
    However you can put an alias up to it on your desktop.

  • Print- Save as PDF from Java applet on a webpage in Safari

    I am on a Mac running OS X version 10.8.5 and Safari version 6.1.2.  I am using the website www.wordle.net, which uses a Java applet to create a Wordle. The applet has a print button.  The website FAQ says I should be able to save a Wordle as a PDF on a Mac.  When I try to do this I get a small dialog that simply says "Error whilte printing."
    Here is some of the system.log:
    Mar  4 16:57:54 Kroghs-iMac.local sandboxd[602] ([557]): java(557) deny file-write-create /private/var/folders/f0/c8r_ry6d4131x95phl6fv7kr0000gn/T/WebKitPlugin-f12Pu6/53 164c620f81b
    Mar  4 16:57:54 Kroghs-iMac.local java[557]: spawn_via_launchd() failed, errno=1 label=[0x0-0x96096].com.apple.ImageCaptureExtension2 path=/System/Library/Image Capture/Support/Image Capture Extension.app/Contents/MacOS/Image Capture Extension flags=0
    Mar  4 16:57:54 --- last message repeated 1 time ---
    Mar  4 16:57:54 Kroghs-iMac.local java[557]: ERROR: [ICCommandCenter launchAgent] - Failed to launch agent[1], status: -10810, url: 'file://localhost/System/Library/Image%20Capture/Support/Image%20Capture%20Exte nsion.app/'
    Mar  4 16:57:54 Kroghs-iMac.local java[557]:
              ***** Failed to launch Image Capture Extension.
    Mar  4 16:57:54 Kroghs-iMac.local java[557]: spawn_via_launchd() failed, errno=1 label=[0x0-0x97097].com.apple.ImageCaptureExtension2 path=/System/Library/Image Capture/Support/Image Capture Extension.app/Contents/MacOS/Image Capture Extension flags=0
    Mar  4 16:57:54 --- last message repeated 1 time ---
    Mar  4 16:57:54 Kroghs-iMac.local java[557]: ERROR: [ICCommandCenter launchAgent] - Failed to launch agent[1], status: -10810, url: 'file://localhost/System/Library/Image%20Capture/Support/Image%20Capture%20Exte nsion.app/'
    Mar  4 16:57:54 Kroghs-iMac.local java[557]:
              ***** Failed to launch Image Capture Extension.
    Mar  4 16:57:54 Kroghs-iMac.local java[557]: spawn_via_launchd() failed, errno=1 label=[0x0-0x98098].com.apple.ImageCaptureExtension2 path=/System/Library/Image Capture/Support/Image Capture Extension.app/Contents/MacOS/Image Capture Extension flags=0
    Mar  4 16:57:54 --- last message repeated 1 time ---
    Mar  4 16:57:54 Kroghs-iMac.local java[557]: ERROR: [ICCommandCenter launchAgent] - Failed to launch agent[1], status: -10810, url: 'file://localhost/System/Library/Image%20Capture/Support/Image%20Capture%20Exte nsion.app/'
    Mar  4 16:57:54 Kroghs-iMac.local java[557]:
              ***** Failed to launch Image Capture Extension.
    Mar  4 16:57:54 Kroghs-iMac.local java[557]: spawn_via_launchd() failed, errno=1 label=[0x0-0x99099].com.apple.ImageCaptureExtension2 path=/System/Library/Image Capture/Support/Image Capture Extension.app/Contents/MacOS/Image Capture Extension flags=0
    Mar  4 16:57:54 --- last message repeated 1 time ---
    Mar  4 16:57:54 Kroghs-iMac.local java[557]: ERROR: [ICCommandCenter launchAgent] - Failed to launch agent[1], status: -10810, url: 'file://localhost/System/Library/Image%20Capture/Support/Image%20Capture%20Exte nsion.app/'
    Mar  4 16:57:54 Kroghs-iMac.local java[557]:
              ***** Failed to launch Image Capture Extension.
    Mar  4 16:57:54 Kroghs-iMac.local java[557]: spawn_via_launchd() failed, errno=1 label=[0x0-0x9a09a].com.apple.ImageCaptureExtension2 path=/System/Library/Image Capture/Support/Image Capture Extension.app/Contents/MacOS/Image Capture Extension flags=0
    Mar  4 16:57:54 --- last message repeated 1 time ---
    Mar  4 16:57:54 Kroghs-iMac.local java[557]: ERROR: [ICCommandCenter launchAgent] - Failed to launch agent[1], status: -10810, url: 'file://localhost/System/Library/Image%20Capture/Support/Image%20Capture%20Exte nsion.app/'
    Mar  4 16:57:54 Kroghs-iMac.local java[557]:
              ***** Failed to launch Image Capture Extension.
    Mar  4 16:57:55 Kroghs-iMac.local java[557]: Printing failed because PMSessionBeginCGDocumentNoDialog() returned -108.
    I've removed the Adobe plug-ins from /Library/Plug-Ins
    Print->Save to PDF works from Safari when I am on a regular webpage.
    Print->Save to PDF works from Pages
    Help!  I want to make Wordles for the teachers at my kids school for Teacher Appreciation Week.

    YES!!!!!!!
    I was pulling my hair out last night over this. I noticed the Find function was not working properly. I KNEW there was something in the PDF and Preview was not showing it. I spent 2 hours trying to find someone with a similar Find function problem, but could not find much. Also, it could not copy and paste text. I KNOW it worked before because I had taken notes on this particular PDF and had copy and pasted whole paragraphs for myself into Pages. Which is what got me searching online tonight.
    I re-downloaded the same PDF. When first opened in Preview, the Find and copy/paste functions worked. Same thing in Acrobat reader and Acrobat Pro. After confirming this, I re-opened it in Preview, highlighted some text and closed. It asked to Save Changes and I did. I immediately re-opened it, and guess what? Find no longer works and neither does copy/paste. Just to be sure, I tried re-opening in Acrobat reader and Pro; same thing. No copy/paste, corrupted Find feature. Well, copy/paste sort of functions, its just that it pastes a square with an alien head in it that says "Private Use 100000 Plane 16".
    And finally, on some PDFs that have not even been saved in Preview, the Find function is not working properly also. It happened on the re-downloaded PDF I just talked about. It finds many instances of the word, bit the left and right arrows next to "Found on X# Pages are greyed out and do not move through the document. Once I go to the left pane that displays page thumbnails and click on a few different ones, THEN it starts working.
    So yes, Apple, Preview is corrupting PDF files upon save, AND it is not working properly on other files. Please fix this. PLEASE.
    And my specs are the same as Gary; iMac 27 inch Late 2009, Yosemite 10.10.1. Is ANYONE else having this issue with a different Mac?

  • Formatting Issues When Printing from a PDF

    I am currently using Adobe Acrobat Pro 9 in Windows 7.  I have been printing or saving documnts as PDF's without issues until today.  I have created a document in Microsoft Publisher and have saved it as a PDF.  When I open that document, it appears on screen just as the original file in Publisher.  My issues are when I print from the PDF document.  When I print from the PDF, the formating for footers is not saved.  For example.  I might have a blank page with a page number at the top and a footer containing my company name on the bottom of the page.  When I print that page, the page number is where it is suppose to be, but the footer is moved to right under the page number at the top of the page.   I have been printing PDF from Publisher for years using these same versions of Adobe and Publisher.  Does anyone know why the formatting is not printing correctly?

    Hello John.
    See this article. I hope it helps:
    http://kb.mozillazine.org/Problems_printing_web_pages

Maybe you are looking for

  • Oracle 8i Lite: TNS error (ORA-12203)

    Hi, I Have Installed oracle 8i Lite for win 98/and palm operating system on a WIN 98 , pentium III machine. THE INSTALLATION IS SMOOTH. I am able to see the database and users through the Oracle Navigator. But when i try to connect through sql*plus i

  • Monitor erroneous messages

    Hi all, I have implemented scenario HTML -> XI -> RFC -> ERP. Sceneario in this direction is ASYNCHRONOUS. I have found out, that I have there some issues. From time-to-time ERP system is not accessible (database validation or verification is in prog

  • Goods issue through PI sheet

    Gurus, I am facing a strange problem. I am trying to issue components through PI sheet. I have used almost all the standard characteristics (such as cons_1, cons_2, cons, cons2 etc.). But everytime I try to issue the material I find that the header m

  • Is it possible to deploy appln created in java Studio creator

    Dear Everyone, Is it possible to deploy appln created in java Studio creator. regards, Ashish SAMANT

  • Creating a QT Master for a Digital cinema Screening.

    Hello, I'm preparing a film for a Digital Cinema release. We shot it DVCPRO HD 1920x1080 25fps progressive and we are delivering a TIFF video file with the same specs. They will then be upresing that to a 1998 x 1020 DCP file. My concern is that the