How can we change a Header logo

Hi All,
        Please let me kow how to change a header Logo it UI?
I already tryed to chage the LOGO in the Skin using the BSP application Thtmlb_sytles, I want to know is there any other way, so that i can change the header Logo so that all the users who access the Business role should see the same LOGO.
Thanks in Advance

Hi Ravi,
As far as my knowledge is concerned, when you change a log,
Step 1: Open the BSP application THTMLB_STYLES in the ABAP workbench SE80. Open the folders MIMES->sap_skins->styling->Ishape in the same order.
Step 2: You will find an image 'logo.png' in the folder Ishape. Open the context menu (using right-click mouse button) and select 'Update and Replace'. Select your company GIF or JPG image file from your local folder in your PC.
Note: Your new company logo image file name need not be 'logo.png'.
It would change for all the business roles.
Unless each Individual user has not selected differen Skin in the personalization.
You can also disable the other skins using an option to hide/de-activate the unwanted skins in table - CRMC_THTMLB_SKNE. Following is the process:
Goto SM30 -> Table = CRMC_THTMLB_SKNE -> click on maintain -> click on change mode -> select the skin you want to hide or de-activate -> save
So that all the users and business roles will see the same logo.
Best Regards,
Shiven

Similar Messages

  • How can i change the IE logo

    Hi,
    How can i change the IE logo.
    I want to dispaly my logo on left top of the browser and on left side of the status bar.
    How can i do this?
    help me pls.

    Use Firefox. Hey presto, Firefox logo!
    HTH :o)

  • How can i change column header value dynamically in IR report

    HI,
    I have created report with the help of collections. Report query has been changing dynamically but i got problem with report header names and headers names has not been changing dynamically it is always showing like c001,c002....etc so, i have created global item(G_ITEM) in shared components--->Applications items after that
    I have created process(before headers) and assigning some value to G_ITEM and used &G_ITEM to column headres in IR Report but here &G_ITEM is not showing any value.
    How can i achieve dynamic headers names by using *&G_ITEM(global items)* Please guide me to achieve this.
    Thanks in advance.
    Regards
    Narender B

    Narender wrote:
    HI,
    I have created report with the help of collections. Report query has been changing dynamically but i got problem with report header names and headers names has not been changing dynamically it is always showing like c001,c002....etc so, i have created global item(G_ITEM) in shared components--->Applications items after thatWhy didn't you answer the questions in the other thread to see if there was a better approach than this?
    I have created process(before headers) and assigning some value to G_ITEM and used &G_ITEM to column headres in IR Report but here &G_ITEM is not showing any value.
    How can i achieve dynamic headers names by using *&G_ITEM(global items)* Please guide me to achieve this.The static text exact substitution method of referencing the value of an APEX item requires a terminating dot ("."):
    &G_ITEM.

  • Hi! How can I change the header text direction to vertical?

    I have many columns with big names, but I need small space for body cells, and I want to check all the table at a view ...  So I want to change the direction of the header texts to "left vertical" or "right vertical".

    There are a couple discussion threads on this already.  Fundamentally it is not a feature that Numbers supports.  There are several work arounds but non of theeem are great:
    Please see this thread:
    https://discussions.apple.com/message/15240103#15240103

  • How can I change excel column header using Labile.

    Dear Experts,
                          How can i change excel column header using LabVIEW.
    Thanks for any and all help!
    M.S.Sivaraj.
    Sivaraj M.S
    CLD

    As I said in my previous post, column headers in Excel are merely row 1 cells. May be I missing something here, so please be more explicit with your question.
    I guess you are using the Excel Report tools, and you want to modify an existing sheet. From my limited experience with the Excel Report tools, it is not possible to open an existing woorkbook (except as template...), so the answer to your question should be "Forget it"...
    The work around is to use the example I pointed for you before, and either to write the whole new colum headers as a string array, starting in A1, or to write a single string to a given cell in row 1.
    Hope this helps 
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        

  • How can i change unit of measurement in sales order on header

    Dear all,
    I have material master with base unit of measurement " Ea ".
    I have to take unit Pc in sales order.
    how can i change unit on header in sales order.
    i changed unit on line item in sales order by setting in sales unit field in material master.

    Hi,
    You can very well do it, please do the following steps,
    Go to material master and select the Sales Org.1 and 2, here maintain the sales unit PC and
    it will ask you for the conversion, so maintain your conversion for PC to EA. Then maintain
    the Division, delivery plant, material pricing group and account assignment group(if not maintained) and save it
    Now create the sales order for that resp. material, you will find that system will pick up
    the sales unit which is maintained in the material master's sales orgnization tab.
    For this you need not to change at the header level of sales order
    Please check and revert.
    Thanks,
    Hrishi

  • I have Adove Reader XI. All my files have a picture as the first page. I used to be able to see the picture for each file. Now all I see is the PDF logo. How can I change this so I can see the pictures instead of the logo?

    I have Adobe Reader XI. All my files have a picture on the first page. I used to be able to see that picture but now I can only see the PDF logo. How can I change that so I can see the pictures instead of the logo?

    Windows 7

  • How can i change VBAK-Faksk of VAO1 at header level using BAPI_SALESORD_CHA

    Hi Experts,
    How can i change the value of VBAK-FAKSK (Billing doc value) at header level .
    by using the bapi_salesorder_change.Could you please send the sample code
    how to change the value of any field in VBAk . so that i can take as reference and work accordingly ..
    It's urgent,
    thanks
    kumar.

    Hi,
    Check this
    PARAMETERS: p_vbeln type vbak-vbeln.
    DATA: l_header_inx TYPE bapisdh1x,
    l_header_in TYPE bapisdh1.
    data: lt_return type standard table of bapiret2.
    MOVE: 'U' TO l_header_inx-updateflag,
    'X' TO l_header_inx-bill_block,  " Billing
    'ZL' TO l_header_in-bill_block.  " Billing block.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
    EXPORTING
    salesdocument = p_vbeln
    order_header_in = l_header_in
    order_header_inx = l_header_inx
    TABLES
    return = lt_return.
    * check for errors.
    LOOP AT lt_return transporting no fields WHERE type = 'A' Or type = 'E'.
      EXIT.
    ENDLOOP.
    If sy-subrc = 0.
      write: / 'Error in updating'.
    ELSE.
      commit work and wait.
    endif.
    Thanks
    Naren

  • How can i change the background color in the heading when i add a new page

    How can I change the background in the heading on a new page? When you add WELCOME page the heading color is tan, the ABOUT ME page the heading is light blue, the PHOTOS page the heading block behind the heading text is light green, etc. How do I change those colors?

    you can change iweb navbar any which way you want, as long as you know iweb widgets:
    http://iwebwidgets.cyclosaurus.com/iWebNavBar/BkgndColor.html
    you won't see the change in iweb, you only see it in published site.

  • How can i change the color of  header in ouput list of alv?

    My output list heading is 'LIST OF COST CENTERS DATA' How can i change the color of that.
    I was searched in forum but i didn't get.if it is silly question please forgive me.

    we can change the header text color, by using the html font tag.
    < htmlb :tableView id               = "flights"
                                 table            = "<%= controller->it_flight %>"
                                 headerText       = "<font color='red'>Flight Details</font>"  <----are you talking abt this
                                 headerVisible    = "True"
                                 hasLeadSelection = "FALSE"
                                 footerVisible    = "FALSE"
                                 visibleFirstRow  = "1"
                                 onRowSelection   = "onRowSelection"
                                 iterator         = "<%= controller %>"
                                 selectedRowIndex = "<%= controller->row %>"
                                 width            = "100%"
                                 design           = "ALTERNATING" >

  • How can I change the margin for the header/footer?

    The header/footer are about .5 from the top/bottom but I want them at about .3/.4. How can I change this?

    Would be useful to enter the Help menu and trigger the menu item Pages User Guide.
    Yvan KOENIG (VALLAURIS, France) dimanche 26 février 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • How can I change the running head on the title page only?

    For APA formatting the running head needs to run throughout a paper, but only on the title page is it preceeded by "Running Head:". How can I change the running head on this page only?

    Menu > Insert > Section Break
    Click your cursor in the new (2nd) section.
    Menu > View > Show Inspector
    Inspector > Layout > Section > Page Numbers > uncheck Continue from previous section
    Menu is the menu at the top of your screen when you are in Pages, or anywhere else on the Mac. very hard to miss.
    Yes that is kind of a dumb question.
    Peter

  • How can I change the background from black to white on Safari page header.

    How can I change the Safari page header from black to white, so that the addresses are black letters on white background. At present they are white letters on black

    Tap "Private" to change from black to white.

  • How can I change next track when I using head phones ? I mean with out device help with headphone

    HiAm using iphone4 with ios5 I have simple question how can I change to next song when I am using head phone, it's very difficult to open my phone and change to next track Is there any way to do this

    See Here... ask to speak with the Account Security Team...
    Apple ID: Contacting Apple for help with Apple ID account security
    Or Here  >  Apple  Support  iTunes Store  Contact

  • How can I change Workflow page layout

    Hi,
    I have developed a Workflow for Business trips in company where I'm working. Workflow works fine, but I'm not happy with page layout of my workflow...it's too ordinary and too gray:(
    How can I change Workflow page layout?!?
    I would like to make templates for header, footer, right menu...to put company logo...
    Is there any tutorial or documentation which explain it through example...
    Thanks a lot

    Hi,
    For standalone workflow, you need to look at the WFA_HTML package to change the code. I'm not sure that this is supported though.
    You can change the logo by putting your new logo file in the path specified for images in the Apache configuration file for workflow. I believe that the file is called something like WFLOGO.gif but I'm not sure off the top of my head. If you replace it with your file, it should appear once you bounce Apache.
    To be honest, you'd be better off writing your own screen for submission (either in Forms, JSP or mod PL/SQL), and use the standard screens for administration purposes. That would give you full flexibility over the design of the submission of a process, no support issues, plus users would have their own URL and administrators a completely separate one, to ensure that it is immediately clear which environment they are working in.
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://thoughts.workflowfaq.com ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

