Printing Document Info

In PS CS4 Mac I used to be able to print the full doucment info that appears in the title bar, including the currently selected layer/group. This would print at the top of my document and might look like:
File Name.psd @ 100% (layer name, RGB/8)
I always thought this was a function of selecting "Label" in the Output window of the print dialogue box. However, it does not seem to be working anymore, and now it simply prints the file name, like this:
File Name.psd
How can I turn this feature back on so that I get the entire document window? I am printing individual layers from a single document and having them automatically "labeled" is helpful.
Thanks!
James
Mac OS 10.6.8
PS CS4

Hi Johan,
the error occurs on the line where I try to print the report:
cryRpt.PrintToPrinter(1, false, 0, 0); 
The connection should be handled within the Crystal objects if I'm correct.
Sebastiaan

Similar Messages

  • Print document type Q02( technical delivery terms)  with Purchase Order

    Hi all
    1) I have activated the QM procurement for a certain material and I have assigned the control key that makes mandatory the technical delivery terms on the material master (standard control key 0002).
    2) I have created a Document Info Record Q02 to hold the Technical Delivery Terms assigning a PDF file. Document is released.
    3) I have assigned the DIR to the material master (object link in the DIR).
    I would like to know how to print the this DIR with Purchase Order. I am testing this scenario in IDES system and the form does not get printed.
    Could anyone please advice how to get the PDF file printed with the purchase order?
    Thank you

    Hi Sappmqm,
    There is no internal way, you would have to create an ABAP program to handle this function, where it would search the material record to pull the DIRs linked and then open them on user's screen for printing.
    Additional SAP add-ons are available as 3rd party apps, can click my name and contact me for more detail if you like.
    Good luck.

  • Problem printing when spool print documents is selected as apposed to print direct

    I have an officejet 6500 and I'm having a problem printing a label created using Label Factory Deluxe software.  The job will not print if spool print documents so that printing finishes faster is selected under the printer properties.  The job appears to be sent to the printer.  The printer icon appears in the task tray for less than a second and the printer makes a trill sounding beep but nothing prints.  In addition there is nothing in the print que.  It will print however, if print directly to the printer is selected.  Any ideas???

    Hello,
    Well with out any info on versions the easiest way is to check the Not Printer Option on in the Page Setup of the Report.
    Don

  • FI-CA document type when a print document is created

    Hello everybody,
    We have been searching events (e.g. 0061)/user-exit to change the FI-CA document type when a print document (based on our own logic) is created with transaction EASIBI without success. Maybe you have enhanced something in another project. Can you share you experiences?
    Thanks in advance.
    Fernando.

    We have enhanced event R999.

  • Major problem saving and printing documents on two computers

    This is a bizarre problem that seems to have been transferred from my old MDD to my new Mini when I migrated all my old data and it has me baffled. My apologies if this explanation seems long and complicated but I want to be pretty thorough.
    About a month ago I started experiencing a problem with printing. I noticed when printing a sheet of business cards that the page was getting compressed, for lack of a better word, vertically. This was very noticeable because the trim marks on the side of the page were not lining up with the perforations and each row of cards was getting progressively closer to the top as each row was printed. In other words, the first row of cards was okay but then the next row was a little too far "north", the next row a little more, the next row a little more, etc. The bottom of the page was not cut off, it was just squeezed up a bit but not enough that you could tell that the proportions were off. Now I see that many of my documents are like that no matter what application I've use to create them – Pages, Illustrator, Avery DesignPro. What's even worse, I've used Pages to create a sheet of business cards for a friend and Illustrator to make packaging labels and she's having the same problem printing the PDFs of the labels on a different computer. What this seems to tell me is that something has been corrupted and the computer is saving messed up files.
    So, about ten days ago I got a Mini and migrated my data using Migration Assistant. And the problem has now been transferred to the Mini. So I now have two Macs connected to two different HP printers that are both incapable of printing (and apparently saving) documents in the proper proportions.
    Now, a truly weird thing is that I printed a test sheet of business cards from the Mini on the printer connected to the MDD (via printer sharing) and it appeared that the document printed at the correct length. However, another document, a sheet of labels created in Illustrator, printed at the right length but one edge was slightly cropped off. Grrr.
    Anyway, as I said, until about a month ago everything worked fine so something got messed up at that time to cause this problem with saving and printing documents. I need to get this resolved for business reasons – I'm an aspiring designer – but the only thing I can think of doing is wiping out my Mini and reloading everything except my account settings from Time Machine unless someone has advice on what to do. Help! (And yes, I've checked to see that page scaling was always set at 100%.)

    Well, I've just about had it. I erased the disk, reinstalled the OS, Adobe CS4, and iWork. I did not use Migration Assistant this time to restore my settings but still my Mac prints documents in the wrong dimensions. Could this be a sudden HP problem? It seems to me some system setting somewhere is making my computer save and print documents in the wrong size. I now have a computer that is almost useless for designing. Lucky me.

  • Problem Printing Documents - No Doc Flavors Supported

    Hello everybody. I've been trying to implement a print feature in my applications and I've had absolutely zero luck. Basically, I'm trying to print the contents of an html file. However, there are no PrintServices that show up on my machine that support DocFlavors text/html, or even text/plain.
    I searched all over the Internet, but the only tutorials I found involved printing GUI components. I tried putting everything in a JEditorPane and then printing it, but the table is so large horizontally, it runs off the side, so I don't think that route will work.
    I checked IRC, scanned through all of Sun's tutorials and print service API documentation, and even searched around for open source Java word processors so I could check how their print features are implemented, but I can't find anything to help me figure this out. I know there has to be a way, though... or stuff like EIOffice and ThinkFree.com wouldn't be able to work. Can somebody please point me in the right direction?
    Here's the current code I have:
              //display print dialog
              DocFlavor df=new DocFlavor("text/html; charset="+DocFlavor.hostEncoding,"java.io.InputStream");
              PrintRequestAttributeSet attributes=new HashPrintRequestAttributeSet();
              attributes.add(new javax.print.attribute.standard.JobName("NutraSmart Menu",null));
              PrintService[] services=PrintServiceLookup.lookupPrintServices(df,attributes);
              PrintService service=null;
              if(services.length>0)
                   service=ServiceUI.printDialog(this.getGraphicsConfiguration(), this.getX()+50, this.getY()+50, services, services[0], null, attributes);
              else
                   JOptionPane.showMessageDialog(getContentPane(),"No print services could be found to print this menu.","Error printing menu",JOptionPane.ERROR_MESSAGE);
                   nutrasmart.debug(nutrasmart.ERROR,"Could not find any services to print menu");
              //print menu
              if(service!=null)
                   try
                        //create temporary HTML file to print from
                        File tmpfile=File.createTempFile("nsmenu",".html");
                        tmpfile.deleteOnExit();
                        String tmpfilestr=tmpfile.getPath();
                        export_HTML(tmpfilestr);
                        FileInputStream tmpfilestream;
                        try
                             tmpfilestream=new FileInputStream(tmpfilestr);
                        catch(FileNotFoundException e)
                             JOptionPane.showMessageDialog(getContentPane(),"A problem was encountered while preparing the menu to print.","Error printing menu",JOptionPane.ERROR_MESSAGE);
                             return;
                        //print document
                        DocPrintJob pj=service.createPrintJob();
                        Doc doc=new SimpleDoc(tmpfilestream,df,new HashDocAttributeSet());
                        pj.print(doc,attributes);
                   catch(Exception e)
                        JOptionPane.showMessageDialog(getContentPane(),"There was a problem with printing the menu.","Error printing menu",JOptionPane.ERROR_MESSAGE);
                        nutrasmart.debug(nutrasmart.ERROR,"Error printing file",e.getMessage());
              }

    Really we have a crazy font management.
    We have more than 9000 fonts in the /Library/Fonts
    To avoid conficts between the the installed system fonts and the Document font folder, we don't use the document font folder, so that we use always the /Library/Fonts/ fonts installed. Anyway some time ago we also used the Document Font folder and we got the same problem.
    I think that your idea about closing the document before the printing process has been finished is very interesting. What I do is :
    doc.print(print_preset);
    doc.close();
    But I don't how can I test if the document is being closed before finishing the printing process.
    Regards

  • Excise Invoice Tab Page/ Document Info  Tab Page is not appearing in MIGO

    Dear Friend
    For a particular job work PO , with account assignment category F & item category L, non valuaated material, when we are doing migo, excise invoice tab page/ Document Info tab page is not appearing in document header. From The said tab page we can select the challan.
    In J1ID, I have maintained Vendor PAN number and also material chpter id combination.
    Thanks
    Chandra

    Hi
    I maintained material chapter Id combination & vendor Excise Details. We do not maintain any plant -vendor combination. This is a non valuated material with material type unbw. Do I need to maintain cenvat determination tab for this material?
    Thanks
    Chandra

  • How do I get my Kodak ESP 3.2s printer to print documents from my iPad ?

    I have an iPad
    I have a Kodak ESP 3.2s all in one printer
    I have set it up to print via my home wi fi using my normal laptop with Microsoft
    However I couldn't  work out how to print from my iPad as its not configured for Apple!
    I downloaded Kodak Pic flick HD app
    This means I can now print photos from my iPad!  Great
    But still can't print documents it seems     I get a message saying No AirPrint Printers Found
    Any advice very welcome
    Thank you
    iknow0

    Airprint is a technology created by Apple Inc. and introduced in iOS 4.0 that allowed iPads, iPhones, and iPod Touches to print directly to Airprint compatible printers. Unlike computer printing where the drivers, fonts, etc. are stored on the computer and sent to the printer with the document with Airprint fonts, drivers, etc. are stored on the printer and need not be sent with the document.
    The solution to your problem is 3rd party software which both Jim and I suggested to you.

  • How to print Photo Info in the Custom Print Package

    I am  using LR CC, latest version on a Windows7 PC.
    I am trying to print Photo Info in the Custom Print package. I have no trouble selecting Photo Info in the Single Image/Contact Sheet Layout Style, but when I switch to the Custom Print Package, the Photo Info check box in the Page panel, disappears. I can't find any reference to this in the manual as to why this would occur, or not be available.
    Appreciate any help with this matter.
    Best Regards
    Steve

    Hi,
    Have a look at: Lightroom Help | Print module layouts and templates
    Only on the Single Image and Contact Sheet layouts can you " ... print information about photos, such as the filename, title, caption, and keywords ..."

  • How can i use only black cartridge for printing documents

    i have today installed hp 1510 all in one printer, it uses ink from the both cartridges i just want to use black ink for printing documents, how can i do that
    This question was solved.
    View Solution.

    Hi @sandeepv 
    I can help you with your print settings, so the printer will print black and white only.
    If you have a Mac operating system, use the instructions below.
    Printing with the Black Print Cartridge Only option
    Click File and then click Print.
    Make sure your printer is selected.
    Verify that the Preset option is set to Standard.
    In the Copies & Pages menu, select Select Paper Type / Quality.
    NOTE:If this option is not available, click ColorSync. Then click the down arrow beside Quartz Filter and change the setting from None to Black & White.
    Select the Paper tab.
    From the Color option menu, select Grayscale.
    Select the Color Options tab.
    Select the Black Print Cartridge Only option.
    If that option is not listed, then it is not available. The printer will print using only the black cartridge, however, printing with one cartridge will be slower than printing with both cartridges.
    NOTE:To save the setting, click the arrow next to Preset and select Save As. Save the Preset option as Black Cartridge Only and then click OK. Then, the next time you want to print with just the black cartridge, select the Black Cartridge Only Preset.    -Source
    If you are using a Windows operating system, use the instructions in the following link. Although this document is titled Changing Print Settings in Windows 8 it can be used for other Windows operating systems. The navigation from Windows 8 to older Windows operating systems would vary, please let me know if you are using a different operating system and/or if you require additional assistance.
    I hope this helps.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • I have an 10x14" InDesign image that I'd like to shrink to fit within a 8.5x11 printed document.

    I have an 10"x14" InDesign image that I'd like to shrink to fit within a 8.5"x11" printed document (using InDesign) without losing the quality of the image (especially on print). What is the correct/least destructive process to do this?
    And how is it that you can view different image sizes on Flickr (of the same image) and it doesn't seem to effect the quality of the image?
    I have tried saving/exporting the InDesign image as an EPS file, then opening the file in Photoshop, adjusting the size to my liking, saving it as a Photoshop file, then placing that file in a new InDesign document, and the image comes up distorted looking/pixelated even with my screen zoomed at 100%. I've also tried this same process with exporting it as a PDF file instead of an EPS file with the same distorted/pixelated results.
    Help!?!?!  Thank you in advance!!
    Linds10m

    I am assuming you are in InDesign CS5:
    Change your InDesign Document Size, but before you do this you must make sure the "Enable Layout Adustment" is on.
    Under: Layout/Layout Adjustment/Check the "Enable Layout Adjustment" box is checked and adjust Snap Zone.
    ALSO: Make sure your horizontal and vertical margins touches your live area.
    Then you can change size of document

  • Is it possible to print the info. from the help window. (ex. how to create a smart list)

    is it possible to print the info. for the help window. (ex. how to create a smartlist... i tunes)

    Yes, click the gear icon and select print.

  • Document Info Record

    Hi All,
    A PDF file is attached to SAP Document Info Record. While opening that PDF file through CV03N getting a messege like -
    "Error while executing C:\DOCUME~1\.................."
    What can be the reason for this & how it can be soleved?
    Regards
    MHP

    Hi Manish,
    You need to define application type in DC30.
    Kindly put suffix as .pdf and mime type as "application/pdf". This will activate the application pdf in the sap dms.
    if you found problem with other files do same and fill mime types properly. Aslo tick the start authorization field in same screeen.
    I hope this will resolve the query.
    Regards,
    Ravindra

  • My HP officejet 6210 no longer prints documents from my Mac ibook G4 running 10.4.11; starts to process the document, but then stops the print,if I restart print same thing happens

    My ibookG4, running 10.4.11 suddenly decided it no longer wants to print documents thru my HP officejet 6210 all-in-one printer.  So far I've tried emails, excel and word all with the same result.  The computer will start to process the print request (processing seems to take longer than previously) and then suddenly the processing stops and a red exclamation mark appears next to the printer image at the bottom of screen.  When I pull up the printer utility it tells me the printer is "stopped".  If I restart it, the process begins all over again until once again it stops.  I have already deleted the printer completely from my computer and reinstalled the software fom the HP site.  For some reason had a really tough time finding the correct print drivers on the HP site, but did finally locate them.  I have not even attempted scanning during this (I see lots of people reported issues with that for the 6210), I would be happy if I could at least print again.  I am connecting via USB.  Is there some way to fix this?

    Hi Evelyn,
    Mac OS X: About the Reset Printing System feature ...
    http://support.apple.com/kb/HT1341?viewlocale=en_US

  • How to get the "Document Info" in illustrator

    In illustrator using "Document Info" we can get the file information. Like that how to get the document information using script. Anyone please help me.
    Regards,
    Prabudass

    I think sample code in the SDK contains a 'skeleton' plugin, I'd start with that. It should also provide a list of suites that get automatically loaded, I think it's in Suites.h. Just make sure AIDocumentSuite is in the list, and if it's not, just follow the examples in that file to add it. That should end up with a global variable called 'sDocument', which has all the suite functions as methods.
    Then it's something like:
    AIDocumentSetup setup;
    AIErr error = sDocument->GetDocumentSetup(&setup);
    // check error to make sure it's kNoErr
    Then you just have to inspect the setup struct for (hopefully) the answers you're looking for.

Maybe you are looking for