141026-08 print patch nobanner - hpnpf failed printing remote print jobs

Hi,
after updating patch "141026-08" I can't no more print from remote hosts to central print server (with remote hp laserjet);
means print from other servers => to print server where all jobs are distributed => to network attached printers:
/opt/hpnpl/bin/hpnpf -j gogh-247 [email protected] -w -o/opt/hpnpl/tmp/jadump -a1 -x gogh -s /var/tmp/gogh.log
02/15 16:18:37: printer fault. type: mail root, status: c
msg: (hpnpf: cannot access file [email protected])
note: gogh -> name of the network printer here;
As you can see the first parameter '-j' contains white spaces "gogh-247 [email protected]" and so the script failed;
-> This does not happen when I print any file on the "print server" locally;
-> This does not happen when starting printing with option nobanner: "% lp -d gogh -o nobanner file.ps"
Workaround :?
I have removed patch "141026-08" and it work like years before.
Any comments ?
Mfg/Regards

If the RIP is an EFI Fiery product, then the LPD queue name has to be entered when you create the printer queue. If it is not Fiery, it still may require some specific queue name to print.
If any Mac is still printing to the RIP, you can check what queue name has been used via a browser. For the URL, enter http://127.0.0.1:631/printers to open the CUPS printer page. Scroll through to the Xerox and have a look at the Device URI. If it shows something like lpd://ip_address/print, then you know a queue name is required - in the case of the Fierys it has to be print or hold and it must be entered in lower case.
As for the IPP, you may find that this service has not been enabled or does not exist on the RIP.
Regards,
PaHu

