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.

Similar Messages

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

  • 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

  • Reg: Additional header tab strip in MIGO Transaction

    Hi Experts,
    I have added a new header tab strip in MIGO transaction. The tab strip is triggered using the BADI 'MB_MIGO_BADI' (PBO_HEADER method), I populated a selection screen using module pool program through the same BADI. Now i need to update the values in the selection screen fields to the data base table MKPF.  I need a solution for update the screen field values to the data base table MKPF. Whether some other BADI i need to use? if yes how can i pass the screen field values to that BADI.
    Please guide me.
    Thanks
    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 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

  • Reg:HOw to add new charactersitics in standard report

    hi all
    HOw to add new charactersitics in standard report
    regards
    JK Rao

    You need to copy the std report and make necessary changes in the copied report. SAP does not allow changes to std report. The technical details of the report can be seen by selecting from the menu Extras - technical information. Select the library and Report name. Copy the same using t code GRR1. Carry out necessary changes and SAVE. Before execution, you will have to specify the report group in which report needs to be attached. You can choose and existing group or specify a new one.
    Regards
    Rakesh Pawaskar

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

  • REG: How to add new fields to existing Infospoke

    Hi All,
    We have an existing Infospoke, It has ODS as a Source and some fields are being pulled.
    But here is the scenario....
    I need some extra fields that are available in other ODS. How to add that fields ?
    By some research came to know that.. I need to lookup on the ODS and populate into existing Infospoke.How to add these fields to InfoSpoke using BAdi implementaion.
    Note: already BAdi is active in the infospoke.
    Please help me in this regard

    Hi Chase,
    As you mentioned that BADI is already implemented then I guess you should be able to extend the existing BADI itself.
    For doing lookup first you should know the key fields of source DSO then by using the existing field of Infospoke you will have to read data from DSO.
    DATA: it_data type standard table of 'DSO Name'.
    select Key1 key2 etc...
              Field1 Field2 Field3 Field4
              from DSO
              into table it_data
              for all entries of infospoke
             where key1 = infospoke1-key1
                         key2 = infospoke2-key2.
    This will give you all the required records from source DSO into internal table it_data. Now you using this table you can populate the original table of Infospoke.
    Regards,
    Durgesh.

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

  • How to pass error message for an additional tab strip in MIGO

    Hi,
    I have created one additional tab strip in MIGO transaction,In that tab i have 5 text fields,In that 4 text fields i want to make as mandatory fields,In the existing screen MIGO is using " Application log"  for passing any error message It is calling as include program in SAPLMIGO report program,In that "lmigolo2 " is the include program name.Now i am struggling how to make use that in my newly created screen.
    Regards
    Ambili B

    Hi rahul,
    Can u try these
    :Object failed to run due to an error while processing on the Job Server.
    2 )Object failed to run due to an error
    3 )Object failed to run due to an error while proc... | SCN

  • How add new Tab in XD01

    Hi Gurus,
    Good day.
    I have designed a screen in SE38 which has 2 tabs. Each tab contains 12 fields. According to the sales organization  number corresponding tab will appear.
    I am very much new to BAdI. Just i can find the BAdI.
    Now please tell me in brief, how to add these tabs in XD01/XD02/xd03 using BAdI.
    with regards
    sohel

    Hi,
    Goto SPRO and follow the following path.
    IMG -> Financial Accounting (New) -> Account Receivable and Account Payable -> Customer Account -> Master Data -> Preparations for creating customer master data -> Adoption of customers own master data fields
    Check BADI documentation  - Processing of master data enhancement  and Customer Subscreens
    Hope this helps you.
    Regards,
    Ranjith Nambiar

Maybe you are looking for

  • Can Appletalk be active on two network ports for printing?

    Here's the core of my question: Can I keep Appletalk active on my Airport network port (in order to print to a wireless print server on an HP Laserjet 2100M) and simultaneously keep it active on my Ethernet port (in order to print to a Brother HL 270

  • How do I download Microsoft Office for my macbook pro retina display without a disc drive

    I can't seem to find anywhere to purchase a downloadable version of Microsoft Office online. Is there one out there? I need to get Office on my computer but don't feel like purchasing the external disc drive. Is there any way around this?

  • Problems installing Mac os lion

    Hi All Really stumped here, I'm trying to get mac os lion from the app store on to my macbook core 2 duo. As soon as i select to download, the spinning disk satrts then says I need at least 2Gb hard drive space.....I have 56Gb. How can i get round th

  • Segment to idoc..

    Hello all, I am working on the scenario where i need to mapp a segment to idoc. means if i am having 10 segments then 10 idocs should get created. If there are 10 EDP10 segments in the inbound IDOC then we need to create 10 outbound Delins IDOCs, eac

  • Re: Membership Status Upgraded From Elite to.......Elite

    Derek, How long should it take to receive new cards after the end of February for Elite and Elite Plus members??? Thank You.