How to add a Tab in Company Detail System Form

Hi Experts
I am making a new Tab in Company Detail System form In Accounting Tab after Excise tab. This is tree of Tabs. Accounting Tab has two Sub-Tabs General and Excise. Now this New Tab 'Export' will also be the sub-Tab of Accounting Tab. My code for inserting tab is given below
If pVal.FormType = "136" Then
                    Dim sysItem As Item
                    Dim SysEdit As Item
                    Dim lbl As StaticText
                    Dim editText As EditText
                    Dim oFolder As Folder
                    sysItem = form.Items.Item("140002039")
                    oItem = form.Items.Add("ExportFD", BoFormItemTypes.it_FOLDER)
                    oItem.Left = sysItem.Left + sysItem.Width
                    oItem.Top = sysItem.Top
                    oItem.Width = sysItem.Width + 20
                    oItem.FromPane = 5
                    oItem.ToPane = 6
                    oFolder = oItem.Specific
                    oFolder.Caption = "Import/Export"
                    oFolder.GroupWith("140002039")
                    sysItem = form.Items.Item("140002040")
                    SysEdit = form.Items.Item("140002041")
                    oItem = form.Items.Add("LDrMfNo", BoFormItemTypes.it_STATIC)
                    oItem.Left = sysItem.Left
                    oItem.Top = sysItem.Top + 65
                    oItem.Width = 120
                    oItem.FromPane = 6
                    oItem.ToPane = 6
                    lbl = oItem.Specific
                    lbl.Caption = "Drug Manufacture Licence No."
                    oItem = form.Items.Add("EDrMfNo", BoFormItemTypes.it_EDIT)
                    oItem.Left = SysEdit.Left
                    oItem.Top = sysItem.Top + 65
                    oItem.Width = SysEdit.Width
                    oItem.FromPane = 6
                    oItem.ToPane = 6
                    editText = oItem.Specific
                    editText.DataBind.SetBound(True, "OADM", "U_DrMfcLNo")
The tab is added properly It also show labels and  Edit boxes but when I select this tab General and Excise tab is disappeared.
Plz suggest me what can be the problem
Thanks
Best Regards
Jitender
Edited by: Jitender Garhwal on Apr 5, 2010 6:28 AM

Hello,
Change the ToPane Property of  General and Excise  until your last panelevel (6?)
The ToPane property of these items is less than your folders panelevel ! This is the problem.
Regards,
J

