Upgraded to Office 2007, cant print from SAP

Dear all,
We have upgraded Office from 2003 to 2007. We cant print anymore from SAP. Any assistance?

found it on the net thanks

Similar Messages

  • Cant print from Word/Excel/Outlook to Onenote (Office 2010)

    Have a weird problem. The problem started quite resently....for a lot of users in our domain!
    As the title says I cant print from word/outlook/... to onenote.....the only thing i can print from is IE10 to onenote (all other printers work ofc pdf/physical and so on). But if someone has IE8 I doesn't work for them either...
    I have the printer under "printers and fax" so its not "gone"....I have tried to repair Office 2010+reboot with no success. AND i have the XPS document Writer present/working aswell.
    When i try to print i can see the "printing-icon" in the lower wright corner, so something is obviously "happening"....but if i put my marker there it only says "0 printing jobs for %username%"....and yes i'm currently sitting
    in a domain, i'm admin at my computer to(Windows 7 Enterprise).
    I'v tried almost everything i could find i terms of repairing and checking the HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\Ski&cka till OneNote registry key (but that's for IE...and that's working correctly).
    Now here's the fun part....if i run winword.exe as administrator (rightclick+Run as administrator) it works!
    But that's not a solid workaround....
    Anyone knows how to fix this?  And as i'v explained...tried to repair several times....restarted services....check so XPS function is enabled and so on and so on...
    //Regards Andreas

    Hi,
    According to your description, I selected the situations which your said above.
    1. A lot of Domain account could print from is IE10 to Onenote, but IE 8 not.
    2.When Domain account print to Onenote, but it hanged.
    3. Word works well if runned as administrator.
    From above, I think the printer setting was Ok, beacuse you could print something by using Onenote to physical printer.
    As far as I know, OneNote stores a raster and a vector format for the printout images. It will first load the raster image (quicker to load) then quickly switch to vector image (hi res/sharper). The image you see for a split second is the raster
    image and then vector format fails to render. I believe you did not lose any data, just that it fails to render due to a configuration issue.
    OneNote uses .NET to render the vector format and I have seen cases where the installed .NET version or not installed .NET updates would be a problem. I recommend you first make sure you have
    Win7 SP1 and Office and .NET updates that show up in Windows Update are all installed and retry after that.
    And then,please check the link:http://www.onenote-tips.com/printfails.html, it may be help for you.
    If the issue exists, Please use process monitor to selcet the log when the issue occurs.
    Regards,
    George Zhao
    TechNet Community Support

  • Problem with Courier font since upgrading to Office 2007

    Hi everybody,
    Since we upgraded to Office 2007, one of our Acrobat users (he is the only person in the firm really using Acrobat actually) has problems when exporting Word documents to PDF.
    So he is using Word 2007 and Acrobat Pro 9 (included in the CS4), he is modifying documents that were created with earlier versions of Word and the problem he has is since he has upgraded to Office 2007 (he was already using Acrobat Pro 9 without problem with Word 2003), text in the Courier font is replaced by those rectangles like unknown characters :
    So I would like to know what has changed in Word 2007 that makes it that the Courier font cannot be exported to a PDF (from what I read it is one of the standard fonts always included in PDF readers), if I can change some settings to fix it without modifying all the Word documents or at least get a warning when it is going to happen.
    Indeed the user's biggest concern is that he doesn't even receive a warning that that specific font won't be output correctly so he might change only some text or images in the Word document and export it to PDF and he will still have to check the whole document to make sure there was no Courier text that didn't make it through.
    P.S. He is using the Adobe PDF printer to do the export.
    Thanks.
    Jonathan V.

    Actually, I have a bit more information to share :
    In the PDF files created before upgrading to Office 2007 (with Word 2003), I can see that Courier - Type 1 - ANSI is partially embedded (I thought it was supposed to be one of the base/system fonts).
    I tried to export one of the Word documents affected again, replacing part of the Courier text with the Courier New font to see if it would work, the text in Courier New is showing correctly while the text in Courier still shows as squares.
    When I check the fonts in the PDF file, CourierNewPSMT - TrueType - ANSI, is embedded (not partially ??) and Courier - TrueType - ANSI is partially embedded.
    So I don't understand why Courier was embedded as Type 1 (but it worked) and now it supposedly embeds a TrueType Courier font that doesn't seem to work.
    Again, the major problem is that there is no warning that the font won't output correctly, so you have to check the whole document again or you might end up with some parts unreadable.

  • Using Preview when printing from SAP

    Just starting to use SAP Java GUI on the Mac and one of the 1st items I discovered was the inflexibility for printing. I would need to define the printer in the preferences of the SAP Java GUI and then anytime I would print it would just go to that printer.
    Problem with this is that sometimes I work from within the office, and sometimes from home with as a result that my printer changes.
    When on Windows, I also often performed a print from within SAP but then selected the Adobe PDF printer instead so that I had a resulting PDF file.
    What I thus really wanted was for anytime I print from SAPGUI to the local printer to get a print dialog just like it does on Windows. I checked around but could not find anything to replace the lp command with on Mac that would then provide this. As a work-around I developed the following small script instead. Now instead of just printing, the print-out will be shown in Preview as a PDF. From here I can then save it as a PDF, print it, mail it, .... anything else one can do with Preview.
    This is not the exact solution I wanted as I wanted to just get a print dialog; but this gets me a lot closer to it.
    See next post (hopefully as I am having issues posting) for script & steps.

    Instructions:
    First, make sure that printing is setup for SAP Java GUI. There is sufficient information out there but main items are that the printer within SAP is defined with method G and that the device type os POST2 (for postscript). Also ensure that under output attributes Color printer is checked.
    Next create the script. I put it in the /Applications/SAP Clients folder but it can be put anywhere you like. You can name the script however you like, I named it SAPLPD.
    First thing the script does is converting the postscript file to PDF and storing it in the user's temporary directory. It adds the timestamp to the filename just to ensure there are no duplicated. It then opens the PDF file using Preview. It will wait for 1 second after which it will remove the file created.
    It also looks that all the files in this temporary directory are automatically removed by OSX, so even should the file not have been removed; on next logout (I think) the file will be removed anyhow.
    Script:
    The script is:
    #!/bin/bash
    timestmp=`date +%Y%m%d%H%M%S`
    /usr/bin/pstopdf -i -o $TMPDIR/sap_print_$timestmp_$$.pdf
    open -a /Applications/Preview.app $TMPDIR/sap_print_$timestmp_$$.pdf
    sleep 1
    rm $TMPDIR/sap_print_$timestmp_$$.pdf
    Once you have created the script it needs to be made executable. Do this by open the Terminal, changing to the location where you saved the script and entering the command:
    chmod a+x (script name)
    So in my case I would have entered the following 2 commands in Terminal:
    cd "/Application/SAP Clients"
    chmod a+x SAPLPD
    Last but not least is changing the command the SAP Java GUI uses for printing. Go into preferences for the SAP Java GUI and go to the Printing section (under Desktop). There for the Print Spooler entry which is currently set to /usr/bin/lp you change that to the script. So for me I have:
    /Applications/SAP Clients/SAPLPD
    Easiest way to do this is by using the Browse button and then going to where the script is. No parameters are passed to the script so everything else can be removed. What I have is exactly what I show a few lines above.
    And that is it, when now printing from SAP it opens the print-out in Preview and from there I can select my printer options etc.
    Use of the script is on your own risk. It works for me but there is no guarantee that it will work for you.
    Would love to hear about any other options.

  • Cant print from internet on my d1660.

    cant print from internet without restarting the spooler. and have lots of trouble then. usually prints ok from desktop office.

    Have you ever had another printer installed on this computer? If so, it is possible that the wrong printer is selected in some of your software settings.
    007OHMSS
    I was a support engineer for HP.
    If the advice resolved the situation, please mark it as a solution. Thank you.

  • I cant print from firefox 3.6.6. anymore (but it works for emails), I'm on OS X 10.5.8

    I cant print from firefox 3.6.6. anymore (but it works for emails), I'm on OS X 10.5.8:
    URGENT, I NEED TO PRINT TODAY !
    whenever I need to print something from a web page it doesn't connect to my printer (Samsung ML-1270) but my printer works fine and I have no problems printing e-mails
    == a while ago already with older versions of firefox, but I didn't realize the problem is firefox so I can't tell exactly when it started

    Posted this elsewhere too; odd thing is both Safari AND Chrome work just fine. Did the suggestions but nothing fixed it, including deleting the app and trying to downgrade to a couple of versions back.
    Printing or even print preview on FF results in a blank page. Tried updating the "Add On" but that didn't do anything either. May have to give up on using FF. This is for my mother-in-law's machine and it works fine on my MacBook Pro at home. She's using an iMac with OS X 10.6.4 and this started with a recent upgrade.

  • How do i change my hp office pro 8600 printer from offline to online

    how do i change my hp office pro 8600 printer from offline to online

    Please read this post then provide some details.  What operating system? How is the printer connected - USB, wired LAN, or Wireless LAN?
    Running the diagnostics at http://www.hp.com/go/tools may help resolve the issue if you are using some recent version of Windows.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • User not able to print from SAP

    Hi guys,
                 User is not able to print from SAP. The printer is directly connected to his PC. It is not a network printer. The user is able to print at OS level perfectly. IN SP01, it shows in green and the print job has been completed successfully. I can see the output request. Its all fine in SAP. I am not sure why it is not printing from SAP. Please help ?
    Thanks

    hi venkata,
    did you already defined your printer on SAP Server using tcode SPAD ?
    What kind of printing you're using ?
    My suggest for simplest one is create new output devices.
    Type tcode SPAD
    Give simple name
    Choose SAPWIN for device type (if you're using WIndows clients)
    On Access Method tab
    Choose Host Spool Access Method F : Front end Printing or G :
    For Host Printer fill with __DEFAULT (remember double underscore)
    save and test it.
    ardhian
    http://sapbasis.wordpress.com

  • Printing from SAP via main frames

    Hi,
    We are runnnig Our SAP 47 on Solaris Operating System.  We have a requirement for printing form SAP using Mainframe Print Queues.  Does any one have any info on how to setup print queues in main frame or printing from SAP via mainframe servers.  Any Info would be really helpful.
    thanks in advance
    Sitapati Kalluri

    You can use IBM Infoprint Server for z/OS.
    <a href="http://www.printers.ibm.com/internet/wwsites.nsf/vwwebpublished/ipserverhome_z_ww">http://www.printers.ibm.com/internet/wwsites.nsf/vwwebpublished/ipserverhome_z_ww</a>
    But this is priced feature of z/OS and requires some customization.
    Regards, Martin

  • My printer is connected to airport by usb but i cant print from my iphone wirelessly even though my iphone is connected to the network..my macbook pro prints wirelessy

    help
    cant print from iphone but can print from macbook pro wirelessly thru airport extreme
    why cant i print off the iphone

    The iPhone cannot print to a device that is connected to the USB port of an AirPort router unless you install an App like Printopia.
    Printopia - AirPrint to Any Printer - Print from iPad - Print from iPhone ...
    I like this App because it works for me and there is also a free trial, so that you will know if it will work for you before you buy.

  • Problems with EXCELSIUS 2008 after upgrading MS-Office 2007 to SP2 ??

    Hi Community,
    has anyone experienced how EXCELSIUS 2008 works after upgrading MS-Office 2007 to the new SP2 ??
    (including "2007 MS Office Suite Service Pack2 (SP2)" and "MS Office Compatibility Pack Service Pack 2 (SP2)" and "Security Updates for MS Office System 2007 (KB969618)" and "Update for 2007 MS Office System (KB967642)")
    We're going to upgrade our PCs and need to know about any possible trouble/problems with our mission critical applications (and EXCELSIUS was identified as one of them
    Thanks in advance ...
    Peter

    I'm not sure if MS Office 2007 SP2 will actually cause any problem, but according to the supported platform list for Xcelsius 2008 SP1, MS Office 2007 SP2 is not listed (Office 2007 is).
    Other Tools
    =============
    Office      (Excel, PowerPoint, Outlook, Word)
    Windows Office 2003                  
    Windows Office 2003  SP1               
    Windows Office 2003  SP2               
    Windows Office XP  SP3
    Windows Office 2007
    Fix packs typically do not include additional platform support, so I believe that 2007 SP2 is still not supported as of FP3. I'm pretty sure though that Office 2007 SP2 will be supported in the very near future...

  • I cant print from EXCEL

    I have just installed my new HP Office Jet Pro 8600 and I am unable to print from EXCEL...Can anyone advise please?

    Do you receive any error messages?
    Yes, the error message I receive is "current printer is unavailable. Select another printer". This error message is shown when I try to print a excel or a PDF file. However, I have no issues printing from Word, or the web. Also, I have a second computer signed on from a wireless network, and it can print everything without an issue.
    What options do you get when you try to print from Excel?
    It gives me the option to use "Microsoft XPS Document Writer" or "Quickbooks PDF converter". However, neither of these options allow me to print. 
    Does it work from other Office programs?
    Yes, Microsoft Word.
    How is the printer connected to the computer?
    The printer was originally a wireless connection when the problem occurred. I then switched to a USB connection, with the same results. I then tried an Ethernet wired connection, but no change. Currently, we are on a USB wired connection.
    What version of Excel is being used?
    "Microsoft Office Excel 2007" I belief it is the home office edition.
    What operating system does the computer use?
    The computer having an issue runs Windows 7. My second computer runs XP, and has no issues.
    How was the printer driver installed?  Was it from a CD or a download?  Was it the full featured driver or basic print driver?
    The printer was installed by a CD. It is unclear to me whether or not it is basic or full, I just popped in the disc the printer came with. It installed version 24.2.0
    We recently purchased this printer in order to replace our old printer for office use. The old printer has incredibly slow, and sometimes did not print things. We first set up the new computer (HP Officejet Pro 8600 N911a), and added it to our wireless network. We then added it to our main computer, and the printer would not print from excel. However, we found we were able to print things without an issue from our second computer once it was added.
    We have tried rebooting, reinstalling, using every form of connection, without progress.

  • Printing from SAP on Linux

    I am unable to print reports from SAPGUI on linux platform. I am using Fedora 13. I am able to print documents from other applications like Openoffice Writer & all other application. But when I am trying to print reports from SAP, It's showing blank page. I am also unable to see print preview in SAP. The printer I am using is HP 1020 Laserjet.
    Can somebody help me?
    Thanks in advance,
    Srinivas

    Hi,
    Make sure that you have printer has been installed properly on your linux desktop.
    On SAP, using SPAD tcode, you can set output device using access method G : Frontend printing with control technologie. This is easiest way.
    You can also use access method S or U for better printing method. Please refer to my blog posting here (http://sapbasis.wordpress.com/2007/08/23/print-sap-documents-using-linux/)
    ardhian
    http://sapbasis.wordpress.com

  • Excel wont start after upgrading to Office 2007

    just installed office 2007 now i get this error anytiem i launch BPC for Excel - SYSTEM ERROR &H8000405 -- i click OK and it says out of memory. Anyone encounter this before?
    Edited by: sapbpc70 on Oct 27, 2009 8:27 PM

    After the upgrade of Excel to 2007 did you reinstall the SAP BPC client?
    If not I suggest to do it because actually the SAP BPC is an add ins into excel.
    So in this case after the upgrade is possible that some register dll of SAP BPC to be into a bad status regarding registration.
    Also make sure you have installed into application server  Ofiice 2007 data connectivoty cpomponents.
    http://www.microsoft.com/downloads/details.aspx?FamilyID=7554F536-8C28-4598-9B72-EF94E038C891&displaylang=en
    Regards
    Sorin Radulescu

  • Image moves when printed from SAP queue versus Adobe Reader.

    I've got a form with a image embedded into it that serves as a background watermark.
    This document is usually printed from Adobe Reader, however some users have requested the ability to print directly to a SAP printer without using Adobe Reader to print using windows drivers.
    When the form is sent to a SAP printer the image watermark is for some reason moved about 3mm to the right which causes the watermark not to align with the Text Fields that also print on the form.  The text fields do not move, they print in exactly the same spot with either print method.  Only the image seems to be affected.
    Has anyone run into this?  The image is an embeded .png file that is set to Scale Image Poportionally in the sizing options.
    Thanks for any input!

    Thank you for your replies.
    I looked at the notes you suggested and it does seem related to the extra margin added to documents printed to PCL-5.
    If I use LiveCycle to set an image field .5mm from the left edge of the page, and then print it from SAP directly and then from Adobe Reader I see two different things.
    Adobe Reader (with page scaling option turned off) will simply omit anything that falls outside the printable range. 
    SAP  will move the omitted content into the printable area.  This is what is causing my image watermark not to align properly with the text in front of it.  The image field was too close to the left margin and so in the process of printing, SAP has moved it over to fit in the printable area.
    It seems I can fix this issue for my particular requirement by creating a new image field that has the extra white space removed so that I can keep the image field farther away from the left edge of the page.
    Not sure if there is some way to change the way the drivers for device type HPLJ4 are handling these margins, but it will likely just be easier to change the images to move them further from the edge which seems to fix it.
    Edited by: Clay Robinson on Feb 15, 2011 9:59 PM

Maybe you are looking for