Logo in Print Out

Dear All
I copied Company Logo in PLD through Picture field and take print out of that document, it printed fine. But, when I print same document from different PC with another user, logo is not printing.
I tried it by pasting the logo in 'B1_Shr' folder of Server Machine and in PLD, I gave route directory of 'B1_Shr' of Server. But when I print the document, logo is still not printing from different users and PCs
Would like to know how to paste Company Logo in PLD so that Logo can be displayed by any user from any machine
Regards
Nabeel

Open Administration -> System Initialization -> General Settings ->Path Tab.
Check if the Path in 'Picture Folder' is set to
<<SAP B1 ServerName>>\B1_SHR\Bitmaps\
Verify you had put the 'Logo' in the above directory.
Now preview, this should show the Logo.

Similar Messages

  • ALV Report with Logo .. Print Out Problem

    Hello Guys..
    I am facing and differerent problem , I have created one Report in ALV contain logo of my company and some other details as per selection screen.
    At the time of taking printoput the logo is not coming in print out only report data is  coming.
    How I take logo and ALV report in one print out .
    Please do the needful.
    Regards
    Swati....

    We Can't take logo of ALV in print out.

  • OO: ALV + Header w/ logo print out

    Hi everyone!
    I have a container splitted in two: one for a Header area in wich I add a logo and some header texts, and the other split for an ALV Grid.
    The problem comes when I call the method PRINT_DOCUMENT from CL_DD_DOCUMENT. It print out only the header, but not the data in ALV Grid. Why is that? Is there any way to archieve this?
    Thanx in advance.

    Have u handled te print_top_of_page?
    * Class definition :
    *       CLASS v_lcl_event_receiver DEFINITION
    CLASS v_lcl_event_receiver DEFINITION.
      PUBLIC SECTION.
        METHODS:
        handle_print_top_of_page FOR EVENT print_top_of_page OF
                                           cl_gui_alv_grid,
        handle_top_of_page FOR EVENT top_of_page OF
                                     cl_gui_alv_grid.
    ENDCLASS.
    *       CLASS V_LCL_EVENT_RECEIVER IMPLEMENTATION
    CLASS v_lcl_event_receiver IMPLEMENTATION.
      METHOD handle_print_top_of_page.
        IF sy-pagno = 1.
            PERFORM top_of_page.
        ENDIF.
      ENDMETHOD.
      METHOD handle_top_of_page.
          PERFORM top_of_page.
      ENDMETHOD.
    ENDCLASS.
    DATA:        v_event_receiver      TYPE REF TO v_lcl_event_receiver.
    FORM top_of_page.
      WRITE: text-020,
    ENDFORM.                    " top_of_page
    In PBo of the screen
       DATA: v_split            TYPE REF TO cl_gui_easy_splitter_container,
             v_contnr_top       TYPE REF TO cl_gui_container,
             v_contnr_bot       TYPE REF TO cl_gui_container,
             v_grid_02          TYPE REF TO cl_gui_alv_grid,
             v_html             TYPE REF TO cl_dd_document,
             v_text20(255)      TYPE c,
             v_text16(255)      TYPE c,
    FORM f9000_objects_create.
      IF cl_gui_alv_grid=>offline( ) IS INITIAL.
    Create a container
        CREATE OBJECT o_dockingcontainer
          EXPORTING
            ratio                       = '95'
          EXCEPTIONS
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5
            others                      = 6.
        IF sy-subrc NE 0.
          MESSAGE i000 WITH text-e01."Error in creating Docking container
          LEAVE LIST-PROCESSING.
        ENDIF.
        CREATE OBJECT v_split
             EXPORTING
               parent            = o_dockingcontainer
    *          ORIENTATION       = 0
               sash_position     = 25
               with_border       = 0
             EXCEPTIONS
               cntl_error        = 1
               cntl_system_error = 2
               others            = 3.
        IF sy-subrc NE 0.
          MESSAGE i000 WITH text-e01."Error in creating Docking container
          LEAVE LIST-PROCESSING.
        ENDIF.
    *   Get the containers of the splitter control
        v_contnr_top = v_split->top_left_container.
        v_contnr_bot = v_split->bottom_right_container.
        CREATE OBJECT o_alvgrid
       EXPORTING
         i_parent = o_dockingcontainer.
    *   Create an instance of alv control
        CREATE OBJECT o_alvgrid
             EXPORTING i_parent = v_contnr_bot.
    *   Object for display of selection parameters in HTML top container
        CREATE OBJECT v_html
             EXPORTING
               style = 'ALV_GRID'.
    *   Must be after the SET HANDLER for TOP_OF_PAGE and foreground only
        CALL METHOD o_alvgrid->list_processing_events
                         EXPORTING i_event_name = 'TOP_OF_PAGE'
                                   i_dyndoc_id  = v_html.
        v_text20 = text-020(summary Record counts)Any text.
        CALL METHOD v_html->add_gap
                    EXPORTING
                      width         = 120.
        CALL METHOD v_html->add_text
               EXPORTING
                 text          = v_text20.
        CALL METHOD v_html->new_line.
    ** Display Text-016
        v_text16 = text-016.
        CALL METHOD v_html->add_gap
                    EXPORTING
                      width         = 1.
        CALL METHOD v_html->add_text
               EXPORTING
                 text          = v_text16.
        v_text16 = v_sap_recon.
        CALL METHOD v_html->add_gap
                    EXPORTING
                      width         = 1.
        CALL METHOD v_html->add_text
               EXPORTING
                 text          = v_text16.
        CALL METHOD v_html->new_line.
    * Display the data
        CALL METHOD v_html->display_document
          EXPORTING
             parent             = v_contnr_top.
    *   Handle the event
        CALL METHOD o_alvgrid->list_processing_events
                            EXPORTING i_event_name = 'PRINT_TOP_OF_PAGE'.
    IN PBO while populating in the output table
    FORM f9004_display_data TABLES   p_report_tab
                                     p_fieldcat.
      CALL METHOD o_alvgrid->set_table_for_first_display
        EXPORTING
           is_variant                    = w_variant
           i_save                        = c_a
           is_layout                     = w_layout
        CHANGING
           it_outtab                     = p_report_tab[]
           it_fieldcatalog               = p_fieldcat[]
        EXCEPTIONS
           invalid_parameter_combination = 1
           program_error                 = 2
           too_many_lines                = 3
           OTHERS                        = 4.
      IF sy-subrc <> 0.
        MESSAGE i000 WITH text-e06."Error in ALV report display
        LEAVE LIST-PROCESSING.
      ENDIF.
    * Create object
      IF v_event_receiver IS INITIAL.
        CREATE OBJECT v_event_receiver.
      ENDIF.
      SET HANDLER v_event_receiver->handle_print_top_of_page FOR o_alvgrid.
      SET HANDLER v_event_receiver->handle_top_of_page FOR o_alvgrid.

  • 95% of text is missing in the print out, but logos print fine

    Hello,
    I have a printing problem with my DeskJet F4184 Series All-in-One printer and I am hoping someone can help me resolve this issue.
    When I print out a page, it will print out any pictures or logos, but not the majority of the text. I thought it might be a black ink issue, so I converted the whole text into blue, and printed it again. But to no avail. Any ideas what could be going on?
    Thanks,
    Handan

    OK, have you installed any fonts lately?
    Open Mail>Preferences>Fonts & Colors, what is the message font & fixed width font sent to, try changing them & see what shows up.
    Also, I can't delete an email.
    At this point I think you should get Applejack...
    http://www.macupdate.com/info.php/id/15667/applejack
    After installing, reboot holding down CMD+s, (+s), then when the DOS like prompt shows, type in...
    applejack AUTO
    Then let it do all 6 of it's things.
    At least it'll eliminate some questions if it doesn't fix it.
    The 6 things it does are...
    Correct any Disk problems.
    Repair Permissions.
    Clear out Cache Files.
    Repair/check several plist files.
    Dump the VM files for a fresh start.
    Trash old Log files.
    First reboot will be slower, sometimes 2 or 3 restarts will be required for full benefit... my guess is files relying upon other files relying upon other files! :-)
    Disconnect the USB cable from any Uninterruptible Power Supply so the system doesn't shut down in the middle of the process.

  • Print quality poor on bitmap logos when printing from InDesign

    We have a studio of MACs. One of them prints this indesign document fine, the quality of the bitmap images looks like it does on screen.
    On all the other MACs printing to the same Printer the bitmap logos on the same document print out with really poor quality.
    Any ideas ?? This is driving me mad as have checked the printer settings and it appears they match the working MAC.
    Dont think its a driver thing as all other documents and anything other than bitmap logos print fine.

    They have said the following regarding the file type ...... They are saved as tif files but in photoshop they are converted to Bitmap under the Image>Mode>Bitmap option

  • Smartform prints out  Black boxes instead of Shade

    Hello Experts,
    I have developed some smartforms which have some boxes that are shaded with grey color for heading.
    They work fine for some existing printers. But when i issue a print out on a new printer i
    see that the shaded boxes are displayed as solid black boxes on the print out.
    I also tried to print it in color but invain. Even the LOGO also got blacked out.
    Can any one suggest me what to do.
    Is it with my smartform or printer settings. Please advice.
    Thanks
    Dany

    Hi
    I don't know if u can't find out a solution.
    All device output (printers) having the same divice type have the same behavior, i.e. printers having a different device type can give a different output, so if u'll correct the problem for a certain group of printers u could have a new problem for other group.
    I think the best soltion is to use the printer used to test the smartforms
    Max

  • Reg po print out

    Hai to all,
         company logo had been included in an script window, i am getting the same on print preview, But not getting on print out.
    please advise me where i have to concentrate to solve this issue
    ASAP
    regards
    vijay

    Hi,
    Please check ur printer settings.
    Tryin this way,
    1.Try to add different logo and see wether u are able to get.
    If his fails,then it is printer problem.
    Regards

  • LOGO is printing in REVERSE while PRINTOUT

    Hi ABAPER'S.......
    The below process is in SAPSCRIPTS.I copied MEDRUCK to ZMEDRUCK.
       I am getting a small disorder while taking the print out ...
    In <b>ME22N</b> i'm getting the LOGO in correct fashion..But the problem is that while taking the printout i'm getting every thing in correct order except the LOGO..
    The LOGO is printing in REVERSE ORDER.
    Can any one suggest me abt this .
    Every one will be awarded points who respond.Points r sure.
    Thanks in Advance.
    Regards,
    Sudheer.

    Hi
    If it is showing correctly in the print preview of ME21N and printing the logo wrongly in the printout
    then check the Printer settings
    try to heck the same printout in another printer and see
    Reward points for useful Answers
    Regards
    Anji

  • I cant print out Chinese Characters

    My ibook won't print out Chinese characters at my local 711 here in Taipei? (A Chinese speaking city, needless to say). Its not an issue of Traditional versus Simplified characters and the files are downloaded language transcripts from a learning site I belong to.
    And there is no problem printing out Japanese Kanji which are simply Chinese characters adopted into Japanese.
    Any suggestions on what is wrong here. The learning site doesn't seem to have any idea beyond saving it as a pdf file and trying again. This hasn't worked.

    Tom.
    Yes, the printer is in a 711. Totally generic - Kyocera, every 711 has the same. I connect via usb cable and yes, the documents do display correctly on screen. The application being used is Apples own, I believe, but I have tried Adobe - with no luck.
    Thanks for the Chinese-Mac mailing list.
    The following two suggestions are from the technical help forum of my language learning site:
    1.In your printer options, do you have anything that says "print truetypes as bitmaps" or something like that? That should solve it.
    2. You are talking about printing the pdf's right? If this is the case it is simply a matter of your printshop not having the necessary fontfiles installed. A possible work around is to select all the text in the PDF. Copy+Paste this into word using a widely distributed unicode font like Arial. Then try to print these .doc files at your printshop. If you copy+past the stuff, it will give you a possibility to leave out the traditional or simplified (whatever) you don't need + possibly some titles and logo's and thereby reducing the overall number of pages. Which is a good thing if you are charged by the page.

  • Can't get a color logo to print in color

    PostScript newbie here... I have two issues with a postscript image I'm trying to print.
    I have a green logo .eps file that I print to an HP color laserjet printer via a Linux server, but the logo only prints in greyscale.  I have reviewed the image code, and tweaked the code to specify color (e.g. changed the "image" command to "colorimage"), to no avail.  Can anyone assist me in getting a color printout?  Here's the main part of the code (specific image bits removed):
    %!PS-Adobe-3.0 EPSF-3.0
    %%TemplateBox:0 0 188 78
    %%BoundingBox: 0 0 235 97
    %%PageOrigin:0 0
    /width 188 def
    /height 78 def
    /pixwidth 235 def
    /pixheight 97 def
    /picstr width string def
    /dopic {
    gsave
    width height 8
    [width 0 0 height neg 0 height]
    {currentfile picstr readhexstring pop}
    image
    grestore
    } def
    pixwidth pixheight scale
    dopic
    (image bits here)
    %%Trailer
    showpage
    The second issue is that I can't get the image to embed in another page - that is, when I call the image to print in a C program, the printer spits out the logo on a separate page.  The goal here is to embed a color logo (the .eps file) into a certificate, where the rest of the certificate contents are generated by PCL commands.  I've been able to embed a PCL image (too much aliasing) and an HPGL image (plotter print dulls sharp corners), but the .eps file doesn't want to play on the same page as the certificate.  Any ideas?
    Any help is appreciated!
    - Bry

    I found a resolution for the color issue.  As I mentioned before, I am trying to print an .eps image - out of frustration, I converted the image to .ps on the off chance that the printer would read the image differently.  Sure enough, the printer liked the .ps format and printed a color image.  Go figure.
    Still can't get the logo to print in the body of the certificate, though.  I removed the showpage command from the end of the file and tried to reprint, but that just prevented the image from printing at all.  Some PostScript code investigation suggested that replacing showpage with the command show might do the trick - but no luck.
    Still digging - I'll post the solution if and when I find it.  And as always, if you have other suggestions please post them.

  • Two side printing out of Acrobat?

    does anyone happen to know how to get a two-sided print out of Acrobat X? i have a 295 page numbers help document i want to print out and i can't find this setting no matter how much i look. the Adobe forum seems to be somewhat "windows-centric" but i am going to ask there as well.
    i also tried a "two sided printing" search in the Acrobat help and no results came up.
    TIA for any help on this.

    hi gents.
    thank you.
    i do in fact have a duplex unit the HP 8600 All in One. the driver section for this printer (accessed through the Print + Scan options in Preferences) shows up as "HP OfficeJet Pro 8600" and it has both the Duplexer option checked as well as the "Additional Paper Input Tray" checked. Driver version is 3.3.3. also, note that i DO print on two sides in some of my other software (including docs printing with/from iOS7 on my iPhone).
    i guess i need to check to see if i have the correct driver (?) but can you help me with two things before we get there?
    1. when i hit File > Print in Acrobat i get what looks like a "Mac" printer interface. it doesn't actually look like either of your screenshots (thanks) - even though i /think/ i have seen these before either on the laptop or on the desktop.
    if i click on "Printer" in my dialog i then get a prompt (in this case with an adobe logo) that i have never understood: "The Print Setup dialog box is provided by the operating system. To ensure that you can use the full print capabilities of Acrobat, please set all print options from the Applications dialog box. Do you want to continue? Yes/No".
    does anyone know what this means or what i am misunderstanding in all of this? seems totally bizarre to get the mac print dialog and then get into the Printer button and then get this option especially if i am running a print pulldown option from Acrobat...
    2. i am having to /manually/ put paper tray with the proper paper size into my two tray Espon WF 7520. i want to say that i /don't/ have this problem with the HP 8600 but now that i think about it i am not sure i have ever tried the second paper tray on the 8600. HOWEVER, i /do/ see the Duplexer checkbox option in the Driver settings of the 8600 while i /don't/ see this setting in the Epson WF 7520.
    does anyone know if this is likely (also?!) a DRIVER SIDE ISSUE with respect to not getting any of my software to print to the second tray on the Epson? i mean, if i sherlock holmes this i /could/ say that if i cannot print to the second tray it is likely a old or wrong driver issue or even a implementation that they did not build into the good driver - since i cannot get to the second tray from anything on anything? or would this be incorrect...?
    THANKS

  • How can I print out the file directory?

    Years ago, I could print out a list of files in a folder from the finder window. Is there now a workaround utility to do that? I don't want to use screen shots, as the directory is too long and would require several screen shots.  thx.

    http://hints.macworld.com/article.php?story=20060720174103802
    or
    http://reviews.cnet.com/8301-13727_7-20026446-263.html

  • How can I print out the graph I need only, without the controls and indicators?

    I'm doing some programming in LABVIEW. I need to print out only the graph, without the buttons, controls, indicators. I tried to look for such a function in LABVIEW, but in vain. How can I achieve the result I expect in my programming?

    Hi Fenny,
    you should use the report generation functions to create a report containing your graph image and print it.
    Take a look at the Sample Test Report.vi you find in the report examples of LV.
    Just look at the part of the diagram where it is used Append Control Image to report.vi (in the center of the report functions chain); a graph reference is wired to the Ctrl reference input ( to create a reference of your graph right click on it and select create reference).
    Let me know if you need more help,
    Alberto

  • How can I print out the contents of my hardrive

    I have a hardrive with about 200 video clips and need to print the titles for cross refrerencing. I was just going to "grab" screenshots but this will take about ten sheets of paper. How can I print out a list of all the files on the drive?

    I tried this Finder drag method & discovered that it is very important to set the blank TextEdit document to plain text before the drag (from the format menu or with Cmd-shift-t). If you don't, TextEdit attempts to load the content of the files!
    Once I discovered this, I tried the method with Find (Cmd-F) results & it works for that, too. This means that by choosing the right combination of search location(s) & search criteria, you can extend the method to filter the list to just about any files you want, which could be very handy.
    For instance, set the "Kind" criteria to "QuickTime Movie" & location to "Computer" & you get a list of every QT movie. Or set the search location to the folder containing the movies of interest & you get all of them, including ones in subfolders. You could also use the 'date created' or other search criteria to filter the list to a specific subset of movies (or whatever).
    If you need to do this often, you could create one or more 'Smart Folders' with the criteria preloaded for each search.
    The only drawback I see for either Finder based method is the full path one. If you are getting results from just one or a few folders, Find & Replace can delete any of the path name fairly easily, but it becomes a chore if there are a lot of different ones. Some other text editor, like TexEdit Pro, that supports grep searches would be handy here, but since I'm not up to speed on grep, someone else will have to explain how to use it for this, if they want.

  • How can i print out the waveform chart?

      hello everybody,
    how can i print out the "waveform chart". can i do it just push the button. ( example; stop button is stop the program etc..)
    i checked the NI examples but i can't understand. i'm new to the Labview.
    pls help me.
    i added the my program
    look forward your reply
    regards from turkey...
    Message Edited by hknmkt on 05-29-2008 04:15 AM
    Attachments:
    29.05.2008_11.vi ‏37 KB

        hi jim,
    i tried the program but it's not running. When i run the program, it's print out without run the program
    i added the printed file.
    look forward your reply
    hakan
    Attachments:
    error8.JPG ‏8 KB