Similar Messages

  • 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

  • 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 navigation tabs ?

    i am adding a tab :-
    Experience Definition Features --> Edit Navigation Options --> Edit Links
    there is option of adding only one tab it comes when i Add Pages ..
    how to have more tabs ?
    and how to have a tab with out dropdown feature like adminisrtation tab ?
    thanks in advance

    Answering your first question,
    I think we can have only 1 tab with add links option. Not sure how to add second tab there.
    Answering your second question,
    1) Craete a community
    2) In the security page, choose "mandatory with tab" for the respective user group.
    3) This will add a tab to that communty in the header.
    Bharat

  • 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 extra tab in bapi at item level

    hi developer,
    please guide me in solving this problem i.e how to add extra tab in bapi at item level .
    thanks .
    ravi

    What are you exactly asking for, I don't understand your question...
    Transaction screen, adding a tab / customer fields
    Business Object / BAPI, modifying BAPI signature, extension
    NB : The quality of an answer depends significantly on the quality of the question ...
    Regards,
    Raymond

  • How to add empty rows in table in smart form

    how to add empty rows in table in smart form?
    plz help me regarding this
    send me ur queries to [email protected]

    You will need to add some extra rows to the internal table that your table is displaying.  Use a program node to append additional rows with a key but no argument.
    Alternaively a template may me more suitable for your requirement than a table.
    Finally, please do not include you e-mail address in your question.  Your question and the answers provided to it are for the benefit of everyone in the Community.
    Regards,
    Nick

  • How can I change the tax formula in system form ?

    Hi,
      Usually the tax is extra-added for 5% in calcaulating.
      But now I need to change the formula of tax to be embeded.
      How can I change the tax formula in system form ?
                                           Besr regard!

    Great!
    I suppose "Speed-button" is the same as "toolbar button", right?
    To all (more or less):
    It confirms that I am on the right track when I bother the participants in this forum time-after-time with remarks to train themselves - or get trained - in application + customization features (+ SDK).
    Of course as developers we can use the SDK for whatever purpose and try to develop additional functionality - ... that might already be there, but we just don't know about it
    In addition the power of customization features (UDFs/UDTs/queries/formatted searches (also bound to fields on SAP Business One forms)...) should not be underestimated!!!
    When starting development with SDK you - or the person who writes the specifications for an Add-On must IMHO be familiar with the application + the customization features + being trained with SDK to avoid unnecessary development or getting into trouble latest when the solution is shipped to a customer...
    Please again note that there's a lot of eLearning available in the education area in the SMB Portal on SAP Service Marketplace.
    Regards,
    Frank

  • Reusing the 'Row Text Details' system form (Form 65088) in a User Defined F

    Hi Experts,
    Is there any way by which we can reuse the form 'Row Text Details' -system form (no 65088) in a user defined form.
    This window pops up to accept a large text when we change the 'Type' to 'Text' in marketing document line Items -Order/Invoice etc.
    I found the code to invoke forms related to a menu but which is not useful in this case.
    Thanks in advance
    Regards
    Ajith G

    Hello,
    This is not possible, you should create an addon for this functionality.
    Regards,
    J

  • How can i change the title in the system form 'Sales Order Form'

    hai
    how can i change the title in the system form 'Sales Order Form'  and then how can i call this form?

    Hi Sanjoy,
    You find the form property like this :
    SAPbouiCOM.Form oForm = null;
    oForm = SBO_Application.Forms.Item(pVal.FormUID);
    oForm.Title = "New Title";
    Michael

  • How to add additional tab or fields in ME21n

    Hi all.
    I included some fields in EKKO table.
    I want to add these fields in ME21n, ME22n, ME23n Header screens.
    How to add?
    I can't find screen exit and user exit.
    Plz, let me know how to do in detail.
    Regards,
    nam
    Message was edited by:
            Kil Nam Kim

    Hi
    It is very much possible. Please discuss with your development team with the exact requirements. They should be able to do it with screen exits.
    Reward if this helps.

  • 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 do add a custom item to details pane on windows7?

    Hello:
            I had written a shell extension on win7, i want to add some items in the "details
    pane".  But I don't know how to do this .  
    Thanks.

    Hi holmals,
    This forum is to discuss problems of C# development. Your question is not related to the topic of this forum.
    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.

  • How to add aditional TAB in transport studio of CMS !!!

    Hi,
    Query 1:
    If we define runtime system configurations  for Dev, Consolidation (QA system), test and production in landscape configurator of CMS, same appears as TABs in transport studio of CMS.
    Also sequence will be Dev than consolidation than Test and finally production system TAB.
    I want to add one more TAB in transport studio of CMS that correspond to my traing portal server, so that I can import all my changes which has been moved to production into my training server, also I want this additional TRAING SERVER TAB to appear after production TAB in transport studio of CMS.
    How i can achieve this ??
    Query 2:
    If i want to bring test server TAB after production TAB in transport studio of CMS , how I can do this ? generally Test system TAB comes before production server TAb, I want Test system TAB to come after production TAB? How to do this ??

    Have a look at this blog.
    /people/marion.schlotte/blog/2006/03/30/best-practices-for-nwdi-track-design-for-ongoing-development
    Additionally search for 'track connection'.
    The idea is to create a new track in to which all your production code from the first track can be transported.
    Regards, Marcel.

Maybe you are looking for

  • How to show Total amount and distributed amounts in one report

    Hi, I have the Plan Amounts distributed across Fiscal Year Periods for various WBS Elements in the cube. I have to give a report wherein I should display the Total Plan amount for each of the WBS Element in one column, and the plan amounts across the

  • Cover flow: the cover area turns black or white after a short time

    Hi Does anyone know why my iTunes has begun turning the area, where the covers usually are placed, into complete black and sometimes complete white? When iTunes skips to the next track, it shows the covers again - for a short time - and then usually

  • Muse CC 2014 contact web forms problems

    Hi I recently created a website using muse cc 2014 and I uploaded it to the hosting server a free one at freehosting.com I set up everything I know of and when I uploaded the site using muse it gave a error message saying something about PHP mail???

  • Solaris Install dissapointing

    I installed Solaris 9 and 10 beta and was hoping the latest release would be better. I was dissapointed. It is exactly the same hardware and yet Solaris 10 won't install. After trying 4 times I gave up and downloaded ubuntu. I was up and running with

  • Sound stuttering in Leopard on Dual G5 Powermac

    I've searched other posts, but haven't seen a related topic, so wanted to air this. Took a day and a half to load Leopard, as the upgrade didn't work smoothly on my RAID1 10.4 startup disk. It kept breaking the mirror, then wouldn't present the other