PRINT HARD COPY OF LOGO FROM ALV

I can view my logo from the top of an alv grid, but when trying to print a hard copy of the logo it does not show up on the printed piece of paper along with my headings and detail.
Is it possible to get a hard copy on paper of the "LOGO" using ALV ?
Please provide the code if this is possible.
If not, what are my options Sapscript, Smart Forms,,,OTHER????
Thanks for your advice/help in advance.

Hi,
i think logos are NOT printable.
I Use logos in ALV in these ways:
  CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
       EXPORTING
            I_LOGO             = 'ENJOYSAP_LOGO'
            IT_LIST_COMMENTARY = GT_LIST_TOP_OF_PAGE.
OR
  CALL METHOD DG_DYNDOC_ID_LOGO->ADD_PICTURE
    EXPORTING
      PICTURE_ID = 'ENJOYSAP_LOGO'.
In both cases the logo cannot be printed.
Regards, Dietere

Similar Messages

  • Printing Hard Copy of Calendar from MacBook Pro

    Is there a way I can make a printed hard copy of a moth of my Calendar always being with the same weekday? My preference happens to be Monday, however I can not find any setting that takes care of the inconsistencies I am experiencing. For example a printout of December 2014 and January 2015 both starts with Tuesdays. I run OS X Yosemite, and the "problem" seem to have started with the OS X update.
    Any help and suggestions will be very much appreciated.

    Yes, you are misinterpreting it. What the message is saying is that any synced photos that you currently have on your iPad will be replaced with those that you have selected to sync to it - photos on your Mac will not be affected.
    Synced photos can't be deleted directly on the iPad, instead they are deleted by not including them in the next photo sync.

  • Help with printing hard copy from Acrobat PDF

    Copy created in InDesign and printed to Adobe PDF is OK on screen but printing hard copy with random chunks of text missing. Same on both my printers, doesn't happen with doPDF. Any ideas? Thanks

    I suspect that what you are asking is simply to print to a new PDF with print as image selected. You can also save as an image file and then open the images as a new PDF.

  • PO should be send to vendor (PDF)as soon it is approved and print hard copy

    Hi,
    I have 2 requirements as below
    1) The PO should be send to the vendor in PDF as soon as it is released to the e mail id of the vendor maintained in the vendor master. Also a hard copy of the PO should  get printed.
    2)if the PO does not require a approval ,PO should be send to the vendor as soon as it is saved & print hard copy.
    Hi gurus can you pl tell me the stepwise config to be made.
    KN

    Hi,
    I just came across your post about Sending PO to a vendor through e-mail with PDF attachement.
    I have a similar issue on hand.
    My Program name - Z_SAPFM06P
    Routine - ENTRY_NEU
    Form - Z_MEDRUCK
    My requirement : After creation of a PO, on click of 'Save' button, an e-mail needs to be sent to a given receipient.
    As of now, I have included the code in the routine - ENTRY_NEU and I'm facing probelms with the FM - SO_NEW_DOCUMENT_ATT_SEND_API1.
    Pls let me know what exactly is the codeand where to I need to include it. Pls tell me how to go about tis issue step-by-step.
    In general you will have to do the following:
    1) Set NAST-NACHA = 8 (Special function)
    2) Before OPEN_FORM (maybe in In enhancement spot) if NAST-NACHA = 8, then set itcpo-tdgetotf = 'X' (to get OTF back from CLOSE_FORM!)
    3) During CLOSE_FORM, if NAST-NACHA = '8', get OTF output from TABLES parameter OTFDATA
    4) Convert this OTF output to PDF using following sample code:
    data: I_PDF STRUCTURE  TLINE occurs 0,
            I_OTF i_otf LIKE itcoo OCCURS 0.
        CALL FUNCTION 'CONVERT_OTF'
             EXPORTING
                  format                = 'PDF'
                  max_linewidth         = 134
             IMPORTING
                  bin_filesize          = w_bytes
             TABLES
                  otf                   = i_otf
                  lines                 = i_pdf
             EXCEPTIONS
                  err_max_linewidth     = 1
                  err_format            = 2
                  err_conv_not_possible = 3
                  OTHERS                = 4.
    5) Send email with PDF attachment using the method(s) mentioned in one of these excellent blogs:
    /people/thomas.jung3/blog/2004/09/07/sending-e-mail-from-abap--version-46d-and-lower--api-interface
    /people/thomas.jung3/blog/2004/09/08/sending-e-mail-from-abap--version-610-and-higher--bcs-interface
    pherasath

  • HT3529 how do i get a printed/hard copy of a text:sms conversation from my iphone 3g model No a1303

    How do I get a hard copy/print of a text/sms conversation

    If you have a PC: http://www.wideanglesoftware.com/touchcopy/index.php
    If you have a Mac: http://www.ecamm.com/mac/phoneview/

  • How would I transfer contact list to outlook or to file so I could print hard copy of it.

    Basically subject line says it all. I would like to export contact list from phone to outlook express and or to a file that i could print a hard copy of. Is this possible? I have a day planner program that is on my computer that I would like to add all contacts from my phone to.
    Solved!
    Go to Solution.

    If you don't have Outlook or Excel you are going to have to use ASCII to output the file to notepad when you set upSynchronization chose ASCII and chose Notepad as the place to output the file.

  • How to print hard copy of web site?

    I am getting audited by the State.  Not for cause just routine.  However they ask for a lot of things.  One is a complete web site printout.  I have never done this in Dreamweaver and my help is not finding the answer I need.  Could you help me?

    Would going on line, or just opening your local files in a browser, and then printing each page out as a PDF work? Not sure how printer-friendly your site is and you may have to play with output settings to prevent awkward page breaks, but that was the first thought that came to mind.
    If the text itself is all that matters, you might could copy the only the content--e.g., <h>, <p>, <ul>, <li>, etc., tags--(again from the browser) and paste into your word processor, not forgetting to include the page title. I'm guessing my first option would more easily satisfy this requirement, though.

  • Why is printing hard copy so obtuse?

    I want to open a short flat text file and print it but seem to be getting in over my head.
    Is it necessary to get involved with Graphics objects and "painting" just to print a six line text file?
    What am I missing?
    Happy New Year to one and all.

    Pardon me.
    I assumed anyone else could view the same page from which I did the copy/paste.
    Here's the program - with the two changes I mentioned:
    import  java.io.* ;
    import  javax.print.* ;
    import  javax.print.attribute.* ;
    public  class  Printing
      public  static  void  main(String[]  args) throws  Exception
        String  filename = "C:\\Printing.java" ;
        PrintRequestAttributeSet  pras = new  HashPrintRequestAttributeSet() ;
        DocFlavor  flavor = DocFlavor.INPUT_STREAM.TEXT_PLAIN_US_ASCII ;
        PrintService  printService[] = PrintServiceLookup.lookupPrintServices(flavor , pras) ;
        PrintService  defaultService = PrintServiceLookup.lookupDefaultPrintService() ;
        PrintService  service = ServiceUI.printDialog(null , 200 , 200 , printService , defaultService , flavor , pras) ;
        if (service != null)
          DocPrintJob  job = service.createPrintJob() ;
          FileInputStream  fis = new  FileInputStream(filename) ;
          DocAttributeSet  das = new  HashDocAttributeSet() ;
          Doc  doc = new  SimpleDoc(fis , flavor , das) ;
          job.print(doc , pras) ;
          Thread.sleep(10000) ;
        System.exit(0) ;
    }

  • SAP GUI Java 7.10 rev 5: Copy cells content from ALV does not work (OSX)

    Hi all,
    I'm trying rev 5 for OSX. ALV aesthetics is really great but: copy cells content is not possible anymore.
    Nothing happens with command+C.
    I cannot copy anymore just a part of the cell content.
    Trying all possible key combinations, something is copied with Ctrl+C. When I paste it, the pasted content is something like this:
    (0100),RID(),CID(),RIDN(0),E(true),RO(false),CTL(-1)     (0000012338),RID(),CID(),RIDN(0),E(true),RO(false),CTL(-1)     (),RID(),CID(),RIDN(0),E(true),RO(false),CTL(-1)     (),RID(),CID(),RIDN(0),E(true),RO(false),CTL(-1)     (),RID(),CID(),RIDN(0),E(true),RO(false),CTL(-1)     (),RID(),CID(),RIDN(0),E(true),RO(false),CTL(-1)
    where "0000012338" is the content I wanted to copy.
    Any suggestion?
    Thanks,
    Lorenzo

    Hello Lorenzo,
    thanks for the feedback. We are working on it and if all goes well, a solution will be provided with 7.10 rev 6.
    Best regards
    Rolf-Martin

  • How to print hard copy on client when form submit

    I am using JSP 1.2 and JSTL 1.0 .
    I have a situation where JSP sends dynamic content
    page to the client browser.
    On this page is a submit button. When the client
    clicks on submit, the content on that page gets printed
    to the default printer connected to the client' computer.
    Also the printer setup dialog should not appear when submit
    is clicked.
    Is there anyway to do it using only JSTL on JSP or Java code in servlet
    without using any scripting language like Javascript ?
    Thanks for your thoughts

    JSP cannot give you access to the local O/S commands such as the printing API. The closest you can get is to use <form name="form1" method="POST" action="mythankyoupage.jsp" onSubmit="window.print()">
    </form>Unfortunately, you can still not guarantee this behaviour, my IE6 pops up a print dialogue on this command, other user settings will behave differently.

  • Mac OS: sapgui java 7.10 rev6 copy from ALV works but paste.... doesn't!

    Dear all,
    some times ago I had problems in copying cell contents from ALV reports. java gui 7.10 rev 6 solved the issue but....
    ... I still cannot paste it in SAPGUI.
    I mean:
    - I can paste it in other OSX application (like textedit)
    - I cannot paste it in an input field of sapgui
    to copy/paste from sapgui to sapgui I have to copy from sapgui, paste it to textedit, copy from textedit and paste it into sapgui.
    No problem if I copy the value from a "normal" field. The only issue is if I copy from ALV reports.
    Any hint?
    Lorenzo
    My gui:
    SAPGUI for Java 7.10 rev 6
    (Version ID 071000040600)
    Tue Sep 2 16:17:38 MEST 2008
    uw1059, 710_REL, 1009179
    Java VM: Apple Inc. Version 1.5.0_16
    OS: Mac OS X(i386) Version 10.5.5

    Hello Lorenzo,
    this sounds like a bug we have fixed recently (assuming that I get your description correctly).
    The forthcoming SAP GUI for Java 7.10 rev 7 should solve the issue.
    Best regards
    Rolf-Martin
    Update: The version is now [available|ANN: SAP GUI for Java 7.10 rev 7 available for download;.
    Edited by: Rolf-Martin Woersinger  on Dec 12, 2008 11:26 AM

  • Text visibility only in Print Preview Mode & Should not come in Hard copy !

    Hi All,
    Is it possible to have a text which is visible only in Preview but should not come in Printed hard copy ?
    Regards
    Ajay

    Hello,
    In the FM OPEN_FORM of your print program you will be passing whether it's print preview or not in the Options parameter
    i.e.
    CALL FUNCTION 'OPEN_FORM'
      EXPORTING
        FORM       = 'Z_SAMPLE'
        OPTIONS    = itcpo
    Just have an if statement in the SAPScript to only print this when that value = 'X' (i.e. IF &itcpo-tdpreview& eq 'X').
    Regards,
    Michael

  • Printed manuals with CS4 upgrade from Adobe?

    If I order Production Premium CS4 UPGRADE from Adobe (I now have CS3 ProPre); are there printed hard-copy manuals? And if so, how many?
    Thanks.

    There are no printed manuals included with any version of the software.
    I believe there are pdf files on the DVDs which are basically a subset
    of what is available in the help files. There are installed helpfiles
    and internet based help files. The internet based helpfiles are the most
    comprehensive and up-to-date. In the past printed manuals were made
    available for a fee.
    Mike

  • Copy Paste logo in Indesign

    I am designing a business card in Indesign and want to copy my logo from AI. The versions I am using is CS3, The logo is in vector format saved under AI. When I copy it, it doesn't copy right. I am a first time user, so all basic instructions are appreciated. How do I copy my logo from AI into a smaller area in Indesign?
    Thanks for your help.

    John, You don't have to create the box first. Just do the file - place action and click the load curser wherever desired.
    -Scott

  • Logo Visible in Print Preview, but not in pdf and hard copy

    Hi,
    We have uploaded a logo to be shown in the footer. We are able to see the logo in the print preview, but when we print the invoice (SAP Script),  it is not seen in the hard copy. We tried by saving it as a pdf, even in the pdf, it is not displayed.
    We are on SAP 4.7
    Please help.
    Thanks in advance.
    Mick

    hi,
    Am not sure what the exact issue could be, but i am expecting there may not be sufficient space to fit the logo. I suggest you to check the output by placing the logo in header whether its coming or not in hardcopy, that may help you.
    regards
    harris

Maybe you are looking for

  • MacBook Pro won't get past grey startup screen

    I have a late 2011 15 inch MacBook Pro running Mavericks. Around a month ago, maybe more, it began to sometimes completely freeze or just turn off while Inwas using it. Sometimes it would start up again, sometimes it wouldn't and would beep three tim

  • How long does it take to get a warranty replacement solid state hard drive?  I have been waiting 3 weeks

    When I updated to Mavericks, I received a warning about possible issues with my MacBook.  The next day, October 24th, I brought it into the OakBrook, IL and the Genius was not aware of any notification, so he simply told me to be watchful for any pro

  • Fire wire cable for I-pod Touch

    Hi all, Just a quick question, my cat decided to rip my I-pod touch usb connection cable apart today, so I went & got a new 1 which had the connection that goes into the I-pod it-self, 1 x usb connection and 1 x firewire 400 connection (its an apple

  • Will my late 2011 model 13" macbook pro be fine if I put in a bigger mhz memory?

    I bout the wrong memory because I was just in a hurry..blah blah. anyway i need to know if I can use the 1600mhz memory instead of taking it back and having to get the 1333mhz memory. Will there be any resulting factors to the computer because of the

  • GR Cancellation, Account Assigned PO "Q"

    Hi Sapients, This is second question in a row for a very critical problem I am encountering in the current assignment. Materials Valuated by MAP, Local Currency=INR, CIN Implemented PO Created with A/c Assignment "Q" in USD --> GRN Done results in Ac