How to put Company logo in the report?

Hi,
How am i going to include the company logo or a image file into my report?
What is the best tools?
I have try to use the "Link File" tool and it required me to specify the "Source Filename". So if I put the file path and filename in the "Source Filename", it's hardcoded...
How to specify the "Source Filename" at run time or any otherway so that it won't hardcoded?
Regards,
Cheong

Note that you can also use the read from file functionality.
If you have a character based column, then any layout field based on this column will have the Read From File property. If this is set to Yes, then reports will attempt to use the value of the column to read a file from the file system. You can also specify the type of the file (image, text, or even an image URL to read an image from over the web).
For example, if you have a column in the data model that returns a value ("c:\temp\mypicture.bmp"), and you set the Read From File property to Yes, and the File Format to be Image then at runtime, reports would look for c:\temp\myimage.bmp and return the value. And of course, since you can create a formula column in the data model then you can control the returned value as much as you like.
Hope this helps,
Danny

Similar Messages

  • How to add company logo in z report

    Hi !
    i want to know how to add company logo into custom report ...
    generally we used below mentioned code for sap logo
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    IT_LIST_COMMENTARY       = IT_LIST[]
       I_LOGO                   = 'ENJOYSAP_LOGO'.
    ENDFORM.            "top_of_page"
    what changes we need to do to add company logo into custom report
    Please guide
    Regards
    Sheetal

    First upload  ur  required logo in  SAp  by  t-code  SE78.
    Use teh  above mentioned  ALV code  for the same.
    Try  to  search  on SDN for  the  u can find the  full  ALV code for the same.
    ..lakhan

  • How to put Company Logo in a SAP R/3 Login Screen

    Hi,
    1)How can we put our own text in the login screen?
    2) how do we put the company logo in the post login R/3 screen?
    Regards,
    Shobhit

    Hi,
    U can insert logo in both the cases.
    Check this
    http://www.sap-img.com/abap/alv-logo.htm
    * Build report title
      PERFORM build_report_title USING gd_report_title gd_logo.
      DATA:  gd_logo             TYPE sdydo_value,
    *&      Form  BUILD_REPORT_TITLE
    *       Build table for ALVtree header
    *  <->  p1        Header details
    *  <->  p2        Logo value
    FORM build_report_title CHANGING
          pt_report_title  TYPE slis_t_listheader
          pa_logo             TYPE sdydo_value.
      DATA: ls_line TYPE slis_listheader,
            ld_date(10) TYPE c.
    * List Heading Line(TYPE H)
      CLEAR ls_line.
      ls_line-typ  = 'H'.
    * ls_line-key     "Not Used For This Type(H)
      ls_line-info = 'User Message Service'.
      APPEND ls_line TO pt_report_title.
    * Users name (Status Line- TYPE S)
      ls_line-typ  = 'S'.
      ls_line-key  = 'Name '.
      ls_line-info = gd_myname.
      APPEND ls_line TO pt_report_title.
    * Status Line(TYPE S)
      ld_date(2) = sy-datum+6(2).
      ld_date+2(1) = '/'.
      ld_date+3(2) = sy-datum+4(2).
      ld_date+5(1) = '/'.
      ld_date+6(4) = sy-datum(4).
      ls_line-typ  = 'S'.
      ls_line-key  = 'Date'.
      ls_line-info = ld_date.
      APPEND ls_line TO pt_report_title.
    ** Action Line(TYPE A)
    *  CLEAR ls_line.
    *  ls_line-typ  = 'A'.
    *  CONCATENATE 'Report: ' sy-repid INTO ls_line-info  SEPARATED BY space
    *  APPEND ls_line TO pt_report_title.
    ENDFORM.                    "build_report_title
      CALL METHOD gd_userlist->set_table_for_first_display
         EXPORTING
                   is_hierarchy_header  = gd_hierarchy_header
                   it_list_commentary   = gd_report_title
    <b>              i_logo               = gd_logo</b>
    *               i_background_id      = 'ALV_BACKGROUND'
                   i_save               = 'A'
                   is_variant            = gd_variant
         CHANGING
                   it_outtab            =  it_emptytab      "Must be empty
                   it_fieldcatalog      =  gd_fieldcat.

  • How to print company logo in Excel/ PDF after Enhancement Pack 1?

    Hi all,
    I realise this topic has come up time and time again but apparently this functionality has changed after Enhancement Pack 1 for BW....?
    My problem is simple.  I have a series of reports on our portal, formatted using the WAD, and there is a company logo on the reports.  When exporting to PDF or excel, the logo disappears.
    The SAP documentation states that the addition of the logo when exporting was not available previously, but it was planned, and seemed to imply that this would be possible in EHP1.
    We have just applied EHP1 to our test system however I cannot find how to switch on this functionality or how to get the logo onto the exported reports.  I can't find any documentation on how to do this.
    Is anyone else using this after applying EHP1?  Is anyone from SAP reading who can tell me where this functionality is??
    Thanks!
    Mischa

    Thanks but this doesn't work.  It works exactly as it did before the Enhancement Pack and doesn't automatically display the image.
    So I guess I am missing something - my image is a bmp. file, will this work or should I save it as something else?
    Are there any settings in the WAD (either in the Web Template itself or on the button to export) which I need to change to be able to display this logo?
    Or are there any settings I need to make in the backend of BW after the application of the Enhancement Pack?
    Any more ideas please?
    Thanks
    Mischa

  • How to set default company logo in bex report(analyzer)?

    hi,
    i have a requirement that i need to create default template for my queries in bex analyzer. whenever i execute my query in analyzer the company logo should be on top of the query. i know how to do it in workbook but could you explain me how to set the default company logo in bex reports?
    thanks
    vadlamudi

    See the following document on creating a workbook template with an image: [http://www.researchsummary.ca/bw/Sample_Ch10.pdf]
    In BW, there is a table that stores the default workbook. The following snippet of code allows you to identify a custom workbook template as the default template for all end users.
    *& Report Z_SET_BEX_USER_TEMPLATE *
    *& Program to update all user's default template *
    REPORT Z_SET_BEX_USER_TEMPLATE.
    TABLES: rsrwbtemplate,
            usr01.
    PARAMETER: wbid LIKE rsrwbindex-workbookid.
    SELECT
    FROM
      usr01.
      MOVE: usr01-bname TO rsrwbtemplate-templateuser,
            wbid TO rsrwbtemplate-workbookid = wbid.
      UPDATE
        rsrwbtemplate.
      IF sy-subrc 0.
        INSERT
          rsrwbtemplate.
      ENDIF.
    ENDSELECT.

  • Need to print the company logo in alv report

    Hi All ,
           I am displaying an alv grid for some QM report .
           I have used top-of-page event and   'REUSE_ALV_COMMENTARY_WRITE '    FM to display the logo and header . Every thing is working fine .
      But when I am taking the print-out  the logo is not getting printed . Except logo everything is coming in the print out.
    So please help me if you have any idea ragarding how to print the logo in the report.
    regards
    Satish

    print the logo is really simple, check this little sample:
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          i_logo             = 'Z_LOGO'
          it_list_commentary = gt_list_top_of_page.
    and how to upload the logo in this link:
    uploading logo
    regards
    Edited by: Sebastian Bustamante on Sep 24, 2008 3:26 PM

  • How can I put a Logo in the Browser-Register?

    Hey guys, does anybody knows, how I can put a Logo in the Browser Register? For example, watch this picture below; I want a Logo like the Facebook Logo, but I don't know how I can make this. The blue mark is my Website.
    Is this possible with Adobe Muse?
    Thank you.

    Hope this helps
    David

  • How do apply my company logo to the signature of my iPhone?

    How do apply my company logo to the signature of my iPhone?

    Unfortunately you don't, as the iOS signature settings are limited and downright crappy.  You can't even use a color other than black.
    There's a few signature apps in the App Store that might suit your needs though.

  • How to upload the Company logo in the Enterprise Portal

    Hi,
    I want to upload the company logo in the ESS (EP 7.0). Can anybody tell me the procedure for uploading the logo please.
    Thanks & Regards
    Aman

    Hi Chris Solomon ,
    Thanks for your reply,I want company logo on the right hand side of the screen example .
    Working Time
    Record Working Time                                                       logo                                                       
    Release Working Time Data                                            
    Leave Request
    Request leave and other types of absences.                      
    Quota Overview
    Request leave and other types of absences.
    When user click on the Working time tab, Working time page will open and it will show all the links(see above) so I want company logo on the right hand side on the working time page .

  • How do I put a logo in the signatures without it being HUGE

    I have been trying to put my logo in the signature of the mail preferences.  It comes out appearing huge.  Any suggestions?

    That's because the actual size of the picture is big. Use a photo editing program to scale it down. You could even do this in Preview by selecting "Tools" and then "Adjust size"

  • APEX:How to put dynamic buttons in a Report.

    Hello all,
    I am creating one application in which i want two buttons in every record. I can't put it manually because it should change according to records in a table So Can anyone tell me how to put dynamic buttons in a report.
    Thanks & Regards,
    Jiten Pansara

    Hi Jiten,
    you cannot create buttons in the report, but you can always create link columns with some css class to show it as button.
    So in the both link column report attributes you will have class="button1" and class="button2"
    And in dynamic actions you need to bind the events based on your link column's jquery selector like:
    .button1
    .button2Thanks

  • I want to print the LOGO on the report output

    Hi ,
    i want to print the LOGO on the report output. How can tyhis possible ?

    using "SMWO" to upload LOGO image.
    add a customer "customer control" named P1 using "SE51"
    the following program for your reference:
    =============================================
    REPORT  ytest17.
    DATA ok_code TYPE sy-ucomm,
              save_code TYPE sy-ucomm.
    DATA  container TYPE REF TO cl_gui_custom_container.
    DATA  picture TYPE REF TO cl_gui_picture.
    DATA  init.
    CALL SCREEN 100.
    MODULE user_command_0100 INPUT
    MODULE user_command_0100 INPUT.
      save_code = ok_code.
      CLEAR ok_code.
      CASE save_code.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
      ENDCASE.
    ENDMODULE.                    "user_command_0100 INPUT
    MODULE status_0100 OUTPUT
    MODULE status_0100 OUTPUT.
      IF init IS INITIAL.
        DATA url(255).
        CLEAR url.
        CREATE OBJECT container
        EXPORTING container_name = 'P1'.
        CREATE OBJECT picture
        EXPORTING parent = container
        EXCEPTIONS error = 1.
        IF sy-subrc NE 0.
        ENDIF.
        PERFORM load_pic_db CHANGING url.
        CALL METHOD picture->load_picture_from_url
          EXPORTING
            url = url.
        IF sy-subrc NE 0.
        ENDIF .
        init = 'X'.
      ENDIF.
    ENDMODULE.                    "status_0100 OUTPUT
    *&      Form
          text
    FORM load_pic_db changing p_url.
      data query_table like w3query occurs 1 with header line.
      data html_table like w3html occurs 1.
      data return_code like w3param-ret_code.
      data connect_type like w3param-cont_type.
      data connect_length like w3param-cont_len.
      data pic_data like w3mime occurs 0.
      data pic_size type i.
      refresh query_table.
      query_table-name = '_object_id'.
      query_table-value = 'TESTPIC'.
      append query_table.
    CALL FUNCTION 'WWW_GET_MIME_OBJECT'
      TABLES
        query_string              =  query_table
        html                      =  html_table
        mime                      =  pic_data
      changing
        return_code               =  return_code
        content_type              =  connect_type
        content_length            =  connect_length
    EXCEPTIONS
       OBJECT_NOT_FOUND          = 1
       PARAMETER_NOT_FOUND       = 2
       OTHERS                    = 3
    IF sy-subrc <> 0.
    pic_size  = connect_length.
    ENDIF.
    CALL FUNCTION 'DP_CREATE_URL'
      EXPORTING
        type                       = 'image'
        subtype                    =  cndp_sap_tab_unknown
        SIZE                       =  pic_size
      DATE                       =
      TIME                       =
      DESCRIPTION                =
        LIFETIME                   = cndp_lifetime_transaction
      CACHEABLE                  =
      SEND_DATA_AS_STRING        =
      FIELDS_FROM_APP            =
      tables
        data                       = pic_Data
      FIELDS                     =
      PROPERTIES                 =
      COLUMNS_TO_STRETCH         =
      changing
        url                        = url
    EXCEPTIONS
       DP_INVALID_PARAMETER       = 1
       DP_ERROR_PUT_TABLE         = 2
       DP_ERROR_GENERAL           = 3
       OTHERS                     = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    endform.
    *&      Module  CANCEL  INPUT
          text
    module CANCEL input.
    LEAVE PROGRAM.
    endmodule.                 " CANCEL  INPUT
    =============================================

  • Shifting the Company Logo to the right hand side?

    Hi Guys,
    There is a requirement to put the Logo of the Company in the header on the Right Hand Side of the Self Service Page. The customer has already modified all the buttons.links etc.The last requirement was to shift the Company Logo to the right hand side.
    Also there is a requirement to put the company on the Login Page.
    Please suggest a suitable way to achieve this.
    thanks a lot in advance.
    regards,
    Hem

    Hi Hem,
    There is no standard functionality to move the company logo to right hand side.
    But you can do a workaround,
    Take a backup of your $COMMON_TOP/html/OA.jsp
    add the following code
    <img src="YourCompanyLogo.bmp" width="100%" height="100">
    Under
    <%@ page
    language = "java"
    contentType = "text/html"
    errorPage = "OAErrorPage.jsp"
    import = "oracle.apps.fnd.framework.webui.OAJSPHelper"
    import = "oracle.apps.fnd.framework.webui.OAPageBean"
    import = "oracle.apps.fnd.framework.webui.OAGenericDispatcher"
    import = "oracle.cabo.ui.jsps.GenericEntry"
    %>
    YourCompanyLogo.bmp, should be in $COMMON_TOP/html,
    But you can keep in $OA_MEDIA also, but you give the corresponding path.
    goto your $COMMON_TOP/_pages/_oa__html/
    remove the cache for OA.jsp, using
    rm OA.
    YourCompanyLogo.bmp should be an image which will have your company log in the right hand side.
    And you can place a empty image for the standard image.
    For changing the standard image, check this URL..
    http://www.oracle.com/technology/tech/blaf/specs/branding.html
    If you face any issues to do this please let me know.
    Then bounce the apache.
    Then check.
    Thanks.
    With Regards,
    Kali.
    OSSI.

  • Placing a Company Logo to the bottom of the screen???

    Hi there,
    I am doing a little editing job for a friend and they want me to put there company logo to the bottom of the screen. I am new to Final cut pro can anyone point me in the right direction.
    Many Thanks.

    .ai or .eps format
    Neither of those formats are compatible with Final Cut Pro.
    " You can import any files that are recognized by QuickTime, including:
    Video files: QuickTime Movie, AVI, and Macromedia Flash (video only—you won’t be able to play any audio portions). For details about these formats, see Volume IV, Chapter 17, “Learning About QuickTime.”
    Audio files: AIFF/AIFC, Audio CD Data (.cdda), Sound Designer II, System 7 Sound, uLaw (AU), WAVE, and MPEG-4. For details about these formats, see “About Importing Audio Files” on page 313.
    *Graphics and still images: BMP, FlashPix, GIF, JPEG/JFIF, MacPaint (PNTG), Photoshop (layered), PICS, PICT, PNG, QuickTime Image File, SGI, TARGA (TGA), and TIFF. For more information, see Volume III, Chapter 17, “Working With Still Images and Photographs.”*
    +Source: Final Cut Pro User Manual+

  • How to place a  logo in the BEX

    Hello All,
    I am new to the BW.Could u pl.explain how to place a logo
    in the BEX.
    Thanks & regards
    NSB

    Hi Suresh,
    Are you asking about BEx Excel based reports, or the web reports..there are different ways to go about it.
    For the excel reports youc an create a workbook template and place the logo along with other custom settings for color, font etc.
    For the web based reports you would have to place the logo in your web template.
    Hope this helps...post back if you need more information.

Maybe you are looking for

  • Cannot upgrade to iTunes 10.4 in Lion

    The hard drive on my Mac Mini (late 2009) failed at the start of July. This has been replaced under Applecare and a new OSX Snow leopard installed at the same time. I used Time Machine to restore my files and system and everything seemed to be ok. I

  • How can I copy a DVD to MacBook Air

    How can I copy a DVD from my iMac to my MacBook Air?

  • I WANT TO CODE DEMO FOR THSESE REQUIREMENT

    Pending Purchase Order Requirement Specification:   Fields on selection screen (input screen) : Vendor Code From to , Period From to , Material Code from to. Field in the output List : P.O. No, PO Date , Vendor Name , Vendor code, Material Code , Mat

  • InitialContext from server-side applications

    Just a question to see if what I am doing is correct. According to this link: http://www.weblogic.com/docs51/classdocs/API_ejb/EJB_design.html#1031811 if you are an internal client of an ejb you should use Context ctx = new InitialContext(); instead

  • Accordion panel spry not working...

    Can someone please look at this site and see what I am doing wrong? My accordion is not working on the "heaven" page, but does work on the "about" page. ??? This link is the problem page. This link, with the same accordion (on the same site) works fi