Change tab names

Hello to every member,
I am looking to change the name of several tabs in the CIC0 transaction. I know that with the Screen Sequence Control, you can hide, add or change the order of differents tabs but I didn't manage to change the name of the tabs for the moment. Is there a solution to this problem?
Thanks a lot

Hi Matthieu!
You can give transaction CMOD a try - in case the tabs are dictionary-related, this should help.
It's in Goto - text enhancements - data elements or keywords.
Regards,
Christian

Similar Messages

  • Changed Tab name is showing old name some times

    Hi Friends,
    I had successfully changed the enhanced tab name from the screen painter using translation and it also reflected in the transaction.
    When i am going to another tab within the same screen, changed tab name <b>'Safety Inf'</b> is again getting changed to old name <b>'Enhancemnt'</b>. when i go back again to the enhanced tab, again my changed name is coming as <b>'Safety inf'</b>.
    User doesn't like this...
    What could be the reason? any body has idea?
    Regards,
    Satish

    Hi,
    Nobody has any idea about this?
    Regards,
    Satish

  • Changing tab name in one component that used in different applications -FPM

    Hi gurus,
    I have an FPM component configuration, which have different tabs.
    This component i have used in different applications.
    I just want to know how can I dynamically change the name of one tab in different applicatins?
    I want to change only the tab name. content in the tab is same.
    For eg. If I open a Bid from Rfx, it should show "Rfx Information" as one tab name. But if i open a bid from Auction, it should show 'Auction Information'.
    Content in this tab is same.
    Is there any way to do that? Or shall I create different component config. for bid to use in Auction application  and another one for RFx application?
    Thanks,
    Poduval

    Hi, 3Sherill3. This may help:
    http://www.macupdate.com/info.php/id/16620

  • Change tab names in CIC0

    Hello to every member,
    I am looking to change the name of several tabs in the CIC0 transaction. I know that with the Screen Sequence Control, you can hide, add or change the order of differents tabs but I didn't manage to change the name of the tabs for the moment. Is there a solution to this problem?
    Thanks a lot

    Use this code template to find screen exit for a transaction:
    *& Report  ZUSEREXIT                                                   *
    REPORT  ZUSEREXIT no standard page heading                  .
    tables : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
             tables : tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode obligatory.
    select single * from tstc where tcode eq p_tcode.
    if sy-subrc eq 0.
       select single * from tadir where pgmid = 'R3TR'
                        and object = 'PROG'
                        and obj_name = tstc-pgmna.
       move : tadir-devclass to v_devclass.
          if sy-subrc ne 0.
             select single * from trdir where name = tstc-pgmna.
             if trdir-subc eq 'F'.
                select single * from tfdir where pname = tstc-pgmna.
                select single * from enlfdir where funcname =
                tfdir-funcname.
                select single * from tadir where pgmid = 'R3TR'
                                   and object = 'FUGR'
                                   and obj_name eq enlfdir-area.
                move : tadir-devclass to v_devclass.
              endif.
           endif.
           select * from tadir into table jtab
                         where pgmid = 'R3TR'
                           and object = 'SMOD'
                           and devclass = v_devclass.
            select single * from tstct where sprsl eq sy-langu and
                                             tcode eq p_tcode.
            format color col_positive intensified off.
            write:/(19) 'Transaction Code - ',
                 20(20) p_tcode,
                 45(50) tstct-ttext.
                        skip.
            if not jtab[] is initial.
               write:/(95) sy-uline.
               format color col_heading intensified on.
               write:/1 sy-vline,
                      2 'Exit Name',
                     21 sy-vline ,
                     22 'Description',
                     95 sy-vline.
               write:/(95) sy-uline.
               loop at jtab.
                  select single * from modsapt
                         where sprsl = sy-langu and
                                name = jtab-obj_name.
                       format color col_normal intensified off.
                       write:/1 sy-vline,
                              2 jtab-obj_name hotspot on,
                             21 sy-vline ,
                             22 modsapt-modtext,
                             95 sy-vline.
               endloop.
               write:/(95) sy-uline.
               describe table jtab.
               skip.
               format color col_total intensified on.
               write:/ 'No of Exits:' , sy-tfill.
            else.
               format color col_negative intensified on.
               write:/(95) 'No User Exit exists'.
            endif.
          else.
              format color col_negative intensified on.
              write:/(95) 'Transaction Code Does Not Exist'.
          endif.
    at line-selection.
       get cursor field field1.
       check field1(4) eq 'JTAB'.
       set parameter id 'MON' field sy-lisel+1(10).
       call transaction 'SMOD' and skip first   screen.
    Best Regards,
    Pratik Patel
    <b>
    Reward with Points!</b>

  • Change tab name

    How do I change the name od a tab?

    I don't know of a way to do this on Firefox for Android. An extension could do it but to the best of my knowledge there is no such extension.

  • Screen Exit .. Change tab name.. IMP.

    Hi,
    Can any one please let me know, from where to change the tab name in a screen exit.
    When I activate the exit, a new tab is added in the tabstrip control, I have designed the layout, but from where I can put the desired name in the tab.
    Thank you in advance.
    Best Regards,
    Sandipan

    Hi Sandipan,
    I'm trying to do the same. Did you find a solution to this?
    Cheers,
    Amy

  • Changing Tab Names in  ME21N

    Hi All,
    I need to change tabstrip labels in ME21N, ME22N, ME23N on standard (delievered) tabs Additional Data & Communication.
    I have a dedicated system and therefore freedom to change delievered objects. Does anyone know where in the config/code the tabstrip labels in ME21N reside?
    Thanks,
    Roman

    Look at the text element for the program SAPLMEGUI in se38 (Goto -> Text elements -> Text Symbols).
    <b>H03     Communications data
    H09     Additional data</b>
    Make the changes to those text elements and the name of the tabstrip will change.
    Cheers!
    Rishi

  • Changing tab names on tabbed pane

    Hi all,
    just wondered if anybody knows how i can change the text that appears on my tabs in a jtabbedpane. So far I only have tab1, tab2 etc and I cant seem to find how to change this.
    Thanks alot

    just wondered if anybody knows ...Have you tried to find out by reading the API docs?
    {color:0000ff}http://java.sun.com/javase/6/docs/api/javax/swing/JTabbedPane.html{color}
    Read the method descriptions and tell us if you found anything you could use.
    db

  • Changing Tab Name in Standard Transaction

    Hi
    I have an urgent requirement to change the tabname in transaction <b>iw3k</b>. The standard program for the same is <b>SAPCLOIH</b>. Actually when i go to iw3k the tabname shows ENHANCEMENTS, but when i click on that tab, on the next screen the same tabname changes to REQUIREMENTS. Now i want to change the tabname ENHANCEMENT to REQUIRMENTS(as in second screen).
    Please tell me the screen number, where i could make changes.
    Provide urgent help. Useful ans will be rewarded.
    Regards
    Aarti

    Hi
    I have an urgent requirement to change the tabname in transaction <b>iw3k</b>. The standard program for the same is <b>SAPCLOIH</b>. Actually when i go to iw3k the tabname shows ENHANCEMENTS, but when i click on that tab, on the next screen the same tabname changes to REQUIREMENTS. Now i want to change the tabname ENHANCEMENT to REQUIRMENTS(as in second screen).
    Please tell me the screen number, where i could make changes.
    Provide urgent help. Useful ans will be rewarded.
    Regards
    Aarti

  • Changing tab name dynamically

    Hi All
    i've four tab pages in a portal page and i want to change the labels of these tab pages dynamically taking data from table.
    for example i've a table named TAB_TITLES with thest columns TAB_ID,TAB_NAME
    there are four rows
    TAB_ID TAB_NAME
    1 Tab-1
    2 Tab-2
    and so on
    i want to read values from this table and put the tab label in oracle portal page having tabs.
    thanks

    So .. ?
    You should have some expression of problem, information of your attempt, question about something or request for help. I do not see anything in this message like this, although it is also posted twice for no reason.
    so help others in assisting you my friend; or otherwise help yourself!

  • Change Custom tab names in Me21n

    Hi
       We have written a screen exit to create a new custom tab in Header data of Me21n. Can anyone has any idea of changing the name of this tab - By default it is coming as 'Customer Data'.
    Appreciate help on this
    Thanks
    bpr

    hi,
    Changing Tab Names in  ME21N
    Re: change tab names
    open the links and they may help you......give a try....
    Regards,
    Praveena.

  • Change the name of custom tab in me51n / me52n / me53n

    Hi,
    I have to add a few custom fields in PR item of  transactions me51n / me52n / me53n. I have used the enhancement MEREQ001 for adding the custom fields. The sytem automatically creates a custom tab with the name Customer Tab for the additional fields that I have added using the enhancement MEREQ001 while displaying in me51n / me52n / me53n.
    Now I have a requirement to change the name of the custom tab created for transactions me51n / me52n / me53n from Customer Data to Others.
    Can anyone suggest me how to go about doing this???
    Thanks in advance.
    Abhisek.
    P.S.:- Points will be be duly awarded 4 helpfull answers.

    Hi,
    I tried doing whatever you had suggested but it seems that it is not working.
    Could you suggest some other way to do this?
    Thanks and regards.
    Abhisek.

  • Tab Name Change

    Hi,
    How to change the tab name of a tabstrip in transaction <b>'crmd_order'</b>.
    Regards,
    Suraj.

    Hi ,
    First check the program name . Go to Se51 and select the program name , select screen number 0014(for me23n) and layout editor radio button then go to display ...from there u can change the description .
    Thanks
    Dipak

  • Want to change customer enhancement tab name in CJ20N

    Hi Friends
    As per our requirement, we have created customer enhancement tab in CJ20N (project definition level).
    It shows the name as cust.enhancement, but as per our requirement we want to change the tab name.
    But we are not able to change that.
    if anybody come accross this type of scenario, kindly let me know.
    Thanks
    Gowrishankar
    Edited by: gowrishankar p on Mar 30, 2010 1:26 PM
    Edited by: gowrishankar p on Mar 31, 2010 9:39 AM

    Hi mithilesh,
    we can do it. but it may need access key. Find out the screen number and program name.
    Go to se51 and input the program name and screen number then select Layout ->display.
    click on that tab, move change mode then give the text what do you want.
    Give Points if useful.
    Regards,
    Jogesh.Mutyala

  • 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>

