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.

Similar Messages

  • 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 to add new tab page to equiment ?

    Dear Guru's
    i created the new equipement category K by coping the standard S.when i am creating the equipment while using equipment category S i am getting tab pages General,Location,organization,structure,Sales and Distribution.
    But while using the equipment category K for creating the new equipment i am getting the tab pages General,Location,organization,structure 4 only.
    why the 5 one Sales and Distribution is not coming ?
    how to add new tab page like Partners ?In that fields like sold to party,ship to party ?
    Could anybody help me in this regards
    Thank you
    suribabu

    In Equipment category creation config in IMG, check for the View Profile for both the equipment category S & K.
    For adding new tab, follow the IMG path.
    PM & CS => Master data => Technical Objects => General Data => Set view profiles for Technical objects
    Select the View profile which has been assigned to your equipment category & click Activity & layouts of views. In that screen, under seq.no, select the Partners.
    Do the same for other requried tabs based on your requirement.
    If there are same profile assigned to both equipment category, go to equipment creation creation => Edit => view selection. There you will find the required tabs.

  • How to add new tab after reason for rejection tab using tcode va01

    Hello,
    how to add new tab after reason for rejection tab using tcode va01.

    Hi,
    You can check this link...
    Hope it will be helpful to you.
    [https://forums.sdn.sap.com/click.jspa?searchID=23016273&messageID=6825861]
    [http://www.sapdevelopment.co.uk/enhance/fexits.htm]
    -Maharshi
    Edited by: Maharshi Vyas on Mar 3, 2009 12:45 PM

  • How to add new tab under tansaction tab

    Hi Team,
    I would like to add a new customized tab to the "Transaction Data" screen in transaction CRM_DNO_MONITOR.
    It currently has the following standard tabs:
    Overview
    SAP Attributes
    SAP Notes
    Solution Database
    Partners
    Actions
    Status
    Documents
    and I would like to add a new one with 'My Data'
    We want to add some Ztable fields  on this separate tab - things like-
    Fields Names :
    1.     Change type
    2.     Change Test Procedure
    3.     Fall back option
    4.     Impact Assessment
    5.     Module
    6.     Business Unit Impact
    7.     Estimated Cost
    8.     System Performance
    9.     Risk
    Can anyone give me any pointers on how to proceed ?
    Thanks & Regards,
    srikumar.anamala
    Edited by: srianamala on Apr 30, 2010 6:57 AM

    Hi,
    I think for that you need a user exit or BADI. Like most of the standard transaction you will find user exit or BADI to add new tab.
    For example MM06E005
    You can create custom fields in the includes CI_EKKODB and CI_EKPODB . Create yours screen 0111.
    EXIT_SAPMM06E_016, EXIT_SAPMM06E_018  use to export and import data.
    See BADI: ME_PROCESS_PO_CUST
    Thanks,
    Abhijit

  • How to add new tab to GL Accounts Determination Form

    Hello Professionals,
    I want to add new tab to GL Accounts Determination. This form can't be opened using screen painter in SAP, Also, i have tried several codes to add it through UI API but with no progress so far.
    How can i do this?
    Thanks in advance

    Hi Karem,
    Use this code in your Item Event on G\L account determination form.
    and Use it in FormLoad  Event  [SAPbouiCOM.BoEventTypes.et_FORM_LOAD] and
    Before Action=False
            Dim oitem As SAPbouiCOM.Item
            Dim oextitem As SAPbouiCOM.Item
            Dim oPanel As SAPbouiCOM.Folder
            objform.DataSources.UserDataSources.Add("UD_FDR", SAPbouiCOM.BoDataType.dt_SHORT_TEXT, 20)
            oitem = objform.Items.Add("TAB", SAPbouiCOM.BoFormItemTypes.it_FOLDER)
            oextitem = objform.Items.Item("10000008") 'Inventory Tab'
            oitem.Height = oextitem.Height
            oitem.Width = oextitem.Width
            oitem.Left = oextitem.Left + 100
            oitem.Top = oextitem.Top
            oPanel = oitem.Specific
            oPanel.Caption = "New Tab Folder"
            oPanel.Pane = 10
            oPanel.DataBind.SetBound(True, "", "UD_FDR")
            oPanel.GroupWith(10000008)
    I hope it will help.
    Thanks & regards,
    P.T.Sampath

  • 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

  • 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

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

  • How to add new fields to j1is transaction

    hi,
    i need to add new fields to the entry screen transaction j1is, or at least i want to change the discription which is showed in aditional data screen line data1,data2,data3.
    is it possible to change those with out having access key.
    thanq,
    rajesh.k

    hi,
    yes, i was poor in exits side i heard their is no need of accesskey if user exit was available for that transaction but hear i didn't find any screen exits, did u know any screen exits.
    did any one know where the additional data in j1is was effect?
    thanq,
    rajesh.k
    this was placed as answer but my qustion not answered please consider it as un answered and send ur valuebul suggessions.

  • BADI for ME51N to add new TAB(screen)

    Hi,
    Is there any BADI or Screen Exit to add a new TAB at item level in Purchase Requsition (ME51n) ?
    Thanks

    Hi,
    Check below link
    https://www.sdn.sap.com/irj/sdn/forums
    Regards,
    Prashant

  • How to add new tab thumbnails - am using iMac OS X 10.9.4 -

    Currently have 4 thumbnail bookmarks that display when i click on plus sign that generates a new tab ...
    I have tried unsuccessfully to add more sites by following suggestions on mozilla help pages, i.e. clicking on blank thumbnail space as well as dragging from bookmarks library... all to no avail. Help appreciated.

    You can try to reset these prefs on the <b>about:config</b> page via the right-click context menu:
    *browser.newtabpage.pinned
    *browser.newtabpage.blocked
    You can open the <b>about:config</b> page via the location/address bar and you can accept the warning and click "I'll be careful" to continue.
    *http://kb.mozillazine.org/about:config

  • How to add new fields for FB01 transaction both at Header and Line item

    Hi Guys,
    I would like to add the new fields at header and item level in FB01 transaction. Can I acheive this by using transaction EEWB....please help me on this.
    Thanking you

    Hi,
    We are trying to copy a work flow objects from ECC6.0 to 4.6C...where we found the following Select statement.
    *Determine Top WorkItem Instance
      if im_top_wi_id is initial.
       select wi_id top_wi_id wi_rh_task into lw_top_id from sww_wi2obj
         up to 1 rows
         where wi_rh_task = im_wftask and
               catid      = 'BO'      and
               instid     = l_instid  and
               typeid     = 'FIPP'.
       endselect.
       endif
    As table sww_wi2obj can't be found in 4.6C, can any one help how to replace or implement the same logic as above statements.
    Thank you....

  • How add new tab after reason for rejection tab using tcode va01

    Hello,
           How to add new tab after Reason for Rejection tab using tranzaction code VA01.
    pls suggest solution.

    I don't think you can add a tab after reason for rejection tab. There are custom tab, which you can use for your convenient, given by SAP. You can look into the below details:
    Program : SAPMV45A
    Screen: 8459(Item) and 8309(Header).
    Kuntal.

  • Add new TAB in ML81N Tcode..

    Hi Experts,
    I am new for screen exits...
    Can any one tell me how to add new tab in ML81N tcode in detail...
    Please waiting for your great answers...
    Thanks in advance,
    Kruthik
    Moderator message: please search for available information/documentation.
    Edited by: Thomas Zloch on Dec 1, 2011 2:03 PM

    Hi,
    Search SDN before posting a question. There are lots of threads on this topic.
    Have a look at this thread : Adding a new tab in MM01
    Read SAP Notes 38299 & 44410 as suggested in that thread.
    Thanks & Regards,
    Faheem.

Maybe you are looking for