SRM 7 - Change portal button name

Expert's,
I'm working with SRM 7 ans i'm facing a problem concerning the text of a few standard buttons around the system. I guess that exists a way of changing the attributes ( in my case the name of the buttons) but not by regestering the standard object.
For example in cFolder's it's possible to edit a XML and change the appearence of the system. Is that possible in SRM ?
Could you please tell me hoe can i modify a webdynpro in order to change the button labels ?
Best regards,
Mário

Hi Mário,
For example if you would like to change the field label of the button 'Order' in the SC screen, you could do this in the following way:
- Right click on the button 'order' in the browser -> more field help
you'll get this information
Application: /SAPSRM/WDA_L_FPM_OIF
Web Dynpro Component: FPM_OIF_COMPONENT
Window Information: FPM_WINDOW
View Information: CNR_VIEW
Configuration ID: /SAPSRM/WDCC_FPM_OIF_SC_PROFNL
- In the SAP GUI you open in the SE80 transaction the Web Dynpro Component: FPM_OIF_COMPONENT
- In the component configurator (the option at the button), you open the Configuration /SAPSRM/WDCC_FPM_OIF_SC_PROFNL
- Doubleclick on the  /SAPSRM/WDCC_FPM_OIF_SC_PROFNL
- Start configurator
- Click on 'Change' mode
- Click on 'Order'
- There you can change the field label.
Regards,
Peter