Maybe you are looking for

  • Problem with dynamic LOV and function

    Hello all! I'm having a problem with a dynamic lov in APEX 3.0.1.00.08. Hope you can help me! I have Report and Form application. On the Form page i have a Page Item (Popup Key LOV (Displays description, returns key value)). When i submit the sql cod

  • How can I get rid of a corrupt iCloud iPad backup?

    I have a backup of my iPad 3rd genereation in my iCloud account. Every time I attempt to delete it from either my mav, iPad, or iPhone, i get the following message: "Cannot delete backup. This backup cannot be deleted because it is in use." I have tr

  • IS-H Events for Patient Change

    Hy all! My external application needs to be informed by IS-H in case of new patients or patient change. Are there such events available in IS-H? If yes: How can I configure such events? What interface has my application to provide? Thanks in advance!

  • Which providers support SPA9000?

    Which poviders are currently allowing SPA9000 to use their service? I am on vonage right now, but need auto attendant and better features for our very mobile and semi virtual office. Also, can a Vonage provided PAP2 or Router PAP (both LinkSys) be co

  • How many AP will wlc 5508 support in HREAP Groups?

    Hi, I have a new deployment of 44 3502i AP's in 3 buildings at one of my campus'. The 5508 wlc is running latest 7.0.116.0 code. I have some users who take their work with them as they go from location to location on this campus. They need to be able