How favicon can be changed in Webdynpro Java ????

Hi:
I need change the icon SAP in URL. The application was created in Webdynpro Java. I need custom icon in URL. Someone can help me??
Thanks !!! 

Hello Dorhyz,
Please refer to the thread below, may be a bit helpful to you:
[/thread/1186342 [original link is broken];
Regards,
Gaurav

Similar Messages

  • How can I change the Jframe Java help Icon

    How can I change then Jframe Java help Icon?.
    I am using then HelpSet class and HelpBroker.
    I want to change the java help icon
    Any Idea? thanks. ...

    It can be done, but it's ugly...
    Add in a listener to your topmost JFrame to sense when the focus is lost, since this happens when a help window comes up. When the focus leaves the main window, check all the windows that are up to see if one is a help window. If so, this will give you a reference to the help window and you can drill down to change what you want.
    Here's an example that changes the icon and removes the borders from the javahelp buttons.
    WindowListener wndCloser = new WindowAdapter() {
              //A necessarily roundabout method to affect
              //look and feel aspects of the javahelp viewer.
              //(there is no way to get at these components directly.)
              //When the main frame loses focus, it may be because
              //the help viewer was brought up. Look through all
              //the current frames to see if one is a help viewer.
              //If it is, change the look of the help viewer
              //to what we want.
              Frame m_helpFrame = null;
              public void windowDeactivated(WindowEvent e) {
              if (m_helpFrame != null)
                   return;
              Frame[] frames = getFrames();
              for (int k = 0; k < frames.length; k++) {
                   if (!(frames[k] instanceof JFrame))
                   continue;
                   JFrame jf = (JFrame)frames[k];
                   if (jf.getContentPane().getComponentCount()==0)
                   continue;
                   Component c = jf.getContentPane().
                   getComponent(0);
                   if (c == null || !(c instanceof JHelp))
                   continue;
                   m_helpFrame = jf;
                   //now that we know the Frame, we can change the title icon
                   final Image image2 = <your icon here>
                   m_helpFrame.setIconImage(image2);
                   JHelp jh = (JHelp)c;
                   for (int s=0; s<jh.getComponentCount(); s++) {
                   c = jh.getComponent(s);
                   if (c == null || !(c instanceof JToolBar))
                        continue;
                   JToolBar jtb = (JToolBar)c;
                   //now that we've accessed the toolbar, we can
                   //modify the look of the buttons.
                   for(int i=0; i<jtb.getComponentCount(); i++) {
                        Component comp = jtb.getComponentAtIndex(i);
                        if(comp instanceof JButton) {
                        JButton button = (JButton)comp;
                        button.setBorder(null);

  • How to use HTML Tags in webdynpro java

    Hi,
         Can any body tell me how to use HTML Tags in webdynpro java.
    If u provide me with sample code it will become more usefull.
    Thanks & Regards,
    SN

    HI,
    Please find the steps:
    Create a html file and store in your webdynpro project
    Add the html contents in your file
    & Create a IFRAME UI element and refer you html file
    Now you able to see the html in webdynpro
    Thanks & Regards,
    Ram

  • How to assign the Thems into Webdynpro Java Application

    HI All,
                   I Downloaded the plugin for them editor and i add those plugins and i created the Them. Please any one can help me how to add that Them into Webdynpro java application.

    Hi ep bhargav,
    You can check this link.....
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ccb6bcf4-0401-0010-e3bc-ec0ef03e13d1
    Re: webdynpro theme editor
    Thanks.
    Venkat.

  • When i type any word in address bar, it is search by "speedbit", How i can to change it into google searching ?

    when i type any word in address bar, it is search by "speedbit", How i can to change it into google searching ?

    When you ''reset'' keyword.url, you blank the entry. Firefox doesn't know what to do with the keyword you've typed in, so it adds www. to the front, and tacks .com to the end and takes you www.test.com.
    You need a new search engine entry. '''Try making keyword.url = http://www.google.com/#q='''
    Every once in a while a rogue search engine wrecks my browser, and I end up scrambling for this very answer. I hope the devs will create an easier fix for future versions.

  • How we can load change record in cube.

    Hi,
         How we can load change record in cube, (delta)
         i need step by step in sap BI 7.0.

    Hi Nitin
    I hope you are asking about delta loads, if your datasource supports deltas then you can do only changed records from source to cube. To see the details goto ROOSOURCE table in ECC and find.
    For further help search in SDN and help.sap.com, you can find n number of postiings about the same.
    Thanks
    Reddy

  • How i can dynamic changing root in JTree in swing?

    Hello, how i can dynamic changing root in JTree in swing?

    If u r willing to get your hands dirty and not be lazy, you can look around the code for the DefaultTreeTableModel and implement the setRoot functionality in the FileSystemModel. The code should not be too hard to figure out, cause it only replaces the root Object and fires a TreeStructureChanged notification.
    Set root functionality from DefaultTreeModel source (in your JDK installation directory)
         * Sets the root to root. A null root implies
         * the tree is to display nothing, and is legal.
        public void setRoot(TreeNode root) {
            Object oldRoot = this.root;
         this.root = root;
            if (root == null && oldRoot != null) {
                fireTreeStructureChanged(this, null);
            else {
                nodeStructureChanged(root);
        }ICE

  • How often can i change icloud account association/other ?s

    How often can i change icloud account association on a ios device.  If the ios device has a shared photo folder photo on it, will that setting still apply to the updated icloud account.by default.  How long will the shared photos from the original icloud account stay available to the other devices?  When a shared photo folder is disabled from the ios device, does it immediately remove acces via icloud?  if photo stream is activated on one ios device, does it activate on the other devices using that icoud account.  Thanks for your help
    matthew

    You change it the same way you change the information for any Apple ID: http://support.apple.com/kb/ht5621.  (An iCloud ID is also an Apple ID.)
    After changing the ID, read this to know what to do next: http://support.apple.com/kb/HT5796.

  • How/where can you change the delimiters within the output file -Urgent Pls!

    Hello Experts,
    When Exporting data through EAS, how/where can you change the delimiters within the output file (ie. space delimited vs tab delimited vs custom)
    Thanks in advance.
    Regards,
    Sonu

    This is where I will be shot down in flames but at least in 7.x I am unaware of any configuration option that allows you to export in anything other than space delimited.
    I guess you could write a shell/perl script that could change this outside of Essbase
    Edited by: DrFosterMan on Jan 16, 2009 12:54 PM

  • How to use "Select options" in Webdynpro Java ?

    HI experts ,
    I want know if can be implemented "select options" like the ones used in R3 - ABAP in a webdynpro Java.
    And in case of being possible, how to implemented using Adaptive RFC or BAPI with a R3 backend system?
    Our Portal is EP6.0 SP18 ,J2EE 6.40 .
    Thanks & Regards,
    Jianguo Chen

    Hi Jianguo,
    check these links:
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/5f/e5de3f68d48f15e10000000a155106/frameset.htm">http://help.sap.com/saphelp_nw04/helpdata/en/5f/e5de3f68d48f15e10000000a155106/frameset.htm</a>
    You may use 2 EVS to simulate your select option.
    Regards,
    Gianluca Barile

  • How to capture multiple change in webDynPro(ABAP) Table

    Hi ,
    I would like to know 'How to Capture Multiple Change' of a node . For example , a table is bound to a node and I select Multiple entries in the table . Then, how to capture Multiple entries of the table  . Is there any method ?
    There is a method 'GET_CONTEXT_CHANGE_LOG' of 'if_wd_context' which captures single change of the node .
    Regards
    Sid

    Post this in Webdynpro forum at
    Web Dynpro Java
    have you seen these tutorials.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3133474a-0801-0010-d692-81827814a5a1
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/4c70444a-0801-0010-7688-9e4bd844b783
    Regards
    Raja

  • How to design search field in webdynpro java iView

    Hi,
          I created one webdynpro (java) iView.I want to design one search fields like Google on webdynpro iView.How to achieve this requirement?Can someone explain me in steps?
    Thanks,
    Kundan
    Edited by: Kundan 2009 on Feb 26, 2010 10:06 AM

    Hi ,
    If you want to employ google search functionality in webdynpro , follow below steps.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/fd68e590-0201-0010-da89-ba631f41b3d7?QuickLink=index&overridelayout=true
    webdynpro framework dont have  standard search functionality directly.
    Regards,
    Koti Reddy

  • How to upload an attachment from webdynpro java application.

    Hi,
    Please assist me to create a View in WEBDYNPRO JAVA, which speaks about how to upload an attachment and save it in SAP
    Regards,
    Suri

    Well , first of all, I think you should search the SDN with keyword such as "upload files ".
    Here is the link of an article about upload and download files in WD.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/9076a593-2b08-2d10-2890-9a7078246ec4
    Hope that can help you.
    Regards
    Carfield

  • How to connect to outlook from webdynpro java???

    Can any one tell me step by step process of  how to send an email from my wdjava application ???
      I will have the email id as a link in my wdjava application, an action that link a new window should pop-up and i have to enter the text in the body and then i have send the email....
    Regards,
    Mahesh

    Hi Tobias,
    Thanks for the reply.my requirement is just to calling the default mail, for that i have used the
        String email = "mailto:" + toEmailID; (its opening in a new window in the outlook)
    now i want to give this as a link in the toop tip.Can you please tell me how can i achieve this?
    Is it possible to give the hyperlink in the tooptip?? how can i convert the string to hyperlink in webdynpro java??

  • How to use .properties files in Webdynpro Java code?

    Hi all,
      I want to use a logon.properties file when I initial a JCO connection pool in my webdynpro DC (JCO.addClientPool()),but  I found when I deployed this DC to the server, it always giv e me an FileNotFoundException. So I donot know how to deploy a .properties file to the server and how to access this file in my Java code?
    Thans and Best regards
    Deyang

    Hi,
    1) put .properties file to your packege under src\packages folder (src\packages\com\sdn\properties\jco.properties)
    2) load property:
         final InputStream is = getClass().getClassLoader().getResourceAsStream("com/sdn/properties/jco.properties");
         final Properties properties = new Properties();
         try
              properties.load(is);
         catch(Exception e)
              wdComponentAPI.getMessageManager().reportException(new WDNonFatalException(e), false);
    Regatds Maxim R.

Maybe you are looking for

  • How to set

    I am running a prgram from command line which requires to pass command line argument with -D option to set several directories in the JVM for java extension mechanism. I could successfully run my program as below by using a variable. set EXT_DIRS = "

  • Abstract Interfaces....

    Hello, I try to understand abstract interfaces (AI), but I couldn't answer myself this question. In <a href="/people/krishna.moorthyp/blog/2005/06/09/walkthrough-with-bpm this blog, he used AI for BPM. I know that he have to do this, because BPM can

  • What values in EBM Header maps to error notification entry in AIA console

    Hi Guys, Can any one tell me which values of EBM Header maps to error notification entry in AIA console for sending notification to user created ? What elements in EBM Header maps to this fields *(SYSTEM CODE, ERROR CODE, SERVICE NAME, and PROCESS_NA

  • Can't find a java script that will close browser window

    I went through the archives and found several java scripts for closing browser windows. Unfortunately none of the work. If I find one that will work on a Mac - Safari then it won't work on a PC - IE. I downloaded and installed that extension but cann

  • How to create a Mail profile using C#

    Hi, Need to create a mail profile using C# code. Kind of a replacement of CreateProfile() in MAPI. Trying to create mail profile for exchange using Exchange Web service, is that the rite way to do that. Should i use any other reference to create mail