Maybe you are looking for

  • My IPod Touch won't show up at all on the computer

    Hello, I have had an Ipod Touch for 10 months now, bt suddenly for no reason my Ipod doesn't show up on the computer at all. It doesn't say it's charging, it doesn't make a noise and it doesn't show up in the computer or itunes. I have tried using di

  • Error in Class not found

    When i try to connect SQl 2000 database using JDBC, it gives an error indicating "java.lang.ClassNotFoundException: com.microsoft.jdbc.sqlserver.SQLServerDriver" I alredy set the CLASSPATH correctly & my JDBC driver also installed into my computer. P

  • NW 7.0 to 7.3 upgrade error PREP_INIT/JOB_RSUPDTEC phase

    Hi gurus, I'm running NW 7.0 to 7.0 upgrade on HP-UX 11.31 and Oracle 11.2.0.2. SUM GUI started on Windows Server 2003 machine from browser. I've got an error in PSUPDTEC.LOG during upgrade : 1 ETQ201 Entering upgrade-phase "JOB_RSUPDTEC" ("201201141

  • Stuck in PIO

    Hello, Short version: Can't seem to get out of PIO mode.  Long version: Installed a (new from Tiger Direct) Samsung HM160HC, supposed to be the fastest drive that will work in my A25-S207. I did a clean install of XP Pro and SP3. Got all the relevant

  • Airplay from computer to iPad?

    So I guess I didn't understand Airplay correctly. I thought it was going to be more of a two-way street. Can I not play video from my computer onto my iPad? I was really looking forward to this because I thought we were going to be able to stream vid