How to change label of tab 'Customer data' in transaction ME53N

Hi,
I need to change the label of tab 'Customer data' in transaction ME53N.
Please help me.
Thanks!!!
S.

Hi Sebastiano,
having the same requirement, I found this solution in some older postings: You must add a new Text symbol to the main program (which is SAPLXM02 for ME51N / ME52N / ME53N) of the customer-subscreen in order to rename the customer data tab in these Transactions.
Try the following steps:
1. call Tx SE38
2. open Program SAPLXM02
3. from the menu, call Goto->Text elements->Text symbols
4. Add a new Row for the subscreen dynpro you want to rename (e.g. dynpro 111 for item details in ME51/ME52N/ME53N), with Sym = dynpro number (e.g. 111 for item details) and Text = your new tab name
5 save & activate
This basically works the same for Transactions ME21N / ME22N /ME23N customer tabs, just open Program SAPLXM06 instead and follow the above steps.
Note: if you develop in multi-language environment, you might have to translate the text symbol.
I hope this helps.
Rudi
refer to:
[http://forums.sdn.sap.com/click.jspa?searchID=32160998&messageID=6937865|http://forums.sdn.sap.com/click.jspa?searchID=32160998&messageID=6937865]
[http://forums.sdn.sap.com/click.jspa?searchID=32160998&messageID=6147389|http://forums.sdn.sap.com/click.jspa?searchID=32160998&messageID=6147389]

Similar Messages

  • How to change the text of customer tab in Me23n

    Hi
    I have added new customer tab in Me23n at item level.
    Its text is Customer Data.
    I would like to change to some other text.
    How to change the text of customer tab in Me23n
    Regards
    Amruta

    Amruta,
    I had the same query today and finally found the answer.
    In order to change the title text or description of the "Customer Data" tab in ME23N, etc. you need to define a new text symbol in program SAPLXM06. The text symbol must be number 111 for the PO data. Make sure you define this text symbol in the language you are using when viewing the PO. I had issues with this as the original language of object SAPXM06 is not my logon language.
    The standard code which picks up this text is in function module MEGUI_BUILD_PO_ITEM_PLUGIN. I could not find any documentation around this functionality.
    Hope this helps!
    Ben

  • How to change label in charts in CRM 2013

    I want to change x-axis and y-axis label in chart. Please guide me how to change label in chart.

    http://mscrmninja.tumblr.com/post/15553130574/changing-chart-axis-titles-in-crm-2011
    My blog: www.crmanswers.net -
    Rockstar 365 Profile

  • How to change label in pagination scheme?

    How to change label in pagination scheme? I need to translate "Next" and "Previous" into my native language.
    Regards,
    Kostya

    Hi Kostya,
    see http://download-west.oracle.com/docs/cd/B31036_01/doc/appdev.22/b28550/global.htm#CHDJFHBD and Translation and NLS in APEX
    Hope that helps
    Patrick
    Check out my APEX-blog: http://inside-apex.blogspot.com

  • How to rectify the errors in master data loads & transactional data loads?

    hy,
    please any one tell me
    How to rectify the errors in master data loads & transactional data loads?
    thnQ
    Ravi

    Hi,
    Please post specific questions in the forum.
    Please explain the error you are getting.
    -Vikram

  • How to add a New Tab in Business Partner Transaction

    Hi Friends,
    Please help me out to "How to add a new Tab in Business Partner Transaction?
    Regards,
    Ricky

    Hi Rajendra,
    It will be gratefull to have some EEWB docuement.Can you please forward me ?
    Regards,
    Ricky
    Edited by: Ricky Maheshwari on Dec 21, 2009 6:51 PM

  • How to change the name of Customer  Tab strip .

    hi
    For Tcode ME21N ME22N and ME23N I have added a screen exit to PO header tabstip .The name that is appearing is "Custumer data "  as tab stip text , i want ot change this tab strip name. can u please suggest me how to do it.
    Below are the details.
    function group:MEGUI
    screen :1102
    Reagrds
    Avik

    Hi Avin,
    you must have created a project in CMOD for this enhancement.
    Go to the same project in CMOD.
    Select Componenets radio  button on cmod and go inside.
    you will find Menu exit option on the coponenet screen.
    double click on function code like +Co1( in prod order) and enter function text as your desired name instead of customer data. save the same and activate the project.
    it should make required chnages.

  • How to change Labels of Fields in the search help shown as F0001 F0002 etc

    Dear All,
    For one of my fields of screen I have been calling a search help configured using F4IF_INT_TABLE_VALUE_REQUEST.
    In this function I am returning the field in dynfields. Let me know please how to change the Labels of Field Names being shown in the search help as F0001, F0002 etc....
    Regards,
    Alok.

    Hi Alok,
    You can change the Field Label by going to the Data Element and changing the Field Label .
    Hope this helps
    Regards
    Sunil

  • How to get planning function in customized data slice?

    Hi all,
    we are using a customized data slice which implements IF_RSPLS_DATASLICE. Now we have the requirement that the data slice only protects the data when it calls via query. The data slice will not protect data if a planning function is executed. How can we implement this requirement? Is it possible in the method IF_RSPLS_DS_METHODS ~ IS_PROTECTED to read this information from an instance of the planning function (CL_RSPLS_CR_CONTROLLER?) or the buffer or something else? Or can we find some information about the query?
    At the moment we only check if a planning sequence is called by a process chain. This works fine
    IF sy-batch IS NOT INITIAL.
        e_noinput = rs_c_false.
        EXIT.
      ENDIF.
    Thanks for your help!

    Hi,
    I think this topic was already discussed in this forum.
    By design, it should not matter whether a query or a planning function is not allowed to change records. This is what data slices were designed for.
    OK, you need a different behaviour.
    1. Maybe you can detect from the planning function filter or query filter whether you run function or a query. If this is the case use the method IS_OVERLAPPING of the data slice. There you get the filter as a I_TSX_SELDR or as a range table when you call SELDR_TO_RANGE. When you return r_is_overlapping = rs_c_false. the data slice will not be called.
    2. Another option is to call the factory of the data slice and to use a flag in the data slice that indicates that the data slice is used in the context of a planning function. The factory method is GET_INSTANCE. Set a break point there to find out how the system calls this method. But when to call the factory? Check note 1101726. This note provides infrastructure to change the filter of a planning function at run time. But you can use this exit to call the factory method mentioned above. The nice thing is that you can raise the excpetion EMPTY in the exit, thus the function will not be called. So use a planning sequence with dummy1, your function, dummy2. For dummy1 switch on flag on, raise EMPTY, dummy1 will not be executed (almost no run time is needed), then 'your function' will be called (do nothing in the exit', then function dummy2 will be called, here switch the flag off again.
    Check also the following link where the above technique is used to for the conditional execution of planning functions:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/a0785271-1446-2d10-6987-d1e44f08e97c
    Regards,
    Gregor

  • How to change Labels of Fields being shown in the search help as F0001 etc.

    Dear All,
    For one of my fields of screen I have been calling a search help configured using F4IF_INT_TABLE_VALUE_REQUEST.
    In this function I am returning the field in dynfields. Let me know please how to change the Labels of Field Names being shown in the search help as F0001, F0002 etc....
    Regards,
    Alok.

    Hi Alok,
    You can change the Field Label by going to the Data Element and changing the Field Label .
    Hope this helps
    Regards
    Sunil

  • How to change validity from.. to dates in cost centre(production) ?

    Dear All,
    We have created cost centre(production) on current dates ? Due to this,
    We were unable to maintain activity price for work centre.
    Message is telling us to maintain activity price for current fiscal year.
    How to change validity from date in production cost centre(KS02) ?
    Appreciate valuable inputs.
    Jeyakanthan

    Dear ,
    1.Go to Transaction Code KS02 - change cost center and in the next screen go to Menu bar > Edit > Analysis Period.This will pop up another window - in this you can change the analyis period and save it.
    2.Or Use the tcode OKEON from the hierrachy choose the cost center in the basic data tab u will see one button named Validity period.Change the validity there.
    3.You can do it using 'KSH2' transaction.Open the hirarchy and select your cost center. now select the business area and new hirarchy node where you want to move it. and click on 'INSERT AT LOWER LEVEL' to move the cost center from one business area to another.
    Try and check
    regards
    JH

  • How to change dispaly format of Due Date in BPA Invoice Template (11.5.10)

    Hi,
    I've modified the Invoice Template through template management in Bill Presentment Architecture (BPA). I copied the default layout and made the format changes, added our company logo etc. The only thing that I'm unable to do is change the format of the date Content Items like Billing Date and Due Date (TERM_DUE_DATE). Does anybody know how I can do that.
    Thanks for your help
    -Asif

    Jassing,
    Thank you for the hint about preferences. I didn't think about that.
    The date formats are suppose to follow the format setup in personal preferences. But it turns out that there is a bug that just the 'Due Date' in BPA Invoice template is not following that. The other dates are displaying according to the format in preferences. So we'll be applying a patch to fix it. Hopefully that will fix it
    Asif

  • How to change title of Employee Master Data form (in add-on creation) in SAP B1 9.1?.

    Hi all,
    I have a problem of how to change title of my add-on in SAP B1 9.1.
    I created the add-on of Employee Master Data but I want to change its title, is it possible?
    When I change the title as (Member Master Data) in property, it will display Employee Master Data again.
    If it is possible to change it, how can I do?
    Please anyone can help me.

    Hi,
    Try this:
    If pVal.FormType = 60100 AndAlso pVal.EventType = BoEventTypes.et_FORM_LOAD AndAlso pVal.BeforeAction = False Then
      Dim oForm As SAPbouiCOM.Form = DirectCast(oApplication.Forms.GetForm(pVal.FormType.ToString(), pVal.FormTypeCount), SAPbouiCOM.Form)
      oForm.Title = "New Title"
    End If
    Or you can try:
    If pVal.FormType = 60100 And pVal.EventType = BoEventTypes.et_FORM_LOAD And pVal.BeforeAction = False Then
         Dim oForm As SAPbouiCOM.Form = CType(oApplication.Forms.GetForm(pVal.FormType.ToString(),pVal.FormTypeCount), SAPbouiCOM.Form)
    oForm.Title = "New Title"
    End If
    Hope it helps.
    Thanks & Regards
    Ankit Chauhan

  • How to change the HTML/XML test data to test my_abap_proxy in SE80?

    Hello,
    I am trying to test my_abap_proxy in SE80 by usng a HTML/XML file of my desk top, the test data is as below
      <LoadingDate>20110422</LoadingDate>
      <DocumentDate>20110422</DocumentDate>
      <SDDocumentCategory>G</SDDocumentCategory>
    so on.......
    Now, i want to change the Loading date in this test data, so, i tried after Loading file in Test Service Provider screen of my_abap_proxy of SE80, but i could not make change ANY data in this test data, pls. let me know how to change the data?
    Thank you

    Hello ABAP_SAP_ABAP ,
                                          Youneed to select the option "generate template data " and then on the displaying template there you will see the option for editing in the top left corner toolbar.
    Then after editing you can do a XMl syntax check and test your proxy.
    Hope this helps.
    Thanks,
    Greetson

  • How to change open file dialogue box date format

    Hi - I can't find how to change the date format whenever I open any creative suite document - my system preferences are set to dd/mm/yy and every other application shows this date except for CS4 it shows mm/dd/yy. Can anyone help please. Much appreciated.

    Hi, I'm having the same problem with the date format - all Creative Suite 'open' menu items are showing US format mm/dd/yyyy rather than UK format dd/mm/yyyy... although everything else on my system is set for UK format and all other programs open properly. The strange thing is: I'm sure this has only just happened after years of using Creative Suite... I'm sure I would have noticed it before. I'm on CS3 so haven't had any recent updates that might have affected it.

Maybe you are looking for

  • Probook 4510s will not boot

    I have a Probook 4510s that I got from work.  I ordered the original CD's and loaded the OS and drivers.  I was getting it set up for my church and had all the software installed.  I wanted to remove the Credential Manager so that there wasn't 2 icon

  • Help ! Package and ArrayStoreException

    Please help. I have a problem with a package program. I am creating a package called pack containing 2 classes, Expenses with m_expense( ), Expenses have variables to store food, lodging and clothing and class Income with m_Income( ), Income have var

  • Macbook pro freezes

    My macbook pro have been freezing on my recently. It started wtihin two weeks after setting up regularly scheduled back-ups using superduper. It seems to happen when I'm using the internet. My browser is Firefox. Any suggestions?

  • Report Help -- use of Data link

    Hi I need help in creating a report(d2k) using datalink .. My report version is :10g DB is oracle 10G I have parent table dept : table dept dname loc 10 acc Bombay 20 Res Hyderabad 30 Sales Delhi Emp table empno ename sal deptno 1 a 300 10 2 c 100 30

  • MUDE for client-server configuration

    I can easily connect from a client remotely to a server hosting OBIEE, by creating a ODBC system DSN that points to the server, and choosing this DSN from the list of available DSN from Administration => file => open => online. works perfectly When I