Similar Messages

  • C++ Debug Assertion Failed! - when printing with LOCL method G and GUI 620

    Hi all
    I've just raised an OSS message with SAP but don't think they'll help as the GUI version is no longer supported... if anyone else has come across this though and has any suggestions that would be great...
    Thanks
    Ross
    Hi
    We recently upgraded a few users to the 720 SAP GUI and had issues with LOCL printing, as we were still using the older "F: Printing on Front End computer" method of printing. As per SAP Note "Note 821519 - Front-end printing with control technology" the solution is to use method "G: Front end printing with Control Tech".
    However, we now get an issue with SOME users who are running the SAP GUI 620 patch 57. When they try and print to LOCL they get a pop up dialog box error:
    "Microsoft Visual C++ Debug Library
    Debug Assertion Failed!
    Program: C:\Program Files\SAP\FrontEnd\SAPgui\saplogon.exe
    File: fputs.c
    Line: 48
    Expressiom: steam != NULL"
    I appreciate that this old GUI is no longer supported BUT the SAP note states that 620 patch 56 is the minimum level for method "G" to work - and previous testing showed that it DID work ok. It seems only some of the 620 patch 57 users are affected - just wondering if you can advise why and if there is a 'quick fix' for this, perhaps an updated fputs.c file or something?
    The issue is that we literally have thousands of users on this version and cannot roll out 720 quickly enough & without some additional testing/costs etc. We have a 710 patch 18 version we can roll out but this can cause IE8 issues... neither do we wish to revert to control method "F" as this will then 'break' printing for those users.
    We have created a LOCL_OLD printer with method "F" but some users (for various reasons, including hard coded printers in bespoke transactions) cannot select this and have to use LOCL...
    If you are aware of the C++ debug assertion error and have any possible solutions that would be much appreciated.
    Many thanks
    Ross

    > I appreciate that this old GUI is no longer supported BUT the SAP note states that 620 patch 56 is the minimum level for method "G" to work - and previous testing showed that it DID work ok. It seems only some of the 620 patch 57 users are affected - just wondering if you can advise why and if there is a 'quick fix' for this, perhaps an updated fputs.c file or something?
    fputs.c is a source file that is used to compile the GUI. The assertion is thrown because an expected condition is not met. So even if you would take out the assertion, there's no guarantee it'll work because "something" on the operating system is not right.
    I suggest you compare installed software and windows hotfixes on the affected PCs vs. those who don't show this error. The error may also be that after the installation of the SAPGUI another software product was installed that replaced certain DLLs that are also used by the SAPGUI.
    Markus

  • Failed attempt at printing .txt file

    I've searched high and low for a solution, but I have just had no luck getting any output. I have a function that reads a text file and sends the file to the printer.. however, it never reaches the printer, rather, it just sits and hangs in the printers print queue. (and of course its no simple task to delete that queued print job with the simple "cancel" option in windows... have to open up cmd and type "net stop spooler", then "net start spooler", then cancel the print job to get it to delete). It acts almost like it doesn't close the print stream when it reaches the end of the file, but I have no idea how to close the stream once everything has been printed or spooled (if thats even the issue at all). Also a side note, it doesn't lock up the java app when the printer is set to "spool", but it does when it is set to accept an input stream... anyhow, here's the code thats been causing my headache for a week...
        public synchronized void PrintFile(String filename, String selectedprinter)
            selectedprinter = (selectedprinter == null)? defaultprinter : selectedprinter;
            // find the selected printer
            DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
            // DocFlavor flavor = new DocFlavor("application/octet-stream", "java.io.InputStream");
            PrintRequestAttributeSet attrib = new HashPrintRequestAttributeSet();
            PrintService svs[] = PrintServiceLookup.lookupPrintServices(flavor, attrib);
            int pindex = -1;
            for(int a = 0; a < svs.length; a++)
                String tmp = svs[a].toString();
                if(tmp.compareTo(selectedprinter) == 0){ pindex = a; }
            // can't print if selected printer isn't found...
            if(pindex != -1)
                PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet();
                aset.add(MediaSizeName.ISO_A4);
                aset.add(Sides.ONE_SIDED);
                aset.add(new JobName(filename, null));
                aset.add(new Copies(1));
                DocPrintJob job = svs[pindex].createPrintJob();
                try{
                    InputStream input = new BufferedInputStream(new FileInputStream(filename));
                    PrintJobListener pjlistener = new PrintJobAdapter() {
                        public void printDataTransferCompleted(PrintJobEvent e) {
                            System.out.println("Document sent to printer.");
                        public void printJobCompleted(PrintJobEvent e) {
                            System.out.println("Document was successfully printed.");
                        public void printJobCancelled(PrintJobEvent e) {
                            System.out.println("Document printing was cancelled.");
                        public void printJobFailed(PrintJobEvent e){
                            System.out.println("Document failed to print.");
                        public void printJobNoMoreEvents(PrintJobEvent e) {
                            System.out.println("No more print events.");
                        public void printJobRequiresAttention(PrintJobEvent e) {
                            System.out.println("Printer requires attention.");
                    job.addPrintJobListener(pjlistener);
                    DocAttributeSet das = new HashDocAttributeSet();
                    das.add(Sides.ONE_SIDED);
                    Doc doc = new SimpleDoc(input, flavor, das);
                    job.print(doc, aset);
                    //input.close();
                catch(Exception t){t.printStackTrace();}
            else
                // can't find selected printer
        }any help would be greatly appreciated. thanks in advance!

    trying to get the BOGO offer that was promised to you, yes.  I think you have good reason to be unhappy.....but "free" anything else isn't going to happen...

  • Device Manager HP Printer ! Symbol, Windows "failed to connect" Sound- Yet Printer Works

    Every startup, I hear the Windows "device failed to connect" sound.  How can I get rid of this?
    I have an HP J6480 Printer with WIn 7.  Device Manager is not recognizing the printer driver. 
    Under Device Manager, the printer is listed with the ! error symbol.  No other devices have an error symbol.  Yet the HP Solution Center and printer work.
    1)  I have tried fresh installs of the current HP Full Feature Software. 
    2) I have tried the HP Uninstall program, going through all five Uninstall programs two times.
    3) I have run CCleaner to clear registry issues.
    4) I have tried deleting the Device Manager "Officejet ! J6400 series" entry.  The Solution Center and the printer then do not work.  Apparently, Device Manager recognizes the printer but not the driver.  I have to go to "Programs", "HP", then "Officejet J6400 Series" to reinstall the software. 
    5) I have tried to get Device Manager to recognize the software.  When I click on "! Officejet 6400 series",  I get the message "the drivers for this device are not installed (code 28)".  If I then click on "Update Driver" and select" Browse my computer for driver software" then click on "Browse "C:\Users\Myname\Downloads", where I have both the HP 13.0 Full Feature Sofware Software and the Basic Print and Scan Driver files, it says "Windows cannot find driver software".   If i click on "Search automatically for driver software" I get the same message.
    I would very much appreciate any ideas!  Thank you!
    This question was solved.
    View Solution.

    Friendlycomputr,
    Your persistence is admirable! I totally understand you just want it working properly. I really appreciate the updates, I am going to look into this and get back to you as soon as I can!
    Thanks again
    HevnLgh
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • After mavericks update, HP print error message = 'filter' failed.

    Since I updated my MacBook Pro to OSX 10.9, I can no longer print on my HP Deskjet 1220C.  I get an error message that says "filter failed".  This printer is about 10 years old, but it's a goodie. It worked fine when I was using OSX lion. My roommate is still using OSX lion, and can print on the 1220C just fine.
    I tried reinstalling the drivers found at < http://support.apple.com/kb/DL907?viewlocale=en_US&locale=en_US >, but got the same error message when I tried to print.
    Is there a raster filter file I could copy from the old operating system to solve this issue?  Any suggestions?

    Mr. McGruzoo,
    I went to PCHelpStation, an online company that will remotely fix computer problems.   Last week, that got the printer to work.  Then two days ago, I realized that the “generic” printer driver only prints in black.   Yesterday and today. the company spent hours and finally that company gave up.   After seeking all kinds of work-arounds, nothing will change.   Now, I am in a email war with Hewlett Packard.   My 1220c printer is excellent.    I do not want to buy another and I believe that HP should support every computer.   The fact that HP has excellent long lasting products is all the more reason for that company to continue to support the 1220c printer.   In one the emails, the VP of HP offered me a coupon for 20 dollars off paper and toner and a printer recommendation to buy a new one.    I am not taking the coupon nor buying a new printer. I want a DRIVER for my printer!
    Thank you for responding to my post.   Maybe all of us can band together and badger HP until a driver is provided.
    Sincerely,
    Rosalind Johnson

  • Filter failed message from printer

    I get the filter failed message from printer - an Epsom 387.
    It has worked wirelessly for over a year - today it will not.

    For my
    Epson Stylus Photo PX720WD
    I found downloading
    * Mac OS X Common Updater (v8.0) 12-May-2011 36.94 MBs *
    With the Mac OS X Common Updater you keep your printer drivers always up to date
    Very very helpful......
    YOU CAN FIND IT AT
    http://www.epson.co.uk/gb/en/viewcon/corporatesite/products/mainunits/support/10 840
    it worked straight away.. i hope it helps you also.

  • Print Cartridge Error (Electrical Failed Pen)

    I'm using an HP Deskjet F4400 series, and I just replaced my empty black cartridge.  Prior to that, the color cartridge was around 75% full.  After installing the black cartridge, I have an error with the color cartridge, Print Cartridge Error (Electrical Failed Pen).  I found a thread that suggested cleaning the contacts, but I still have the same error, and cannot use the printer.  Please help!
    This question was solved.
    View Solution.

    Hi, you could try doing a reset (check out this link ), then try to reseat the cartridges and perform an alignment (details here ). Does this solve the problem?
    Although I am an HP employee, I am speaking for myself and not for HP.
    Twitter: @Ciara_B_HP

  • Failed to get printer information

    I have a legacy application in C++, now ported to VS 2010. All works fine, except I get an intermittent error. I'm printing a CNiReport to a pdf printer (Win2Pdf). Every so often I get an error dialog pop up with the message "failed to get printer information" and the print fails (no pdf produced). This comes from the CnIReport:rint. Unfortunately I'm trying to run my program unattended and this dialog hangs waiting to be dismissed. If I dismiss the dialog and let the program continue, it does and then may or may not get the same error on the next Print. It fails both if I pass the printer name to Print and if I pass an empty name to make it use the default printer.
    Can someone from NI confirm that the dialog is coming from CNiReport:rint and is there anything I can do to stop it? Also, why would it happen only occasionally?
    Thanks
    Phil reaston

    Hey Phil,
    Could you post a screen shot of the error dialog?
    It is uncharacteristic of NI software to have an error cause a dialog to popup. Typically an error code is returned passed and dealt with in error handling or the execution (compiling, run, etc) failing. so I am inclined to say this error is associated with the printer driver. 
    Luke W

  • Printing Error - pstopdffilter/pstocupsraster failed with err number -31000

    Hi All,
    I'm hoping someone could assist me with this. After googling like crazy for a solution I thought I had to post here on the forums. I'm a new Mac user (only a few days now) so please bear with me. I will also post this on the Java Forums because I don't know if this is a problem with my code or with the Mac settings.
    Setup
    I've got a Java Applet running on the mac (written in Eclipse 64 bit) on a Mac with OS X 10.6.4 on. Also, Java 1.6.0_21 (both 32 bit and 64 bit) is installed on the machine. The printer installed is a ZPL Label Printer (Zebra Technologies ZTC GK420d).
    If I use another application such as TextEdit to print, it works fine.
    *Problem Description*
    Whenever I try print from the Applet nothing comes from the printer, my code does not break or catch any exception at all but the printer queue gives the error: *pstopdffilter/pstocupsraster failed with err number -31000.*
    Code
    The code I use with this Java Applet works absolutely fine on Windows XP 32 bit (IE 7.0, Google Chrome and Firefox) as well as on Windows 7 64 bit (I.E 8.0, Google Chrome and Firefox) but never on the Mac. For any developers who might be able to help, the code is below:
    import java.applet.Applet;
    import javax.print.Doc;
    import javax.print.DocFlavor;
    import javax.print.DocPrintJob;
    import javax.print.PrintException;
    import javax.print.PrintService;
    import javax.print.PrintServiceLookup;
    import javax.print.SimpleDoc;
    import javax.print.attribute.PrintServiceAttribute;
    import javax.print.attribute.standard.PrinterName;
    import javax.print.attribute.HashPrintRequestAttributeSet;
    import javax.print.attribute.PrintRequestAttributeSet;
    import javax.print.attribute.standard.Copies;
    public class UKMJavaPrintApplet extends Applet
    public void init()
    System.out.println("Initialising UK Mail Java Printing Applet...");
    public void start()
    System.out.println("Starting UK Mail Java Printing Applet...");
    PrintLabelZPL("^XA^FO100,40^BY3^B3,,30^FD123ABC^XZ","Zebra Technologies ZTC GK420d");
    public void stop()
    System.out.println("Stopping UK Mail Java Printing Applet...");
    public void destroy()
    System.out.println("Preparing unload of UK Mail Java Printing Applet...");
    public int GetPrinterCount()
    PrintService[] services = null;
    int serviceLength = 0;
    try
    services = PrintServiceLookup.lookupPrintServices(null, null);
    if(services != null && services.length > 0)
    serviceLength = services.length;
    catch(Exception z)
    System.out.println("Failed to get printer count: " + z.getMessage());
    z.printStackTrace();
    return serviceLength;
    public String GetPrinterName(int index)
    String sPrinterName = null;
    String printerName = "";
    PrintService[] services = null;
    try
    services = PrintServiceLookup.lookupPrintServices(null, null);
    for (int k=0; k < services.length; k++)
    PrintServiceAttribute attr = services[k].getAttribute(PrinterName.class);
    sPrinterName = ((PrinterName) attr).getValue();
    if(index == k)
    printerName = sPrinterName;
    break;
    catch(Exception r)
    System.out.println("Failed to get printer name: " + r.getMessage());
    r.printStackTrace();
    return printerName;
    public Boolean PrintLabelZPL(String zplString, String printerName)
    String errStr = "";
    Boolean boolSuccess = false;
    try
    if(printerName != null && printerName != "")
    PrintService psZebra = null;
    String sPrinterName = null;
    PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();
    pras.add(new Copies(1));
    PrintService[] services = PrintServiceLookup.lookupPrintServices(null, null);
    for (int i = 0; i < services.length; i++)
    PrintServiceAttribute attr = services.getAttribute(PrinterName.class);
    sPrinterName = ((PrinterName) attr).getValue();
    if (printerName.equals(sPrinterName))
    psZebra = services;
    break;
    if (psZebra != null)
    DocPrintJob job = psZebra.createPrintJob();
    byte[] by = zplString.getBytes();
    DocFlavor flavor = DocFlavor.BYTE_ARRAY.AUTOSENSE;
    Doc doc = new SimpleDoc(by, flavor, null);
    System.out.println("Printing to: " + printerName);
    job.print(doc, pras);
    boolSuccess = true;
    System.out.println("Printing Successful.");
    else
    errStr = "Zebra printer not found.";
    System.out.println(errStr);
    boolSuccess = false;
    else
    errStr = "No printer name was provided.";
    System.out.println(errStr);
    boolSuccess = false;
    catch (PrintException e)
    System.out.println("Print Failed with PrintException: " + e.getMessage());
    boolSuccess = false;
    e.printStackTrace();
    catch (Exception f)
    System.out.println("Print Failed: " + f.getMessage());
    boolSuccess = false;
    f.printStackTrace();
    return boolSuccess;
    Does anyone have any ideas on how I can resolve this and print to the ZPL printer from my Java Applet on the Mac?
    Any help would be much appreciated.
    Thanks!

    We managed to solve our own problem. This was not directly a Java Problem, but a problem with the setup of the Zebra printer on the Mac. Printing directly to the ZPL Printer never worked and always gave the error Printing Error - pstopdffilter/pstocupsraster failed with err number -31000.
    To solve this, we had to use the CUPS (Common Unix Printing System) interface. CUPS is apparently installed standard with every Mac. Being a new Mac user I didn't even know this a week ago. We had to use CUPS to add the printer, set it to be a "RAW" printer and then add something called a Class. Now when printing from the Java Applet, we DO NOT print to the actual Zebra printer, we print to the Class.
    Here are the steps on how to accomplish all this:
    1. As an Admin user, log onto Cups using the Safari browser by entering *http://localhost:631* into the Address Bar.
    2. Select the Administration tab and click, ‘Add Printer’
    3. Select the required local printer and then ‘Continue’
    4. Enter a Name, Description, Location and uncheck the ‘Share This Printer’ checkbox, where:
    a. Name = Queue Name (e.g. Zebra_RAW)
    b. Description = Human Readable Description (e.g. Zebra1)
    c. Location = Human Readable Location (e.g. My Mac mini)
    5. Click ‘Continue’
    6. Click ‘Select Another Make/Manufacturer’ and select ‘Raw’. Click ‘Continue’
    7. Click ‘Add Printer’
    8. Check that Banners are ‘none’ and Policies are ‘stop-printer’ (Error) and ‘default’ (Operation)
    9. Click ‘Set Default Options’
    10. Under the Administration tab, click Add Class.
    11. Enter a Name, Description, Location and select the Members:
    a. Name = Queue Name (e.g. ZebraRAWClass)
    b. Description = Human Readable Description (e.g. ZebraRaw)
    c. Location = Human Readable Location (e.g. My Mac mini)
    d. Members = the Queue Name of the new raw printer
    12. The only visible printers on the list then will be your non-raw printer/s and the printer class which you just created.
    13. Now when printing from Java Code, you must use the class as the printer in order to print raw ZPL.
    So in my example code in the previous post, I would print like this: PrintLabelZPL("^XA^FO100,40^BY3^B3,,30^FD123ABC^XZ","ZebraRaw");
    And it works! I hope this can help others with the same / similar problem.

  • OTF Module: Failed to output print data

    hi all,
    while seeing output on the screen i am getting this error on the status bar:
    "OTF Module: Failed to output print data"
    any one can help me in this regard why this error is coming i am  working on ECC.6

    Check this may give you some idea to solve your issue...
    Rough idea
    **Set printer parameters
    control_param-no_dialog = 'X'.
          control_param-preview = ''.
          control_param-getotf = 'X'.
          output_opt-tddest = 'LOCL'.
          output_opt-tdimmed = ''.
          output_opt-tdnewid = ''.
          output_opt-tdnoprint = ''.
          output_opt-tdnoprev = 'X'.
    Get smartform name
    call function 'SSF_FUNCTION_MODULE_NAME'
           EXPORTING
                formname           = formname
                variant            = ' '
                direct_call        = ' '
           IMPORTING
                fm_name            = fm_name
           EXCEPTIONS
                no_form            = 1
                no_function_module = 2
                others             = 3.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    Call smartform
    call function fm_name
               EXPORTING
                    control_parameters = control_param
                    output_options     = output_opt
                    user_settings      = ' '
                    wa_head            = wa_head
               IMPORTING
                    job_output_info    = job_info
               TABLES
                    int_detail         = int_detail
               EXCEPTIONS
                    formatting_error   = 1
                    internal_error     = 2
                    send_error         = 3
                    user_canceled      = 4
                    others             = 5.
    Note pass the job info file you got from above function module
    data: int_docs type standard table of docs,
            int_line type standard table of tline.
    call function 'CONVERT_OTF_2_PDF'
             IMPORTING
                  bin_filesize           = filesize
             TABLES
                  otf                    = job_info-otfdata
                  doctab_archive         = int_docs
                  lines                  = int_line
             EXCEPTIONS
                  err_conv_not_possible  = 1
                  err_otf_mc_noendmarker = 2
                  others                 = 3.
    USE below function module
    all method cl_gui_frontend_services=>gui_download
            exporting
              bin_filesize            = filesize
              filename                = filename
              filetype                = 'BIN'
            changing
              data_tab                = int_line
    Regards,
    SaiRam

  • Printing to Xerox 4150 fails

    Printing to th XEROX workcenter is not possible due tot "filter" prblems.
    The fliter fails.
    Couls anyone give me a clue on how tot solve the problem.
    My Xerox drivers are updated already.
    Kind regards!

    Looking at the log, the Xerox rep might be correct about permissions. As the log shows the psto7750ps is a filter located in the Mac HD/Library/Printers/Xerox/PDEs folder and for this managed account is failing. So check the permissions on this PDEs folder and the file to ensure all users have Read & Write. Even if Everyone is listed with R/W, it may help to add the managed account to the list.
    As a test you could create another queue to this AD printer but set the Print Using to Generic PostScript. This printer will not use the psto7750ps filter so if it works then you know it has something to do with this filter. I would then print the same file from the local account and check that this filter is also being called and is not erroring.
    Note that depending on what function this filter performs it may not always be called unless something special is selected in the print menu. This would usually be the case for plugins located in the PDE folder (which stands for Print Dialog Extension) but since this is a filter (but in the PDE folder?) then it may be called every time its queue is used.
    PaHu

  • 5510 printer/Mac 10.7 fail to complete installation after told to disconnect USB.

    Have installed all relevant software & drivers as advised by Apple/HP as disc not suitable for my Mac 10.7. Having gone through the full installation process the Mac fails to find printer in wireless mode after being told to disconnect USB cable. The printer is showing that it has a wireless connection to my AOL wireless router, but still I'm given the message 'select from devices below' but having taken the USB cable out, there is no device showing.
    This question was solved.
    View Solution.

    There was nothing in my instructions about installing software or inserting/removing a USB cable.  Please re-read and follow the instructions exactly.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Failed update to printer

    I have an HP Photosmart eStation C510a. It did an update over the WEB direct to the printer. The update failed to complete unsatisfactorily. Now when I try to print anything it spools out numerous blank pages with printed pages mixed in. How do I remedy this?

    Welcome to the forums billk!
    I would suggest uninstalling and reinstalling the printer software and driver to see if that will cure the issue with the printer printing out several blank pages, along with the printed document.
    If you would like me to find the steps to help you, please let me know which OS you are running.
    Help to find which Operating System you are running:
    Which Windows Operating System am I running?
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    Have a great Thursday
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • I tried to print airline tickets, it failed with the message insufficie​nt data, what do I have to

    I tried to print airline tickets from my iPad. It failed withe note insifficient data. What do I have to do

    Hey Jimlalak!
    Were you trying to print them from the Delta Airlines app? If so, can you print from any other apps? If you can print from other apps then you'll want to contact Delta, but if you can't print from any other apps let me know what error message you get and I'll try to help you out further. If you aren't printing from an app and are just printing from your computer, make sure you can print other documents and contact Delta for further help.
    Let me know if I can provide any more help!
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • TC 3.5 trial - Robohelp fails to make printed documentation

    When attempting to generate printed output, fails - says it can't find Word.
    At first, I installed the Office 2010 x64 trial, and that didn't succeed.
    In Word, File?options>trust center, enabled macros and access to the object model.
    No difference.,
    Went to RH Tools>Options, added Word to open .dot, .doc, .dotm, .docx
    No difference.,
    Then I read there were interop issues between 32 bit apps and 64 bit apps.
    Uninstalled Office x64, installed Office x32. Same symptoms.
    Uninstalled TCS
    Control panel > Office>repair
    Re-installed TCS
    no change.
    Re-checked Word's macro security settings, RH's .dot and .doc settings - those had stayed as I set them - is that a clue?
    Installed Office 2003 Pro, re-installed TCS.
    Robohelp still fails to produce printed doc, claims it can't find Word.
    help?

    Moved to Technical Communications Suite Installer

Maybe you are looking for