Maybe you are looking for

  • "Build.xml file not exist"

    Hey Guys, i am currently involving in a servelet project (RendreX). i want to install apachi ant as a prerequirement. i am using windows 2003 server. I already downloded latest ant version and apache tomcat4.0. Also i have set all the class path,ANT-

  • Is it possible to upgrade a Pavilion laptop's CPU?

    I'm looking to upgrade the CPU on my laptop that i brought a few years ago, It's a Pavilion dv9628nr. Currently have Chipset Quanta 30D1 AMD Turion 64 X2 Dual-Core Mobile Technology TL-58 Is it possible? + What kind of processors will it accept? Full

  • Workaround for Sharing iTunes Libraries

    I've experimented with a solution for sharing my iTunes Library between my iMac and MBP. It isn't perfect, but it has the benefit of not requiring any smoke and mirrors, and you can take it with you. It does require an Airport Drive. BACK EVERYTHING

  • Balance sheet adjustment account usage in clearing

    Hello, I am doing a clearing (F-03) on a bank account which has a foreign currency. Because of the differences in amount a document is generated automatically. The strange thing is one of the line items of this document is balance sheet adjustment ac

  • Turn off TNEF or RTF?

    I have three Mac users in our organization that receive Winmail.dat attachments from our Exchange 2013 server.  I've read somewhere that this can be fixed by turning off RTF or TNEF on the Exchange 2013 server. What will happen to messages/users if t