New tab in PVD0 transaction (Learning solution)

Hi, everyone
I need to add an additional tab that would display a custom infotype in PVD0 transaction (ECC 6.0)
For that I have found a BADI HRTEM00MASTERDATA method REGISTER_SUBSCREENS . According to documentation this looks like the place to point to program screen that holds the additional tab I require. But I didn't manage to make it work so far. I can for example remove all existing tabs by clearing parameter table, but adding one doesn't work.
Has anyone ever done a similar thing? An example code on how to fill parameters in REGISTER_SUBSCREENS or any other tips would be highly appreciated.
Yuri

I dont think you can delete any standard SAP tabs from screen.
To add a new tab SAP usually has User Exits (screen exit) for that.
Look around in forums on how to find user exits  or use program in this link http://www.erpgenie.com/abap/code/abap26.htm
Then use tcodes SMOD/CMOD and if you find a screen exit use screen painter to create fields on "Customer data tab" and write another user exit with code to populate/use data for fields you created with the screen exit.

Similar Messages

  • How to add a new Tab in XD02 Transaction

    Hi all,
    How to add a new Tab in XD02 Transaction. please explain step by step.
    Thanks

    Hi Anil
    Goto T code OBD2 select your account type for which you want new tab. Click on details button above.
    On next screen you can see "Field status" box.
    Select (double click) on the view (i.e. General data or CC data or Sales data) in which you want to add new tab.
    Again on next screen double click on the field present under "Select group" box.
    On next screen go ahead with your settings, i.e. which fields you want and how.
    Save the changes. Goto XD01 and test the same.
    try and revert

  • How to add new tab screen in transaction BP

    Hi,
       Please let me know How to add new tab screen in transaction ukm_BP. Is there any SPRO configuration needed for this?
    Thanks,
    Debi.

    Hi,
    You may also try the exits available with the MIGO transaction. To find exits you can use the fillowing code by giving tranasaction code as input.
    REPORT  zrmexitfinder                               .
    TABLES: modsap, modact, tstc.
    PARAMETERS: input1 LIKE tstc-tcode DEFAULT ' ',
                input2 LIKE modsap-typ DEFAULT ' '.
    DATA: search1(6),
          search2(3),
          search3 LIKE modsap-member.
    DATA : first_row VALUE 'Y'.
    CONCATENATE: '%' input1 '%' INTO search1,
    '%' input2 INTO search2.
    SELECT * FROM tstc WHERE tcode LIKE search1.
      first_row = 'Y'.
      CHECK tstc-pgmna NE space.
      CONCATENATE '%' tstc-pgmna '%' INTO search3.
      SELECT * FROM modsap WHERE typ LIKE search2
      AND member LIKE search3.
        SELECT SINGLE * FROM modact WHERE member = modsap-name.
        IF first_row EQ 'Y'.
          WRITE: /0 tstc-tcode, 6 tstc-pgmna, 16 modsap-name, 32 modsap-typ,
                 45 modsap-member, 70 modact-name.
          first_row = 'N'.
        ELSE.
          WRITE: /16 modsap-name, 32 modsap-typ, 45 modsap-member, 70 modact-name.
        ENDIF.
        CLEAR : modsap, modact.
      ENDSELECT.
      IF sy-subrc NE 0.
        WRITE : /0 tstc-tcode, 6 tstc-pgmna, 30 'No exits found'.
      ENDIF.
      CLEAR tstc.
    ENDSELECT.
    END-OF-SELECTION.
      CLEAR: search1, search2, search3.
    Regards,
    Renjith Michael.

  • Add new tab for sales transaction

    Hi,
    I want to add a new tab in sales transaction for bank detail, the data of this tab should be get from BP master data, and save to crmd_order transaction table.
    what method should I implement?
    thanks
    Gang

    Hi Gang,
    Use EEWB to enhance the order. The fields shall be added to CRMD_CUSTOMER_H table.
    <a href="http://help.sap.com/saphelp_crm50/helpdata/en/43/04bede807721ece10000000a155369/frameset.htm">EEWB</a>
    for populating these fields based on BP master data, use BADI COM_PARTNER_BADI method COM_PARTNER_MERGE.
    This BADI gets called when you enter partners (sold-to-party). In the mentioned badi method, read bank details from BP master and set this to your Z-fiedlss using FM CRM_CUSTOMER_H_MAINTAIN_OW.
    Hope this helps.
    Regards
    Kaushal

  • Addition of new tab in QM01 transaction

    Hi i want to add a new tab in QM01 transaCTION.
    cAN SOMEONE TELL ME ABOUT THE STEPS.
    Moderator message: please do more research before asking, show what you have done yourself when asking, do not post in all capitals.
    [Rules of engagement|http://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
    [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers]
    Edited by: Thomas Zloch on May 26, 2011 2:03 PM

    Hi i want to add a new tab in QM01 transaCTION.
    cAN SOMEONE TELL ME ABOUT THE STEPS.
    Moderator message: please do more research before asking, show what you have done yourself when asking, do not post in all capitals.
    [Rules of engagement|http://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
    [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers]
    Edited by: Thomas Zloch on May 26, 2011 2:03 PM

  • What is the BADI to create a new tab in ME21N transaction

    Hi,
    I have created a new document type zbr with the transaction spro.
    I wanted to add a new tab for the given document type zbr. How to create a new tab for the document type.
    How to create a new tab using BADI. what is BADI used to create the tab

    Hi,
    Pls check BAdI 'ME_GUI_PO_CUST'  for your reqmt.
    Pravat.
    <i>*Reward points if helpful</i>

  • MM - Creating a new tab in MIGO Transaction

    Hi Gurus
    I am facing a problem to create a *new tab in transaction MIGO*.
    The  scenario is like, the "item text" tab in ME21n/ME22n which contains some text, needs to be mapped in MIGO under a new tab.
    I checked with BADI  "MB_MIGO_BADI" but unable to find the exact interface to implement.
    Thanks in advance

    Hi Sandy
    Check the method PBO_DETAIL of badi  MB_MIGO_BADI: for Item level screen  add your screen to that code .
    1> NEW TAB for Item level in MIGO   
       E_CPROG   = 'ZSCREEN'.   '' Screen should be a container
        E_DYNNR   = '1001'.  "" Screen No
        E_HEADING = 'ITEM TEXT '.  Heading 
    2 > Creating Standard text :
    using se75 cretae standard text and text objetcs as MIGO is not haing as if in PO .
    Create an entry using the DOCUMENT NO and ITEM NO combination and save the cretaed text using Create_text
    entry would be store in STXH table . 
    3 > Use BADI MB_DOCUMENT_BADI* : For creatign actual text for item level mrthod :* MB_DOCUMENT_BEFORE_UPDATE* .
    Hope it will be help full .
    Thanks & Regards
    Swapnil Kamble

  • How to add new Tab in IW32 transaction ?

    I need to add a new tab in the header tabstrip...
    I found an enhancement IWO10018..
    There are two exits in it.
    EXIT_SAPLCOIH_018
    EXIT_SAPLCOIH_019
    I want to know if this enhancement will help me ?
    if so please tell me all the steps of how to use these EXITs and creating screens etc... to get that tab.
    Also suggest if there is better way.

    Hi,
    Goto SMOD Tcode, Give the Enhance ment name, IWO10018
    Click on Test, and Click on Activate and Then goto Tcode IW32, and check wether a new Tab is created or not.
    Deactivate and double click on the ScreenExit, it will take u to Screen Painter, design ur Screen like add fields etc., and do coding in PBO and PAI accordingly.
    Regards
    Bala Krishna
    Edited by: Bala Krishna on Aug 26, 2008 5:13 PM

  • How shall i add new tab in cgab transaction under property tree.

    hi,
    how shall i add new class tab under phrase-set-to-attribute assignment under industrial hygine & safety data in transaction cgab.
    thanks and regards,
    manish.

    Hello Manish,
    Based on your data input requirements, first create a characteristics in t-code ct04. Create a class (in t-code cl01) and assign the characteristics to the class. For characteristics, define "Values" by clicking on button "Other value check" and selecting "check values with function module". Input FM as "C14K_PHRASECHARACT_CHECK_F4".
    Now, create phrases (t-code cg12) for the actual values which you wish to have as F4 values on your IHS screen for the custom fields. Then create phrase set (t-code :cg1b) and assign the phrases to the phrase set.
    Go to spro>EHS>IHS>Basic settings>Assign value assignment types to classes..........define here the name of the tab under which custom fiellds should come. Assign the above created class here.
    Now, go for master data match-up (t-code cgcz) , select first three checkboxes and execute.
    Go to cgab now, and you should be able to see the value assigment type created in spro in IHS section . Double click it, and assign the phrase set against the created characteristics.
    Regards,
    Pavan

  • NWBC - new tab instead of window

    Hi,
    I know this question was discussed some days ago, but I come from a different angle. Not programming anything, just working using standard transaction. Of course when you come from the index page, the NWBC nicely opens a new tab for every transaction you start. But on the next tab you have the standard SAP GUI icons, also the one which opens a new session - and this one opens a new window, not a new tab. Is there any way to force the NWBC to open a new tab instead? Even more, I have a transaction (/SCWM/MON), where we use hotspots, so you can drill down for example to documents. There is a user parameter to control if the details are shown in a new window or the existing window. If I select new window, I also want to have a new tab instead.
    I have checked the personalization settings, but found nothing there. Using NWBC Desktop Version 4.0
    Brgds
    Juergen

    Hi Juergen,
    I have bad and good news.
    The bad news is that the SAP GUI integration for NWBC 3.0, 3.5 and 4.0 exactly ends at the new session button. It is not only a new window, ... no it is a new external SAP GUI window in a different process (not the NWBC process). It is not planned to implement a solution for that within NWBC 4.0 and SAP GUI 7.30, because this is something more complex and should not be part of a patch. The new session button is an internal function of SAP GUI with its own logic, so that both products have to implement a logic together.
    At the end the answer is that there is no setting which allow you to create a new session (triggered via SAP GUI button)  in a new tab.
    The good news is, that exactly this is planned for the next major releases of both involved products (NWBC and SAP GUI). We are currently working on a more smooth integration of SAP GUI into NWBC which closes all of these open gaps especially the "create new session" function.
    I hope this will answer your question allthough there is no real solution at the moment.
    Best Regards,
    Thomas

  • How do I get rid of Yahoo search from starting in the creation of a new tab?

    my home page works correctly and I have removed the Yahoo tool bar from plugins/apps (can't remember which) But whenever I open a new tab it opens on this
    http://search.yahoo.com/?fr=freeze&type=W3i_NA,132,3_6,Tab%20Search,20110520,16934,0,19,0
    I would like it to open on my home page, which firefox does on startup. But I can't find a setting in options that will allow you to dictate what first appears when opening a new tab.
    I tried this solution but it didn't work
    https://support.mozilla.com/en-US/questions/811550?s=getting+rid+of+yahoo+search&as=s

    Do you also have a search bar on your tabs bar if so, it is probably "New Tab" extension, but suggest going through all of the following.
    '''Remove the Yahoo Toolbar'''
    # "Ctrl+Shift+A" (Add-ons Manager)
    # Select Puzzle piece on left-side for Extensions List
    # Find "Yahoo Toolbar" and click on "Uninstall" button, and restart Firefox. ''(if you really need to keep the Yahoo toolbar, you can hide the toolbar instead with customize, and still change all the search defaults as below)''
    '''Then to fix the default search engine''' used at the Location Bar, change the value of '''keyword.URL''' in '''about:config''' to one of the values shown in [http://kb.mozillazine.org/Location_Bar_search#Location_Bar_search_.28external_-_search_engine.29 Location Bar search] at MozillaZine.
    * Google Search (Google search results page)<br>'''http://www.google.com/search?ie=UTF-8&oe=UTF-8&q='''
    # type in '''about:config''' into the location bar (in a new tab)
    # if the warning message nonsense comes up ''uncheck'' the box '''before''' dismissing the dialog message
    # '''filter on keyword'''
    # right-click on '''keyword.URL''' and choose "modify" then paste in the Google search engine string of your choice.
    # '''filter on defaulturl'''
    # right-click on '''browser.search.defaulturl''' ''(if it exists)''and again choose "modify" then paste in the Google search engine string of your choice.
    # '''filter on ytff'''
    # right-click on '''yahoo.ytff.search.popup_src''' ''(if it exists)'' and again choose "modify" then paste in the Google search engine string of your choice, if adventurous might see if "reset" would remove and see if gone in next session (well not for those keeping the extension).<br
    >--above used in https://support.mozilla.com/questions/850287
    #If new tabs open with a Yahoo search, then in "C:\program files\Mozilla Firefox: Find the yahoo.xml file and delete it ([/questions/892957])
    #If you find an extension call "New Tab" uninstall it (it is unwanted malware), this little gem came with a reinstall of "PicPick" software for me and adds a search bar to the already overcrowed tabs bar, when doing the reinstall update for PicPic do a custom install without anything relating to yahoo.
    '''Avoiding the problems:''' Many software installations contain additional baggage known as crapware. The Yahoo Toolbar is packaged with Java [http://imageshack.us/photo/my-images/266/javainstall.png/ picture]
    More information on ask.com, Yahoo Toolbars which involve extensions, not just changes to the home page.
    * http://kb.mozillazine.org/Problematic_extensions
    * Uninstalling toolbars - MozillaZine Knowledge Base<br>http://kb.mozillazine.org/Uninstalling_toolbars

  • Opening a webpage in a new TAB in OBIEE 11G

    I am working on Action Links in OBIEE11g where I am supposed to open a webpage in a new TAB from a report using Action Links. I am able to open the link in a new window but not in new tab. Is there any solution for this? Any help would really be appreciated!

    CSS will not help you at all (style sheet can make your link nice and colorful, but will not any impact on what the link does).
    JS is the same, it will not help you because tab/windows is subject to the user settings (JS works into the webpage, but has no control, luckily for all of us, on the browser itself).
    Srini VEERAVALLI gave you the answer, the same (just different place) is valid for FF or Chrome.

  • Reg: How to add new tab strip in MIGO transaction

    Hi Experts,
    I need to add a new tab strip(Inside one selection screen, If the user clicks the new tab strip, New selection screen should populate) in MIGO transaction after pressing enter for the movement type '122'.
    I tried with the BADI MB_MIGO_BADI, Simply i called the module pool program inside that BADI, But it is not giving any solution.
    Please guide me to find the solution for this requirement.
    Regards
    Vijay.R

    Hi,
    You may also try the exits available with the MIGO transaction. To find exits you can use the fillowing code by giving tranasaction code as input.
    REPORT  zrmexitfinder                               .
    TABLES: modsap, modact, tstc.
    PARAMETERS: input1 LIKE tstc-tcode DEFAULT ' ',
                input2 LIKE modsap-typ DEFAULT ' '.
    DATA: search1(6),
          search2(3),
          search3 LIKE modsap-member.
    DATA : first_row VALUE 'Y'.
    CONCATENATE: '%' input1 '%' INTO search1,
    '%' input2 INTO search2.
    SELECT * FROM tstc WHERE tcode LIKE search1.
      first_row = 'Y'.
      CHECK tstc-pgmna NE space.
      CONCATENATE '%' tstc-pgmna '%' INTO search3.
      SELECT * FROM modsap WHERE typ LIKE search2
      AND member LIKE search3.
        SELECT SINGLE * FROM modact WHERE member = modsap-name.
        IF first_row EQ 'Y'.
          WRITE: /0 tstc-tcode, 6 tstc-pgmna, 16 modsap-name, 32 modsap-typ,
                 45 modsap-member, 70 modact-name.
          first_row = 'N'.
        ELSE.
          WRITE: /16 modsap-name, 32 modsap-typ, 45 modsap-member, 70 modact-name.
        ENDIF.
        CLEAR : modsap, modact.
      ENDSELECT.
      IF sy-subrc NE 0.
        WRITE : /0 tstc-tcode, 6 tstc-pgmna, 30 'No exits found'.
      ENDIF.
      CLEAR tstc.
    ENDSELECT.
    END-OF-SELECTION.
      CLEAR: search1, search2, search3.
    Regards,
    Renjith Michael.

  • I am using a MacBook Pro and when I open a new tab in Firefox it opens to Trovi. Mozilla has a forum but solutions are all for the PC/Windows. How do I remove it?

    I am using a OSX MacBook Pro running Mavericks version 10.9.4 and using Firefox 30.0.  My Mac has recently been hijacked by a program called "Trovi". Whenever I open a blank new tab in Firefox the tab opens it opens with Trovi. The Mozilla forums offer support but all solutions are for users who run Windows. How do I remove Trovi from my Mac? Please help.

    Hey there! I answered this in another post a moment ago, this may be extremely helpful...I had the same problem until very recently with Trovi.
    Re: Trovi Virus Removal Needed
    Best of luck!

  • When I press right click - Open in a new Tab on a bookmark on Firefox 4.0 nothing happens. Is this a bug? Is there a solution?

    When I press right click -> Open in a new Tab on a bookmark on the "Display your bookmarks" icon that is located on the upper right corner of Firefox 4.0 nothing happens. It only works if I press right click -> Open in a new Tab on bookmarks under the menu that is located on the upper left corner. Is this a bug? Is there a solution?

    No its working fine.
    Start Firefox in Safe Mode : How to start in safe mode
    If it doesn't work
    Create new Profile: Profiles

Maybe you are looking for

  • How to find the job is in which server

    HI , In Process chains , are assighned to server  want to know the chain is in which server , please let  me know Thanks Ahmed Pasha

  • Oracle application express3-10g to 11g DRCP connection problem

    [Oracle application express3 +Oracle Identity Management 10g (10.1.4.0.1) authentication] has a performance problem about dedicated connections, i have 714 sessions, and 506 of 714 is httpd connection of APEX. so i decided to use DRCP, because databa

  • Appworld rejects payments error 10000

    Appworld 2.0 is happy to let me download free apps but rejects any attempt to buy paid for ones.  I get error 10000 and a comment that there is a problem with my credit card authorisation.  This happens with Paypal or with a credit card.  There is no

  • How to read Assignment blocks mode options Lazy, Direct etc

    Hi, I need to read the Assignment block mode settings made in configuration i.e, Direct, Lazy etc in a program. Can some one help me out how to get these values for Account assignment block. Based on these modes, i need to programatically control and

  • A point to clear from note 823587.1

    Current Environment: ============= 2 Nodes ("Node-1" and "Node-2") for database tier. 2 Nodes ("Node-3" and "Node-4") for application tier. EBS Version: 12.1.3 Database Version (On "Node-1"): 11.2.0.3 We installed db on "Node-1" and apps on "Node-3"