Similar Messages

  • Changing Prompt Button Name "Go" to "Apply"

    Hi,
    I want to change the prompt button name from "Go" to "Apply".
    How to achieve this?
    Thanks,
    Satheesh

    Hi, you can refer to http://bischool.wordpress.com/2009/07/18/change-go-button-name-of-obiee-dashboard-prompt/
    or
    http://www.obinotes.com/2010/09/change-go-button-text-in-prompt-only.html
    I hope this helps.
    J.-

  • InputFileUpload. Change the button name

    How I can change the name of the button (for example: "Search" into "Images") in to inputFileUpload component.
    I used MyFaces inputFileUpload component.
    Thanks for all

    ?????? The All sleeps ??????
    HELP!!!

  • Change button names

    Hi Experts,
    Is it possible to change the button name in SAP documents? Ex. SO button 'ADD' changed to 'SAVE'.
    Thanks.
    Don

    Hi Don,
    Unfortunately, it is not possible to change button names, we can only change label names. If you want to change button names, you need to customize an addon.
    Hope it helps.
    Chinho

  • Change the button(SAVE) name in Bank information in ESS

    Dear experts,
    I want to change the button name in Bank information in ESS like SAVE to SUBMIT.
    This where i can do it in NWDS? In the message pool i'm able to change ROAD MAP text, but i'm unable to change the text button under labels in bank information in ESS.
    We are into ERP 2004 so personalization editor won't come, additionally we have to do it through NWDS.
    So in NWDS where can i change this button text?
    Regards,
    Devi.

    Hi Devi,
    In ESS applications, the buttons are present in the DC ess/per. The Text of 'Save' button is mapped to context attribute Text.ReviewButton. The node 'Text' present in FcPersInfoInterface can be mapped to the view and the text of button can be changed as
    wdContext.currentTextElement().setReviewButton("Submit");
    The text 'Submit' should appear only while creating or editing records. 
    While deleting a record, the text of the button should be 'Delete'.
    Regards,
    Anushree

  • How To Change InputDialog Buttons?

    hi there
    i made an InputDialog
    and i want to change the button names ,how to do that?
    and how to react with the user clicks a button?
    here's what i did
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class Custom_Dialog
        public static void main(String[] args) {
    String Text=JOptionPane.showInputDialog(null,"Input Something","Search",JOptionPane.QUESTION_MESSAGE);                                   
    }

    hi i made it but i have a problem
    is that when i press the Search Button The JDialog disappears and loses focus
    and i want it to still focused i used requestfocus() but it doesn't work
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    import javax.swing.JOptionPane;
    import javax.swing.*;
    class Custom_Dialog
      public static void main(String[] args)
           JTextField textfield=new JTextField(5);
        Object[] options =
        {"Search", "Cancel"};
    Object[]array={"Input Something",textfield};
        JOptionPane pane = new JOptionPane(array,
            JOptionPane.QUESTION_MESSAGE, JOptionPane.DEFAULT_OPTION, null, options);
        JDialog dialog = pane.createDialog(textfield, "Search");
        dialog.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
        dialog.setVisible(true);
        if(pane.getValue().equals("Search")){
             System.out.println("Search Pressed");
             System.out.println(textfield.getText()+" Is Entered");
             dialog.requestFocus();
        else{
             System.out.println("Cancel Pressed");
    }

  • Run time update on Button name and Action of Button

    I want to change the button name and button path in the GUI directly. So user can update GUI as per their requirement.
    Now I have built a GUI with multiple buttons. Whenever the button clicked corresponding webpage will be opened. This Button name and webpage link can not be changed as per current GUI design.
    But I want to allow anybody to update the Button name and webpage link as per their need.
    Please suggest , how can I achieve it? Please share if you have some code snippet.

    Changing the text on a Swing JButton is pretty simple. That isn't an appropriate question for this forum, however. This forum is for questions concerning using or extending WindowBuilder. General Swing questions should be posted to a general Swing/Java forum.

  • Changing Go button prompt of query bean

    Hi
    How can we change the prompt of Go button that comes by default in the query bean. I have gone through the thread http://forums.oracle.com/forums/thread.jspa?messageID=1354500? and tried the code but it didn't work. Its printing button not found. Let me know if there is way to achieve this.
    OAQueryBean queryBean = (OAQueryBean)webBean.findIndexedChildRecursive("QueueQueryRN");
    String GoButtonName = queryBean.getGoButtonName();
    OASubmitButtonBean goButton = (OASubmitButtonBean)queryBean.findIndexedChildRecursive(GoButtonName);
    if (goButton !=null)
    goButton.setText("Search");
    System.out.println("button found");
    }else
    System.out.println("button not found");
    Thanks,
    VG
    Edited by: VG on Aug 9, 2011 10:37 AM

    VG,
    I have gotten the code to work, however in order to do this, I had to create a controller on a child region to the queryBean. Then I called super.processRequest(pageContext, webBean) and then my code to access the Go button.
    In my example I have the following hierarchy:
    queryRegion
    ....tableRegion <--- create controller HERE to change Go Button name.
    ......item
    ......item
    In the tableRegion I added a controller. This allows me to call super so that the QueryBean will create the button bean and initialize it so I can access it. I think you are getting a null because when your page level controller is executed, the button does not yet exist, even though queryBean knows what id it will give the button, its PR method hasn't been called to dynamically create the button.
    By putting a new controller on a child of queryBean, you can call the queryBean PR and then it will have dynamically created the submitButton for you to manipulate.
    Does this make sense?
    Give it a try.
    Hope this helps.
    BTW - I used this technique to also initialize the search query to come up with default search results.
    Kristofer

  • Change Button Name in JOptionPane.showMessageDialog

    Hello,
    I've written the following code that invokes a JOPtionPane messageDialog, when the delete button is hit in the following frame and the selectedItem in the JComboBox is Default.
    I want to change the JOPtionPane button name from OK to Close. Is there a way to do this with error message dialoges, as their is with confirmDialoges?
    Please help out.
    import java.awt.Dimension;
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    public class MyJOptionPaneTest {
         public MyJOptionPaneTest()
              JFrame frame = new JFrame("My Frame");
              JPanel panel = new JPanel(new FlowLayout(FlowLayout.LEFT,5,0));
              final JComboBox myComboBox = new JComboBox();
              myComboBox.setPreferredSize(new Dimension(100,20));
              myComboBox.getModel().setSelectedItem("Default");
              myComboBox.addItem("Default");
              myComboBox.addItem("Other");
              JButton deleteButton = new JButton("Delete");
              deleteButton.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        if(myComboBox.getSelectedItem().equals("Default"))
                             JOptionPane.showMessageDialog(null, "Default cannot be deleted", "Error", JOptionPane.ERROR_MESSAGE);
              panel.add(myComboBox);
              panel.add(deleteButton);
              frame.getContentPane().add(panel);
              frame.setSize(200,100);
              frame.setResizable(false);
              frame.setVisible(true);
         public static void main(String [] args)
              MyJOptionPaneTest test = new MyJOptionPaneTest();
    }

    Hi,
    yes, I've looked at the tutorials. But there is no way to change button title for JOptionPane.showMessageDialog. Only JOptionPane.showOptionsDialog provides you w/ that feature, becuz it provides the parameter in the method.
    I was wondering if there was another way to do this for showMessageDialog.

  • Change button name in a for-loop

    Hi all,
    I would like to implement a 'for loop' to add buttons to my panel depending on the value of max_number.
    The postion of these buttons will also change with each passing of the loop.
    The code below implements this. But when I click the buttons they only return the action listener of the last button drawn. This is because the JButton my_button is reused in each pass through the loop.
    What I need is to change the name of the button on each passing of the loop so that I create a new button each time with it's own unique action listener.
    Is there a way of adding/appending the value of 'i' to the button name each time the for loop is run?
    For example
    When i = 0 -> JButton my_button0 = ...
    When i = 1 -> JButton my_button1 = ...
    etc, etc,
    for (i = 0; i < max_number; i++)
    JButton my_button = new JButton(Integer.toString(i));
    my_button.addActionListener( new ActionListener()
    { public void actionPerformed(ActionEvent event)
    { do something depending on the value of 'i' }});
    addComponent(my_button, (2*i+1) , 4 , 1 , 1); //add newly created button to position x = (2*i+1), y = 4
    } //end for

    What?! Are you talking about the variable name? You can't, shouldn't, needn't use different variable names in a for loop, since the variables "expire" each time the loop is run. For instance:
    for(int i = 0; i < 10; i++) {
       //j doesn't exists even if this loop is on its 10'th lap!
       int j = i;
    }And you will have a problem with the ActionListener as well, since it depends on the "i" variable. "i" can't be accessed from an anonymous class unless it has been declared final, in which case it won't work for you.
    So: the my_button variable will contain a new JButton each time!
    Nille

  • Is it possible to change schema or name of locally built provider in portal

    Is it possible to change schema or name of locally built provider in portal 9.0.4?
    We have built an application as a pagegroup and locally built provider in Oracle portal. We can deploy the application to different portals using transport sets. However, it is not possible to install the same provider twice to a shared portal because a provider's name and schema cannot be changed. Does anyone know of a way to rename and change the schema of locally built providers? I was once told that substition strings at import would be available in an upcoming release to do that, but I haven't seen anything like that.
    Thanks,
    Trenton

    Maybe use a MHT archive.
    *Mozilla Archive Format: https://addons.mozilla.org/firefox/addon/mozilla-archive-format/
    *UnMHT: https://addons.mozilla.org/firefox/addon/unmht/

  • Changes in a name of a SRM user (CP), that are visible in the web interface

    Hello,
    In our SRM user administration is a name spelled wrong. So I changed the name in SU01 and in the organisational plan.
    But the name that is used in shopping carts in SRM, the value in "Central Person", didn't change.
    Is it possible to change the name value of "Central Person" without making a new user object or in other words can I make changes in the name that become vissible in the SRM web-GUI?
    Thanks in advance.
    Jorgen

    Hello Jorgen,
    Make modification in BP transaction too for Business Partner linked to your user ID.
    Regards.
    Laurent.

  • Dynamically changing the file name using the submit button

    I am currently using a submit button to send information to myself from the user of the form. Is there any way to change the name of the file that is emailed as a .pdf file according to some type of parameter or data set that is collected in the form?

    Not programmatically. The attachment wil take the same name as the opened PDF. If you change the name of the PDF then it will change your form name as well. That cannot be done programmatically.

  • Can I change the Caption (name) of the button Go for the dashboard prompt

    Hi,
    Can I change the Caption (name) of the button Go for the dashboard prompt
    I need to change the name of the button to Set Prompt Values.
    i did not see an option to do this
    Thanks

    Hello Yusuf,
    First follow the forum Etiquette, see this http://forums.oracle.com/forums/ann.jspa?annID=939
    You have to close the answered threads...
    And regarding your question
    Go to *{OracleBIDir}:\oraclebi\web\msgdb\l_en\messages*
    Open globalfiltermessages.xml file.
    Find this text
    <WebMessage name="kmsgGFPGo"><TEXT>Go</TEXT></WebMessage>Now edit the Go which is there between the TEXT tags..
    Ex: i am editing Go to Confirm
    <WebMessage name="kmsgGFPGo"><TEXT>Confirm</TEXT></WebMessage>Save this file and just restart your presentation service.
    Check your dashboard prompt now...
    (Editing this post from here)
    As per your requirement edit should be:
    <WebMessage name="kmsgGFPGo"><TEXT>Set Prompt Values</TEXT></WebMessage>Edited by: Kishore Guggilla on Jul 18, 2009 2:45 AM

  • How to change the Domain name of portal

    Hi All,
    We've developed an application using the WDA(Web Dynpro for ABAP) on BI 7.0 and in this we are displaying the BI reports as well. This whole appliaction works fine when we run this on the BI portal 7.0. But when we run it from the Enterprise Portal 6.0
    the reports don't show up and it goes in the never ending loop. After research we found that this is happening because the
    Domain names of the BI portal and the Enterprise Portal are not the same. And as per one of the SAP note the prerequisite for the WDA application to run on the EP portal is to have the same domain name on both the portals.
    Now we are planning to change the domain name on the BI portal.
    Does anyone let me know how and where we need to go and change this Domain name ?
    Thanks in advance for your help.
    Regards,
    Alok Varma

    Hi,
    first step is to configure your DNS server. There has to be a name resolution for portal.domain.tld to your portal server's IP address.
    Right now I don't have access to Visual Administrator, so I cannot check if there is any domain specific configation to be done on the server side.
    As for the SSO between your Portal and WDA: you'll have to recreate the portal server certificates and import it into the ABAP system.
    The Logon Ticket MYSAPSSO2 has to be issued to the new domain by the portal! If not, your browser won't sent this cookie to the BI system and no SSO data will be transmitted to the BI system.
    br,
    Tobias

Maybe you are looking for