Re-Naming Custom Tabstrip(Subscreen) in ME53

Hi
I have activiated a new custom tab in me53 for additional fields using the customer exit. I used the standard screen SAPLXM02-0111 to define the fields.
But the Tabstrib name is displayed by defauly. I want to change the name of the custom tabstrip. I have checked the tabstrip control all the tabstrips are defined dynamically through program.
Can anyone let me know where can i change the tabstrip name for the custom tabstrip included in the Item view.
Regards
Prasath

Ask abaper to help..
Always use Copy of standard for new tab pages.

Similar Messages

  • Select-Options on a Tabstrip Subscreen on a REAL Dynpro

    Hello,
    i ve the following problem:
    I have a Report with a normal selection-screen and a call screen 100 after that.
    That Dynpro 100 itself is a Tabstrip-Control. And on one of the Tabs i need to place some Select-options fields ( and a pushbutton + an alv, which shows the result of the selection, but thats not a problem).
    The Problem i think is, that a Tab itself is a subscreen. not a "real" dynpro. i tried to place a subscreen control on that tab ( subscreen in a subscreen dynpro ) and define a selection screen as subscreen. but it s not being displayed.
    selection-screen begin of screen 0888 as subscreen.
    selection-screen begin of block s01 with frame title text-s01.
    select-options: s_mrbe for eedmsettlunit-settlunit.
    selection-screen end  of block s01.
    selection-screen end   of screen 0888.
    in dynpro logic:
    PROCESS BEFORE OUTPUT.
      MODULE status_0222.
      CALL SUBSCREEN:
        subscreen5 INCLUDING sy-repid '0888'.
    PROCESS AFTER INPUT.
      MODULE user_command_0222.
        call SUBSCREEN subscreen5.
    maybe you can help
    Moderator message : Duplicate post locked. Continue with the thread - [Select-Options on a Tabstrip Subscreen on a REAL Dynpro|Select-Options on a Tabstrip Subscreen on a REAL Dynpro;.
    Edited by: Vinod Kumar on Jun 15, 2011 2:02 PM

    Hello,
    Your problem is to show a subscreen selection-screen on another subscreen, right?
    It works for me:
    1. Copy DEMO_DYNPRO_TABSTRIP_LOCAL report.
    2. Add your own subscreen selection-screen:
    SELECTION-SCREEN BEGIN OF SCREEN 9001 AS SUBSCREEN.
    .. SELECT-OPTIONS: p_sel FOR ok_code.
    SELECTION-SCREEN END OF SCREEN 9001.
    3. Call your subscreen 9001 on screen 100
    PROCESS BEFORE OUTPUT.
      MODULE STATUS_0100.
      CALL SUBSCREEN: SUB1 INCLUDING SY-REPID '9001', "<---
                      SUB2 INCLUDING SY-REPID '0120',
                      SUB3 INCLUDING SY-REPID '0130'.
    PROCESS AFTER INPUT.
      MODULE CANCEL AT EXIT-COMMAND.
      CALL SUBSCREEN: SUB1,
                      SUB2,
                      SUB3.
      MODULE USER_COMMAND.

  • ALV grid on TABSTRIP- Subscreen

    Hi,
    How to display ALV grid screen on Tabstrip- Subscreen.
    Please send sample code.
    Thanks in advance.
    -Mohan

    Its not going to be different that what you do on a normal screen. I am assuming that you are using OO ALV control.
    Here you do this on the sub screen instead of the main screen. Take a look at my weblog.
    /people/ravikumar.allampallam/blog/2005/06/01/alv-reporting-using-controls--part-i
    regards,
    Ravi
    Note :Please close the thread if this resolves the issue

  • Calling a Tabstrip subscreen from subscreen.

    hello to all,
    i want to know whether it is possible to place tabstrip control in a subscreen of the main screen in Dialog programming
    .if yes then how to call the subscreen of the tabstrip .
    for ex:i hv Main screen no.201  as noraml screen and in that i hv Subscreen Area in that i wanted to call Subscreen hving no. 1001,and in that 1001 subscreen i hv placed the tabstrip control.
    know in PBO of 201screen  i hv called the subscreen 1001 in the subscreen<area>.
    but from where should i call the tabstrip subscreen from ?
    so plz help me by providing some code etc.
    thanks,
    shikha

    It`s possible:
    refer SAP Help for documentation on this one:
    http://help.sap.com/saphelp_sm32/helpdata/EN/d1/801bd2454211d189710000e8322d00/content.htm
    Neha

  • Cannot find online manual named "Customizing FrameMaker"

    A note in the Use Status Bar Controls topic of FrameMaker's Help says that I can customize FrameMaker's zoom settings and that more information is available in an online manual named "Customizing FrameMaker" on the Adobe website.
    I searched on Customizing FrameMaker, both with and without quotes, on the website's main page. Without quotes, of course, the search returned so many hits that I did not look at more than the first two or three pages. It wasn't there. With quotes, the search did not find such an online manual.
    However, the searches did turn up several other documents that also referenced this manual. From the URLs, it seemed that the manual is on the developer forum, where I went next. I searched and scrolled all around in FrameMaker's developer forum without seeing any mention of a manual named Customizing FrameMaker.
    I have given up. Adobe has managed to hide this manual so successfully that it is completely beyond my miserable ability to locate it.
    Could anyone on this forum please tell me whether the manual exists or whether its reference in the Help is just another mistake in a document already full of them?
    I only wish I could swear eloquently enough to express even a part of my disgust and contempt for Adobe and all its works.

    Try here:
    http://help.adobe.com/en_US/FrameMaker/8.0/customize_frame.pdf
    I found it by doing a search for customizing framemaker in the FM9 > Help > Help Topics with the radio button to Include Community Results set. It was the first on the list.

  • Changing Customer Tabstrip Tab in ME53N

    Hi,
    Has any way to change text in customer tabstrip in ME53N?
    I found this tread but the awnser was not clear.
    Changing Customer Tabstrip Tab in ME53N and ME23N

    Resolved.
    How to change label of tab 'Customer data' in transaction ME53N
    I has tried but my problem in language. I adjusted language and work.
    Thank's all!

  • How to attach a tabstrip/subscreen to a splitter control/custom container

    HI gurus,
    Can any one tell me how to add a subscreen/tabstrip to a splitter control in module pool?
    thanx
    Sukriti.....

    https://forums.sdn.sap.com/click.jspa?searchID=21171605&messageID=6879255
    similar thread.

  • Select-options in tabstrip subscreen

    Hello
    I am developing a report in which i have the following components,
    Report first calls a main screen 100 which will display a Tabstrip.The first tab in the tabstrip has a subscreen 111 to display the selection screen.
    Now i need to have select-options in this subscreen 111. I think the only way to have the select-options is by programming a selection-screen with screen number 222 and call this in the subscreen 111.
    I am able to see the select-options, But the issue is, the value of the select-options are not getting passed to the program.They seem to be blank.
    Did i miss any step or is anything wrong? Your help please.
    Thanks
    Subha

    Hi,
    The issue in my case is the selection-screen is not called directly by a main screen in a report program. The selection-screen is present in a tabstrip control subscreen. So the flow is, report calls a main screen -> main screen contains tabstrip control -> first tab of tabstrip has a subscreen which should have select-options. Since select-options cannot be directly put using screen painter options, i need to use another subscreen. So how do i pass the value of this select-option to the main program?
    Thanks
    Subhashini

  • Tabstrip/ Subscreen - no focus Textfields beside

    Hey,
    I want to create a Dynpro with textfields on the left and a tabstrip control on the right side in that I want to show PDF files later.
    My problem is that I can´t access/ focus the textfields left/ right or beyond the tabstrip control when I put it on the mask. It doesn´t matter if I do it with the wizard or put it manual there.
    When I move the textfields above the the ts-control everything is fine and I can access the textfield.
    Does anyone knows this strange behaviour or has a solution/ hint?
    Thanks in advance.
         Tobi

    Hi craig,
    check this thread
    Refresh ALV
    it gives you information about how to refresh ALV
    hope it helps you.
    thanks
    Sachin

  • Idcs6[win/mac] problem naming custom methods inside scripting dom.

    Hi,
    I defined some custom methods for the scripting dom in my model plugin. They are working perfectly, but there's a little problem.
    Following is the declaration of my method:
    resource VersionedScriptElementInfo(0)
        // Contexts
            // Scripting support added at InDesign CS 2.0
            kFiredrakeScriptVersion, kCoreScriptManagerBoss, kInDesignAllLanguagesFS, k_Wild,
            kFiredrakeScriptVersion, kCoreScriptManagerBoss, kInCopyAllLanguagesFS, k_Wild,
    // Elements
            // Specifies an Method
    Method
                kXYZElement,
                e_xyz,
                "getStringoneStringtwoStringthree",
                "Does xyz operation",
                StringArrayType(2),
                "xyz",
                    p_Param1, "param1", "Param1", StringType, kRequired,
                    p_Param2, "param2", "Param2", StringType, kRequired,
            // Connects this plug-in's methods and properties to scripting.
            Provider
                kXYZScriptProviderBoss,    // provider boss ID
                    Object{ kApplicationObjectScriptElement },
                    Method{ kXYZElement},
    Now my problem is that I can access the getStringoneStringtwoStringthree method in the scripting dom but the method name gets converted to getstringonestringtwostringthree
    (the capital letters in the method name get small).
    So, am i missing something during the declaration ? 
    Regards
    maddy1907

    Hi,
    I found the error. You need to define "getStringoneStringtwoStringthree", like "get stringone stringtwo stringthree", 
    Then OMV will show your methods as getStringoneStringtwoStringthree.
    Similarly, you need to do this for parameters name too.
    Regards
    maddy1907

  • Unable to declare fields in the subscreen area of the the tabstrip created.

    Hi All,
    I am doing the screen enhancement for the Tcode ME52N using exit MEREQ001. I have added a screen 0111 in the Function Group XM02. On this subscreen i have created a tabstrip with 2 tabs and created element of the type Subscreen Area in the tab strip.
    My requirement is to create few fields in the tabstrip subscreen area for update or display. But in the screen painter when i am trying to insert any of the screen elements i get the error "Illegal type for page element in Tabstrip".
    Please advice me on how to get this done.
    Thanks

    Hi ,
    I am afraid that this forum is not a correct forum for this issue. Since this forum is discuss about Windows form development. In my opinion, it is an issue regarding Windows System. I suggested you to post this thread to
    answer.microsoft.com-Windows OS
    Have a nice time!
    Regards,
    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.

  • Can i call Standard Subscreen into my custom transactioscreen or Subscreen?

    Hi,
    Please let me know, is it possible toi call Standard Subscreen into my custom transaction screen or Subscreen?
    if you have a code ,help me please.
    Thanks & regards
    Vishnuvardhan

    Hi Vishnuvardhan,
    You can call standard subscreen into your custom transaction Subscreen area.
    Because when you are calling subscreen you have to mention subscreen number and program name . It may be a standard one or custom one
    Regrds,
    Raghava Channooru.

  • Call SE11 in customer subscreen

    Hello all!
    I would like to execute transaction SE11 in my subscreen in my module pool. It's possible?
    In my screen 9001 i created a subscreen area called SUB01.
    Program for SE11 is SAPMSRD0 with screen 102.
    I have problem to construct this.
    Anybody can help me?

    Some people sad that it's impossible, another sad that it's possible. I'm confused.
    I tried add command CALL TRANSACTION, but this transaction not apper in subscreen area. It's opening in fullscreen.
    See my code:
    =============================
    I created main screen 9001. Screen 9002(name SUB01) and 9003(named SUB02) like subscreen.
    Screen 9001:
    PBO:
    call subscreen sub01 including 'SAPLZMYPROG' '9001'.
    call subscreen sub02 including 'SAPLZMYPROG' '9002'.
    Screen 9002:
    PBO:
    Call transaction 'MM03'.
    ============================================
    This code doesn't work. SE11 open in fullscreen.
    Pleas, help-me!

  • How can i hide a tabstrip control

    On my screen there are a pushbutton and a tabsrtip control which contain two tabs.
    initial,the tabstrip is visible,and the button with icon_collapse icon.
    then,i click the button ,and the tabstrip must be invisible,and the button's icon will change to icon_expand.
    if i use screen-name conditions to set the tab invisible,but the tabstrip has a shadow on the screen.the color of the space obtained by the tabstrip is different with other space's color.
    How can i set the color same with other if i want to hide the tabstrip.
    ths very much.

    see the example of custom tabstrip control for 0591 infotype
    MODULE ztab_strip_active_tab_set OUTPUT.
       IF  psyst-dsubt EQ 'BNPF'.
         g_ztab_strip-pressed_tab = c_ztab_strip-tab2.
         LOOP AT SCREEN.
           IF screen-group4 = '060'.
             screen-active = 0.
             MODIFY SCREEN.
           ENDIF.
         ENDLOOP.
       ELSEIF  psyst-dsubt EQ 'BNES'.
         g_ztab_strip-pressed_tab = c_ztab_strip-tab1.
         LOOP AT SCREEN.
           IF screen-group4 = '050'.
             screen-active = 0.
             MODIFY SCREEN.
           ENDIF.
         ENDLOOP.
       ENDIF.
       IF   psyst-dsubt NE 'BNPF' AND psyst-dsubt NE 'BNES'.
          LOOP AT SCREEN.
           IF screen-group4 = '050'.
             screen-active = 0.
             MODIFY SCREEN.
           ENDIF.
         ENDLOOP.
          LOOP AT SCREEN.
           IF screen-group4 = '060'.
             screen-active = 0.
             MODIFY SCREEN.
           ENDIF.
         ENDLOOP.
         g_ztab_strip-pressed_tab = ' '.
       ENDIF.
       ztab_strip-activetab = g_ztab_strip-pressed_tab.
       CASE g_ztab_strip-pressed_tab.
         WHEN c_ztab_strip-tab1.
           g_ztab_strip-subscreen = '0201'.
         WHEN c_ztab_strip-tab2.
           g_ztab_strip-subscreen = '0203'.
         WHEN OTHERS.
           g_ztab_strip-subscreen = '0202'.
       ENDCASE.
    ENDMODULE.                    "ZTAB_STRIP_ACTIVE_TAB_SET OUTPUT
    check this for hiding one tabstrip in one subtype and another in next subtype

  • Include a dialog screen in tabstrip of selection-screen

    Hi All,
    Could anyone please tell me how to include a dialog screen into selection-screen? We have a normal selection screen for a report but now we need to add some more function and this requires to key in material number in first column and quantity in second column in a tabstrip subscreen(eg. screen 2000) and put current select-options(screen 1000) in another tabstrip to make user easily switch between new filters and previous filters. I've no idea if it's possible to have a dialog screen included in a tabstrip in the selection-screen. So please give me some suggestion. Thanks.
    Best Regards,
    Jeff

    Hi Jeff,
    In the selection screen you need to call a custom tab strip that would have two sub-screens 1000 and 2000. It is completely designing of tab strip and its code manipulation.
    Did you search for TAB STRIP IN SELECTION-SCREEN ?
    This will  help you in from start-up designing of tab-strip. It's not possible here in forum to explain all the steps in details.
    For your help you can refer the link
    [Sub-screen in Tab strip|Tabstrip and Subscreen;
    This link gives you a complete idea on Tab strip
    [Creating a Tab Strip Control|http://help.sap.com/saphelp_nw04/helpdata/en/04/10f2469e0811d1b4700000e8a52bed/frameset.htm]
    Still you can search and find more as per your requirement.

Maybe you are looking for