How to change Static IP in SAPROUTER

Dear Experts,
We have recently changed our static IP number which was configured in our SAPROUTER. I have changed the same in our SAPROUTETAB file. So, users are able to connect the servers thro' routestring. But, From SAP they have not able to fetch our server. Even if we see the System information in Service market place, we can able to see the old static ip of SAPROUTER. Please advise me how to change that number to new one.
Regards,
B.Sudharsan

Hi,
This is very simple to treat as new sap router configuration.
Regards,
Anil

Similar Messages

  • Changing static variable

    hi all,
    i am in the process of developing a robotic controlling software using rxtx and java.
    in that software ther will be 16 static integer value in a class.
    in gui 16 text field will be ther and a button lebeled "send data",
    my problem is that how to change static variable from the action event of a jbutton???
    expecting some suggestion
    arnab/vu2bpw

    * Test1.java
    * Created on January 11, 2007, 5:13 PM
    * To change this template, choose Tools | Template
    Manager
    * and open the template in the editor.
    package ab;
    * @author Arnab
    class StaticTest{
    ublic static int p=5;
    public static int q=6;
    static void boom()
    System.out.println("hello from static boom");
    System.out.println(p);
    public static int getP() {
    return p;
    public class Test1 {
    /** Creates a new instance of Test1 */
    private static int r=10;
    int b=15;
    public static void main(String args[])
    System.out.print("hellow world");
    //change_static();
    StaticTest test1 = new StaticTest();
    r=test1.getP();
    StaticTest.p=b; //####error:-non static variable b
    cannot be refereanced
    from a
    static context
    static void change_static(int a)
    this is the test code of my problem.
    netbeans generating this errorYour code is confusing. You declare a variable as StaticTest, and instantiate it, but you call it test1, which is also the name of the class with main in it. However, your problem is exactly what the compiler is telling you, the non-static variable b cannot be referenced from the static context main(). Either intantiate an instance of Test1 class, or make b static.
    public class Test1{
    private static int r = 10;
    int b = 15;
    public static void main(String [] args){
        Test1 test1 = new Test1();
        r = StaticTest.getP();
        StaticTest.p = test1.b;
        System.out.println("StaticTest.p = " + StaticTest.p + " -- Test1.r = " + r);
    }~Tim

  • How to change the parameters(rot x,y,z &dictance) to get Kinect Fusion Explore Multi Static Cameras sample work?

    Recently,I start to pay attention to  the  function 'Kinect Fusion Explore Multi Static Cameras sample' In SDK 1.8.
    Here ,I use two kinects ,but I have no idea how to change the parameters(x,y,z &dictance) in the red rectangle to make it work successfully.
    By the way,I hava calibrated the two kinects' camera and get the related perameters.

    sorry,I can't add the image to my question...~~~~(>_<)~~~~

  • How to change parameters of Static VI Reference

    Can anyone let me know how to change the parameters of a static vi reference please? right now when I right click on it, just says "Strictly Typed VI". I don't know how to add/delete/change the parameters of it.
    Thanks,
    Solved!
    Go to Solution.

    Hello Triple H,
    This is Andrew Brown, an Applications Engineer with National Instruments. You will need to go through the process to create a new strictly typed VI reference in order to update the parameters of your Call by Reference Node. An article that details this process is Creating a Strictly Typed VI Reference That Calls VIs Dynamically. 
    Please let me know if you have additional questions or issues in this area.
    Regards,
    Andrew Brown
    Applications Engineer
    National Instruments

  • How do I reset to default or change static IP address on HP Officejet Pro 8600 Premium printer?

    How do I reset setting to default or change static IP address on HP Officejet Pro 8600 Premium printer?

    Hi,Tap the right arrow and then tap the Setup icon.Tap the Network option and select Restore Network Defaults.Confirm any prompt to restore the default network settings, it will remove any manual IP configuration. If you are wirelessly connected to the network, select Wireless Setup Wizard and select your network to reconnect the printer wirelessly. Regards,Shlomi

  • How to change the header and footer in the Section Breaks Next Page using OpenXML?

    I have a word document file in which I added a Section Break of Next Page, now I want to change the header and footer of that page.
    Scenario of example, I have a doc file which has four pages with headers and footers and added fifth page in the section break next page, I want to change the header and footer of the fifth page only. This is achievable manually by deselecting the Link to Previous
    button in the Word Application but I don't know how to change it using XML?
    My code that adds the new page in the section breaks is:
    class Program
    static void Main(string[] args)
    string path = @"C:\Riyaz\sample.docx";
    string strtxt = "Hello This is done by programmatically";
    OpenAndAddTextToWordDocument(path,strtxt);
    public static void OpenAndAddTextToWordDocument(string filepath, string txt)
    using (DocX document = DocX.Load(@"C:\Riyaz\sample.docx"))
    document.InsertSectionPageBreak();
    Paragraph p1 = document.InsertParagraph();
    p1.Append("This is new section");
    document.Save();
    Please help.

    Here is the sample for your reference:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using DocumentFormat.OpenXml;
    using DocumentFormat.OpenXml.Packaging;
    using DocumentFormat.OpenXml.Wordprocessing;
    namespace WordAddNewFooterHeader
    class Program
    static void Main(string[] args)
    string path = @"E:\Document\TestHeaderandfooter-Copy.docx";
    string strtxt = "OpenXML SDK";
    OpenAndAddTextToWordDocument(path, strtxt);
    public static void OpenAndAddTextToWordDocument(string filepath, string txt)
    // Open a WordprocessingDocument for editing using the filepath.
    WordprocessingDocument wordprocessingDocument = WordprocessingDocument.Open(filepath, true);
    MainDocumentPart part = wordprocessingDocument.MainDocumentPart;
    Body body = part.Document.Body;
    //create a new footer Id=rIdf2
    FooterPart footerPart2 = part.AddNewPart<FooterPart>("rIdf2");
    GenerateFooterPartContent(footerPart2);
    //create a new header Id=rIdh2
    HeaderPart headerPart2 = part.AddNewPart<HeaderPart>("rIdh2");
    GenerateHeaderPartContent(headerPart2);
    //replace the attribute of SectionProperties to add new footer and header
    SectionProperties lxml = body.GetFirstChild<SectionProperties>();
    lxml.GetFirstChild<HeaderReference>().Remove();
    lxml.GetFirstChild<FooterReference>().Remove();
    HeaderReference headerReference1 = new HeaderReference() { Type = HeaderFooterValues.Default, Id = "rIdh2" };
    FooterReference footerReference1 = new FooterReference() { Type = HeaderFooterValues.Default, Id = "rIdf2" };
    lxml.Append(headerReference1);
    lxml.Append(footerReference1);
    //add the correlation of last Paragraph
    OpenXmlElement oxl = body.ChildElements.GetItem(body.ChildElements.Count - 2);
    ParagraphProperties paragraphProperties1 = new ParagraphProperties();
    SectionProperties sectionProperties1 = new SectionProperties() { RsidR = oxl.GetAttribute("rsidR", oxl.NamespaceUri).Value };
    HeaderReference headerReference2 = new HeaderReference() { Type = HeaderFooterValues.Default, Id = part.GetIdOfPart(part.HeaderParts.FirstOrDefault()) };
    FooterReference footerReference2 = new FooterReference() { Type = HeaderFooterValues.Default, Id = part.GetIdOfPart(part.FooterParts.FirstOrDefault()) };
    PageSize pageSize1 = new PageSize() { Width = (UInt32Value)12240U, Height = (UInt32Value)15840U };
    PageMargin pageMargin1 = new PageMargin() { Top = 1440, Right = (UInt32Value)1440U, Bottom = 1440, Left = (UInt32Value)1440U, Header = (UInt32Value)720U, Footer = (UInt32Value)720U, Gutter = (UInt32Value)0U };
    Columns columns1 = new Columns() { Space = "720" };
    DocGrid docGrid1 = new DocGrid() { LinePitch = 360 };
    sectionProperties1.Append(headerReference2);
    sectionProperties1.Append(footerReference2);
    sectionProperties1.Append(pageSize1);
    sectionProperties1.Append(pageMargin1);
    sectionProperties1.Append(columns1);
    sectionProperties1.Append(docGrid1);
    paragraphProperties1.Append(sectionProperties1);
    oxl.InsertAt<ParagraphProperties>(paragraphProperties1, 0);
    body.InsertBefore<Paragraph>(GenerateParagraph(txt, oxl.GetAttribute("rsidRDefault", oxl.NamespaceUri).Value), body.GetFirstChild<SectionProperties>());
    part.Document.Save();
    wordprocessingDocument.Close();
    //Generate new Paragraph
    public static Paragraph GenerateParagraph(string text, string rsidR)
    Paragraph paragraph1 = new Paragraph() { RsidParagraphAddition = rsidR };
    ParagraphProperties paragraphProperties1 = new ParagraphProperties();
    Tabs tabs1 = new Tabs();
    TabStop tabStop1 = new TabStop() { Val = TabStopValues.Left, Position = 5583 };
    tabs1.Append(tabStop1);
    paragraphProperties1.Append(tabs1);
    Run run1 = new Run();
    Text text1 = new Text();
    text1.Text = text;
    run1.Append(text1);
    Run run2 = new Run();
    TabChar tabChar1 = new TabChar();
    run2.Append(tabChar1);
    paragraph1.Append(paragraphProperties1);
    paragraph1.Append(run1);
    paragraph1.Append(run2);
    return paragraph1;
    static void GenerateHeaderPartContent(HeaderPart hpart)
    Header header1 = new Header();
    Paragraph paragraph1 = new Paragraph();
    ParagraphProperties paragraphProperties1 = new ParagraphProperties();
    ParagraphStyleId paragraphStyleId1 = new ParagraphStyleId() { Val = "Header" };
    paragraphProperties1.Append(paragraphStyleId1);
    Run run1 = new Run();
    Text text1 = new Text();
    text1.Text = "";
    run1.Append(text1);
    paragraph1.Append(paragraphProperties1);
    paragraph1.Append(run1);
    header1.Append(paragraph1);
    hpart.Header = header1;
    static void GenerateFooterPartContent(FooterPart fpart)
    Footer footer1 = new Footer();
    Paragraph paragraph1 = new Paragraph();
    ParagraphProperties paragraphProperties1 = new ParagraphProperties();
    ParagraphStyleId paragraphStyleId1 = new ParagraphStyleId() { Val = "Footer" };
    paragraphProperties1.Append(paragraphStyleId1);
    Run run1 = new Run();
    Text text1 = new Text();
    text1.Text = "";
    run1.Append(text1);
    paragraph1.Append(paragraphProperties1);
    paragraph1.Append(run1);
    footer1.Append(paragraph1);
    fpart.Footer = footer1;
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to change button colors in a loop?

    I am working on a task that should imitate an elevator. I have two vertical
    rows of round buttons "Up" and "Down" When a circle is selected randomly by
    the program, the circle becomes yellow and the elevator moves to that
    button.
    Here is what I did:
    1. created a class Circle where I save buttons' parameters
    2. saved Circle objects in an array
    3. drew the buttons depending on their parameters
    4. generated a random number, matched it with an array index and assigned
    the object color to yellow.
    Everything is fine except that I can't figure out how to change colors of my
    buttons in a loop.
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    public class Elevator3 extends JPanel
    private int n = 40;
    private int width = 200;
    private int floors = 10;
    private int interval = 1000;
    private boolean selected = false;
    private Circle[] buttons = new Circle[2*(floors-1)];
    public Elevator3()
    build();
    JFrame frame = new JFrame("Elevator3");
    setBackground(Color.WHITE);
    setFont(new Font("SansSerif", Font.PLAIN, Math.round(n/3)));
    frame.getContentPane().add(this);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(width, n*(floors+2) );
    frame.setVisible(true);
    public void build()
    Random r = new Random();
    int buttonPick;
    int timeUntilNextButton = r.nextInt(interval);
    for (int k =0; ; k++)
    if (timeUntilNextButton-- ==0)
    buttonPick = r.nextInt(2*(floors-1));
    //populate my buttons array here - how??
    timeUntilNextButton = r.nextInt(interval);
    //adding "Down" buttons
    for (int i=1, count=0; i < floors; i++, count++)
    if (count == buttonPick)
    selected = true;
    else
    selected = false;
    buttons[count]= new Circle(n*2, n*i, selected, Math.round(n/2));
    //build an array of "Up" circles
    for (int i=2, count=floors-1; i < floors+1; i++, count++)
    if (count == buttonPick)
    selected = true;
    else
    selected = false;
    buttons[count]= new Circle(n, n*i, selected, Math.round(n/2));
    public static void main(String[] args)
    new Elevator3();
    protected void paintComponent(Graphics g)
    super.paintComponent(g);
    //draw buttons
    for (int i=0; i < buttons.length; i++)
    g.setColor(buttons.getColor());
    g.fillOval(buttons[i].getX(), buttons[i].getY(), buttons[i].getWidth(), buttons[i].getWidth());
    class Circle
    private int x;
    private int y;
    private Color c;
    private boolean pressed;
    private int width;
    public Circle(int xCoordinate, int yCoordinate, boolean selected, int diameter)
    x = xCoordinate;
    y = yCoordinate;
    pressed = selected;
    width = diameter;
    if (pressed)
    c = Color.YELLOW;
    else
    c = Color.LIGHT_GRAY;
    public Color getColor()
    return c;
    public int getX()
    return x;
    public int getY()
    return y;
    public int getWidth()
    return width;

    hi,
    am sorry, i couldn't make out what exactly the problem, but as ur subject line says...
    may be the code give below will help you to change button colors in a loop..
              for(int i = 0; i < button.length; i++){
                   int color1 = (int)(250*Math.random());
                   int color2 = (int)(250*Math.random());
                   int color3 = (int)(250*Math.random());
                   Color c = new Color(color1,color2,color3);
                   button[i] = new JButton("button name");
                   button.addActionListener(this);
                   //to check the r, g, b combination.
                   //System.out.println(c);
                   button[i].setBackground(c);
                   button[i].setForeground(Color.white);
    //adding into the panel
                   panel.add(button[i]);
    hope this would help you.

  • How to change the box width of a template

    Hi,
    I want to set a Lower margin for the last row in the template of a described width.
    I am trying to change the widh of box in the template. but
    even after saving and activating the form the chages are lost the next time i logged in to the ECC.
    its defaulted to 15 TW.
    Can anybody suggest how to change this widht ?
    Thanks and Regards,
    Amit Bhagwat

    Hi
    Table Painter is used to design layout of Templates & Tables.
    http://help.sap.com/saphelp_nw04/helpdata/en/4b/83fb4edf8f11d3969700a0c930660b/frameset.htm
    You can say its nothing but graphical format of template.
    Template is to display a table whose layout and size (number of lines and columns) is determined before the runtime of the application program. For this reason, a template is also called a static table
    Regards
    Anji

  • How to change an applet to an application ?

    My new applet (used to be a working application) has no error messages but does nothing !
    any advice is appreciated
    StanSteve
    steps taken so far to change an application to an applet:
    1) added      import javax.swing.JApplet;2) removed the constructor and replaced it with public void init()[/code
    3)removed public static void main(String[] args) method
    4) created an html file with
    <html>
    <head>
    <title> Pick a Program !</title>
    <body>
    <h3>Adventures in Learning</h3>
    <applet
    archive = "objectdraw.jar"
    codeBase = "."
    code = "TryGridLayout.class" width = 400 height = 400 >
    </applet>
    </body>
    </html>5)added all the classes
    In the ActionListener anonymous class it is supposed to (at the click of a button) call
    one of 3 applications or another applet. Below is the top level class (used to be the main() driver class)
    import objectdraw.*;
    import javax.swing.JApplet;
    import objectdraw.*;
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import java.awt.event.*;
    public class ChooseProgram1 extends JApplet
        private JLabel invalidInputLabel;
        JButton myJButtonSketcher;
        JButton myJButtonCalculator;
        JButton myJButtonInfo;
        JButton myJButtonVideo;
          public void init()
          JFrame myJFrame = new JFrame("Choose your program ! !");
          Toolkit myToolkit = myJFrame.getToolkit();
          Dimension myScreenSize = myToolkit.getDefaultToolkit().getScreenSize();
          //  center on screen and set size of frame  to half the screen size
          myJFrame.setBounds(myScreenSize.width / 4, myScreenSize.height / 4,
                          myScreenSize.width / 2, myScreenSize.height / 2);  //(position, size)
            //change the background color
             myJFrame.getContentPane().setBackground(Color.yellow);
            //create the layout manager
            GridLayout myGridLayout = new GridLayout(2,2);
            //get the content pane
            Container myContentPane = myJFrame.getContentPane();
            //set the container layout manager
            myContentPane.setLayout(myGridLayout);
            //create an object to hold the button's style
            Border myEdge = BorderFactory.createRaisedBevelBorder();
          //create the button size
          Dimension buttonSize =  new Dimension(50,50);
          //create the button's font object
          Font myFont = new Font("Arial", Font.BOLD,18);
          //create 1st button's object
          myJButtonCalculator = new JButton("Calculator");
          myJButtonCalculator.setBackground(Color.red);
          myJButtonCalculator.setForeground(Color.black);
          //set the button's border and size and font
          myJButtonCalculator.setBorder(myEdge);
          myJButtonCalculator.setPreferredSize(buttonSize);
          myJButtonCalculator.setFont(myFont);
          //create 2nd button's object
           myJButtonSketcher = new JButton("Sketcher");
          myJButtonSketcher.setBackground(Color.pink);
          myJButtonSketcher.setForeground(Color.black);
          //set the button's border and size and font
          myJButtonSketcher.setBorder(myEdge);
          myJButtonSketcher.setPreferredSize(buttonSize);
          myJButtonSketcher.setFont(myFont);
          //create 3rd button's object
          myJButtonVideo = new JButton("Airplane-Blimp Video");
          myJButtonVideo.setBackground(Color.green);
          myJButtonVideo.setForeground(Color.black);
          //set the button's border and size and font
          myJButtonVideo.setBorder(myEdge);
          myJButtonVideo.setPreferredSize(buttonSize);
          myJButtonVideo.setFont(myFont);
          //create 4th button's object
          myJButtonInfo = new JButton(" Information Directory");
          myJButtonInfo.setBackground(Color.white);
          myJButtonInfo.setForeground(Color.black);
          //set the button's border and size and font
          myJButtonInfo.setBorder(myEdge);
          myJButtonInfo.setPreferredSize(buttonSize);
          myJButtonInfo.setFont(myFont);
         //add the buttons to the content pane
          myContentPane.add(myJButtonCalculator);
          myContentPane.add(myJButtonSketcher);
          myContentPane.add(myJButtonVideo);
          myContentPane.add(myJButtonInfo);
              //add behaviors
              ActionListener l = new ActionListener()
                 public void actionPerformed(ActionEvent e)
                  if(e.getSource() == myJButtonCalculator)
                    new Calculator6();
                    System.out.println("The calculator program executed");
                  else
                    if(e.getSource() == myJButtonSketcher)
                        new Sketcher().init();
                       System.out.println("The Sketcher program executed");
                      else
                        if(e.getSource() == myJButtonVideo)
                          new Grass().init();
                          System.out.println("The applet executed");
                         else
                           if(e.getSource() == myJButtonInfo)
                             TryInfo.main(new String[]{});
                             System.out.println("The Information Directory program executed");
                             else
                               invalidInputLabel.setText("input invalid");
              //add the object listener to listen for the click event on the buttons
              myJButtonCalculator.addActionListener(l);
              myJButtonSketcher.addActionListener(l);
              myJButtonVideo.addActionListener(l);
              myJButtonInfo.addActionListener(l);
          //myJFrame.setVisible(true);
      } //end init() method

    TItle should read " How to change an application to an applet"
    sorry about that

  • How to change  text in ADOBE forms

    Hi ,
      I am unable to change the static text in adobe  can anyone tell me how to change this text.

    Hi,
    Choose the object Palatte. and change the property 'caption' in it .
    thanks
    nidhi

  • How to change Table Cell Field Type Dynamically?

    Hi All,
    I am fetching some news data from backend DB and displaying them in a WD Table. Now one News Item may or may not have a URL behind it. If I find the URL as null then I want to display the news as simple TextView otherwise as LinkToUrl. How can I change this input type dynamically for each row in the runtime?
    If I use LinkToUrl all the time then the items which has URL as null gets displayed as normal text, but they are of very faint color and I can not change the text design. Whether if I user TextView I can set some text design like Header2, Header 3 etc.
    Can anybody please help with some code block? My main requirement is how to change the table cell input type dynamically.
    Thanks in Advance.
    Shubhadip

    Hi Shubhadip,
    This is the sample code for creating and adding a table cell editor table dynamically.
    public static void wdDoModifyView
    (IPrivateDynamicTableCreationView wdThis, IPrivateDynamicTableCreationView.IContextNode wdContext, com.sap.tc.webdynpro.progmodel.api.IWDView view, boolean firstTime)
    //@@begin wdDoModifyView
    /*** 1.Create Table **/
    IWDTable table =
    (IWDTable) view.createElement(IWDTable.class, "table1");
    table.setWidth("100%");
    table.setVisibleRowCount(data.length);
    /*** 2.Create nameColumn **/
    IWDTableColumn nameColumn =
    (IWDTableColumn) view.createElement(IWDTableColumn.class, "Name");
    IWDCaption colHeader =
    (IWDCaption) view.createElement(IWDCaption.class, "NameHeader");
    colHeader.setText("–¼‘O");
    nameColumn.setHeader(colHeader);
    IWDTextView nameViewer =
    (IWDTextView) view.createElement(IWDTextView.class, "NameViewer");
    nameViewer.bindText(nameAtt);
    IWDTableCellEditor editor = (IWDTableCellEditor) nameViewer;
    nameColumn.setTableCellEditor(editor);
    table.addColumn(nameColumn);
    IWDTableColumn nationalityColumn =
    (IWDTableColumn) view.createElement(
    IWDTableColumn.class,
    "Nationality");
    IWDTableCellEditor nationalityEditor =
    (IWDTableCellEditor) nationalityViewer;
    nationalityColumn.setTableCellEditor(nationalityEditor);
    table.addColumn(nationalityColumn);
    /** 3. Bind context to table **/
    table.bindDataSource(nodeInfo);
    //@@end
    Bala
    Kindly reward appropriate points.

  • How to change the source ip address

    hi all,
    i got the problem that how to change the source ip address when i
    get a website's page!
    i mean i want to change the source ip address when i access the
    remote website, sure i know when change the source ip, i can not get
    the result correctly when changing the source ip address, but it is not
    important to get the result i just want to send out a "click" event to the website by calling a post method in the site!
    does anybody have some ideas?
    Best Regards,
    Eric Gau

    Here's some code that connects to google and does a get:
    import java.io.*;
    import java.net.*;
    public class HTTPTest {
        private Socket sock;
        private BufferedReader in;
        private BufferedWriter out;
        private boolean running = false;
        HTTPTest() {
        private void go(String site) {
            try {
                sock = new Socket(site, 80);
                in = new BufferedReader(new InputStreamReader(sock.getInputStream()));
                out = new BufferedWriter(new OutputStreamWriter(sock.getOutputStream()));
                System.out.println("Connected");
                out.write("GET / HTTP/1.1\r\n\r\n");
                out.flush();
                doRead();
            } catch (IOException e) {
                e.printStackTrace();
        private void doRead() {
            running = true;
            String line;
            System.out.println("Read started");
            while (running) {
                try {
                    line = in.readLine();
                } catch (IOException e) {
                    e.printStackTrace();
                    line = null;
                if (line == null) {
                    running = false;
                } else {
                    System.out.println(line);
            System.out.println("Socket closed");
        public static void main(String [] args) {
            String site;
            if (args.length > 0) {
                site = args[0];
            } else {
                site = "google.ca";
            new HTTPTest().go(site);
    }

  • How to change the FONT size for a TEXT object?

    Hello
    I am keeping a TEXT element to get a static text (as 'Visitor Info Form'), so i inserted TEXT from palattes, its size is Aerial 10, but i want to have its size as 24, I tried by right clicking on TEXT, then selected FONT, then choosen the 24 from drop-down list, its not working/reflecting!! but, when i change the PARAGRAPH settings, they are reflecting!
    Pls. let me know how to change size from 10 to 24?
    Thank you

    Don't specify the styleclass for the inner panelHeader.
    <af:panelHeader text="panelHeader 1" id="ph1" styleClass="CustomHelpHeader">
    <f:facet name="context"/>
    <f:facet name="menuBar"/>
    <f:facet name="toolbar"/>
    <f:facet name="legend"/>
    <f:facet name="info"/>
    <af:panelHeader text="inner panelHeader" id="ph2">
    <f:facet name="context"/>
    <f:facet name="menuBar"/>
    <f:facet name="toolbar"/>
    <f:facet name="legend"/>
    <f:facet name="info"/>
    </af:panelHeader>
    </af:panelHeader>
    The inner panel header does not get affected and is displayed normally.
    Thanks,
    Navaneeth

  • How to change the page header?

    Hi,
    I just installed and started using Plumtree 6.0 a month ago, and we are still in a trial phase for our company's portal.
    I want to change the default page header to replace Plumtree logo to my company's logo. I thought I can change it in the style sheet, but I didn't find where to change in the cssmill folder. I found an artical in edocs.bea.com saying I can modify the header by using ALI Publisher, but I don't know what's the right way to do it and faster.
    Can someone guide me how to change the page header?
    Thank you. (if this is not the correct forum to post the question, please let me know which forum should I go)

    Depends on what you want to do. Personally, I'd do a header portlet and not touch the Plumtree/BEA logos. They're likely to be overwritten when the product receives updates.
    This may seem like a lot of steps, but really - it goes quickly
    ** Think through what you want to display. If all you want to do is replace the image, but you wan to keep the overall layout style then you can create a simple replacement header
    Step 1 - create a header portlet
    =======================
    If you're using Publisher...
    =====
    * Create a new portlet - choose the Header portlet template
    * Upload your image / change the header in the rich text editor
    If you're not using Publisher
    =====
    * Personally, static HTML will do just fine - create a folder and html file called something like "mybanner/mybanner.htm" on your remote portlet server
    * Plop in an image (you'll want to swipe some adaptive tags for community and page name - can always stick those in later)
    * Create a new remote portlet web service that references this HTML page
    * Create a portlet from the web service - make sure the type is "header"
    Step 2 - turn it on
    =======================
    * Create a new experience definition (or modify default - I usually create a new one so you can move it between environments)
    * In the experience definition's "header / footer" settings area, tell the header to load from the new header portlet you created
    * If you created a custom experience definition, modify your experience rules to load this experience defiintion according to whatever parameters you think make sense (just be careful you don't knock out your login page - we usually use security groups to just say "hey - the user is logged in and is, in fact, a member of this portal - that'll still let your login pages load)
    Done
    May seem like a lot of work, but really it's just a series of simple steps. Advantage here is you can vary things as you see fit and also just feel safe that the next time Plumtree/BEA updates those imageserver files you'll be good to go. From there you can get as fancy schmancy as you like using adaptive tags, etc. Heck - make it a .NET app if you want and do some crazy personalization or something. Embed stock tickers, important news alerts, whatever.
    That help at all?
    Thanks,
    Eric

  • How to change IP adress of wireless controller 2504 . from GUI

    how to change IP adress of wireless controller 2504 . from GUI 

    In the existing setup, does WLC management & APs are on the same vlan ? If that is the case you may have not configured any of the below, as AP L3 broadcast reach WLC & in that way AP will learn about WLC.
    If WLC & APs are on different vlan you may already use one of WLC discovery method listed below.
    1. DHCP Option 43
    2. DNS
    3. UDP broadcast forwarding
    4. Static configuration
    When you change the WLC management IP address, AP need to know what is the new IP & you can modify the configuration of the method you used.
    HTH
    Rasika
    **** Pls rate all useful responses ****

Maybe you are looking for