Want to change the name of the tab

Hi All,
I want to add a new tab at Header level for sales transaction  using transaction EEWB. However it will always have the name as 'Customer fields'. I want to change the name of the tab in SAP GUI not in PCUI.
Thanks for your help,
Regards,
Smruti

Hi,
Use the badi "MB_MIGO_BADI".  See the sample code & BADI documentation for reference.
Regards
Vinod

Similar Messages

  • I wanna change the tab name in tcode ie02  :)  i'll give u points !!!

    Hi abapers,
    In screen ie01 i want to change the tab name, like instead of general, i want to put some other.
    If it is possible, do help me.
    <b>I ensure u for giving ur share of point.</b>
    Regards,
    [email protected]

    Hi Pradeep
    I am giving here the names of the exits for this transaction ie01
    You will have to customize one of the exits according to your req.
    Exit Name           Description
    IEQM0001            Add. checks for equip. installation at functional locations
    IEQM0002            Additional checks for definition of equipment hierarchies
    IEQM0003            Additional checks before equipment update
    IEQM0004            Object is allowed for contract partner (Order->MaintCont.)
    IEQM0005            Object allowed for SD contract (MaintContract->MaintCont.)
    IEQM0006            Object allowed for SD contract (Maintain maintenance cont.)
    IEQM0007            Check/change manufacturer field in equipment master
    Thanks & regards
    Ravish Garg
    <b>REMEBER REWARD POINTS IS THE BEST WAY TO SAY THANK YOU</b>

  • Want to change the Background Color of Selected Tab

    Hi All,
    I want to change the Background Color of Selected Tab of the tabstrip visible in Content Admin Role (Browse, Overview etc.).
    I have changed the Background Color of Selected Tab - Tabstrips-Complex Elements through Theme Editor, but that did not take effect.
    Only the other webdynpro components tabstrips took effect.
    Regards,
    Vishal

    Hi Andre,
    I don't know if you have already figured out how to change the background color of the tabstrip, but I will explain how we have done it.
    You might have tried to change the background color in "Tabstrip" (under the menu "Complex Elements") in Theme Editor. When you change the property "Background color of selected/unselected tabs", this will not change the color of the images on the tabstrip (ex. the triangle on the side of the tab). These images are on the server. We copied these images and then made changes to them, before we uploaded them again through the Theme Editor.
    The path to find the images is /usr/sap/~/JC01/j2ee/cluster/server0/apps/sap.com/irj/servlet_jsp/irj/root/portalapps/com.sap.design.urdesigndata/themes/portal/the name of your theme/common/tablist
    If this didn't work for you, you might have to change the properties in "Pattern Containers" (under Complex Elements") in Theme Editor. The tablist properties are under the header "Tab Container".
    I think it should work for you then. We also found that there was some problems when we tried to view the changes in Firefox, but haven't figured out how to solve this.
    /Ellen

  • Want to change the skin of tab , where i need the Graident mix to be used .

    Hi
    1. want to change the skin of tab , where i need the Graident mix to be used ... is it possible ?
    2. how to use Cool Animations( Fading of Old Panel to New Panel) while switching to next tab.

    Click the heading of the left-most column of numbers in order to reveal the current Play Order. When sorted on this column you can drag tracks up or down the list.
    When using another heading for sorting you can right-click on the playlist name and click Copy to Play Order to set an initial order which you can then manually refine.
    tt2

  • My MacBook Pro keeps making copies of a document that I am trying to save. I don't want to duplicate the file. I only want to save it on both my hard drive and my external hard drive. I do not want to change its name for every save, which the computer see

    My MacBook Pro keeps making copies of a document that I am trying to save. I don't want to duplicate the file. I only want to save it on both my hard drive and my external hard drive. I do not want to change its name for every save, which the computer seems insistent on doing. Help!!

    11lizzyp wrote:
    can't be saved because the file is read-only.
    I did not create the file to be read-only. I created to be able to continue to add to it as I work on it.
    More on versions here:
    http://support.apple.com/kb/ht4753
    local snapshots:
    http://support.apple.com/kb/HT4878
    Sounds like a permissions problem ie read only.
    If running repair permissions from your DiskUtility.app does not sort it,
    Someone should jump in here with erudite and concise fix.

  • HT4437 I have a Pioneer VSX-1012-K and i want to change the name of it on my iphone to something elce. Is there any way i can do this.

    I have a Pioneer VSX-1012-K airplay amp and I want to change the name of it when i am using AirPlay. Is there any way i can do this?

    If it is showing off line, either the battery is dead, the SIM has been removed or the iPhone has been restored. Report it to you carrier. Some offer blacklisting. You can also send a remote wipe to the phone via iCloud. There was also the option to send you an email if the phone is located when you were in Find My iPhone. Report it to law enforcement, change the passwords on all accounts that were on the device. Did you have a passcode on it?

  • OK so I just made a wireless network and using the apple box or whatever. And I want to change the network name. How do I do that?

    OK so I just made a wireless network and using the apple box or whatever. And I want to change the network name. How do I do that?

    Just want to confirm that I am also having this issue, The connection is fine, and it is in fact charging (@ 100%)
    Everything Rick has said is like an echo to what is happening to me.
    I have tried re-installing iTunes, and restarting the Bonjour service, sadly there is no change.
    earlier before i updated iTunes it recognised my iPod but said that I had to update iTunes in order for it to work.
    So i updated iTunes but now it's not even showing the device anywhere.
    In case this helps:
    OS: Windows 8.1
    iTunes version: 11.3.1.8
    Device: 5th generation iPod touch 16GB with ios 7

  • Lightroom 6 is up and running.  Upgraded from LR5.  However I want to change the file name to be more generic, e.g., description in LR5 references LR5 and I want to change that to just John G's LR Catalog/Library.lrcat.  How can I accomplish this without

    Lightroom 6 is up and running.  Upgraded from LR5.  However I want to change the file name to be more generic, e.g., description in LR5 references LR5 and I want to change that to just John G's LR Catalog/Library.lrcat.  How can I accomplish this without fouling everything up?

    Ok, well you'll need to do something like this. Now this part is a little dependent on your database server:
           try {
                Class.forName("org.gjt.mm.mysql.Driver").newInstance();
                Connection c = DriverManager.getConnection(
                                                           "jdbc:mysql://{database-server}/{database-name}:3306?user={username}&password={password}");
                Statement Stmt = c.createStatement();
                int count = Stmt.executeUpdate(cmd);
                if(count>0) {
                     System.out.println("count: " + count);
            } catch (Exception e) {
                e.printStackTrace();
        }That was some sample code for a MySQL database.
    Note that the applet can only contact the server that is was loaded from, so you might want to do a getCodeBase() or something like that to get the server address.
    Hope this is helpful.

  • I want to change the question order in my form, using TAB

    Hi,
    I'm trying to build a form in Adobe livecycle designer and I want to change the order of questions:  I want users to press TAB to switch question, but I have 2 columns and pressing Tab always brings me from left to right, then second line, I want second line until the end of the column and then change to right.....
    Example of what is the situation now:
    Header 1
    Header 2
    Question 1
    Question 2
    Question 3
    Question 4
    Question 5
    Question 6
    Question 7
    Question 8
    Example of what I want:
    Header 1
    Header 2
    Question 1
    Question 5
    Question 2
    Question 6
    Question 3
    Question 7
    Question 4
    Question 8
    Thanks for you help!

    Hi WWRACHELB,
    Try using custom order of fields in 'TAB Order' (window--> Tab Order) if that solves your problem.
    Regards,
    Ratnesh

  • I've bought three new ipod products and want to change the name of my old ipod when i plug it into my laptop. how do i do this

    When you plug your ipod into the computer it's name comes up. ie bill's ipod. How do you edit the name. I've recently bought some new ipods and want to change the names of my old ones.

    Double click the iPod under Devices in the source list on the left side of the iTunes window then type in a new name.

  • I just want to change the name of my network. no other settings?

    I just want to change the name of my network. no other settings?

    We can likely help, but we do not know what device that you are asking about....or....what version of AirPort Utility that you have on your computer.
    (Normally, we would know things like this, but our crystal ball is broken).

  • I bought an iphone and i want to change the billing name.

    i bought an iphone and i want to change the billing name.
    i want the billing name will be to: vahdat yehoshua'a.
    is it possible to send me a new receipt?
    thank you.

    Contact your Carrier Telco. If you are wanting to change the name on the purchase receipt then that cannot be done. Only a thief would attempt that, so I hope that is not what you are suggesting
    Pete

  • HT5620 I want to change the email address to which all the reset security information (emails) go to. But I cannot see that email address in the list when I click on the 'Name, ID and Email Addresses' section.

    I want to change the email address to which all the reset security information (emails) go to. But I cannot see that email address in the list when I click on the 'Name, ID and Email Addresses' section.
    How can I change it when I cannot view it on my account. I am not even sure how this got setup.

    If you mean your rescue email address, it's in the Passwords and Security section, after you answer the two security questions.

  • TS4002 when I was assigned my ".me accounts.... I used the name of the company that I worked for. Then I received a iCloud account.  The problem is I want to change the two original names but can't because they're greyed out.  Is there anything I can do?

    When I was assigned my ".me accounts I used the name of the company that I worked for. Then I received a iCloud account.  The problem is I want to change the two original names but can't because they're greyed out.  Is there anything I can do?
    Thanks in advance,
    Majormidi

    http://discussions.apple.com/thread.jspa?messageID=3366422
    Odd, the link works for me.
    -mj
    [email protected]

  • I want to change the page a new tab opens to. I am only getting "Yeppo" no matter what I do. I will permanently movve to Chrome if this cannot be fixed.

    I am able to set my homepage, but not the new tab. I want to change the new tab to my homepage. Right now, it only opens to Yeppo. If this cannot be fixed, I will be forced to permanently move to Google Chrome.

    Firefox is highly customizable, you can make Firefox 4 look and behave more like Firefox 3.6, for details see http://redherring2.wordpress.com/2011/01/17/firefox-4-restoring-firefox-3-ui
    The search option is at the top of this page, or for advanced search use https://support.mozilla.com/en-US/search?a=2

Maybe you are looking for