Add fields to Business partner t-code BP

Hi All,
I have a requiremnt to create a BP in the counterpary role .
1.This requirement involves to add some custom fields to the table control of the payment details table control in the company code view.I have tried EEWB and BPT ,but both of them creates a new customer data tabstrip .
Any ways to add additional custom fields to the existing table control.
2. where can we find the assignmet of fields to the field groups in r3 side to maintain the BP transaction.
Regards,
Prabhu.

Hi Prabhu,
Your approach is on the correct path. Basically, this is what you need to do -
1. Create the new fields using EEW. Let this create a new tab.
2. Hide this tab for all roles, EXCEPT the role for which you want to see it. You can do this in SPRO.
3. You can assign fields to field groups in transaction BUPT-> Control-> expand the menus and you will see Screens, Sections, Views, Field groups... choose field groups and within this menu you can assign fields to field groups.
Hope this helps you.
Cheers,
Rishu.

Similar Messages

  • How to use EEWB to add fields in business partner page

    Hello All
    I am working on CRM 5.0 EEWB
    I am trying to add new field in the business partner page I followed the steps for creating the project and the extension but I faced some problems
    1-I chose the package BBP_BUPA_MAIN    BBP Business Partner General
    I created two transport requests for the workbench and the customizing
    2- I created an extension with EEW Bus. Object: BUPA and extension type: ADD_NEW_FIELDS
    3- I got an error that <b>"Object DOMA ZBU_009XN27S is in the name range reserved for customers. The object cannot be assigned to package BBP_BUPA_MAIN, since it belongs to a different name range or namespace"</b>
    I tried to change the package but the same problem occurs and if I choose a custom made business package I get an error <b>"Extension type BUPA - ADD_NEW_FIELDS cannot be combined with package Z###"</b> but, before the wizard starts
    I want to know the exact steps to create new field using the EEWB
    Regards
    Jacopo Francois

    Hi,
    Error info:  "Object DOMA ZBU_009XN27S is in the name range reserved for customers. The object cannot be assigned to package BBP_BUPA_MAIN, since it belongs to a different name range or namespace"
    Clearly states that you need to assign some different name to the package which is not reserved by SAP as Z### is already reserved by SAP and thus you will not be able to create the enhancement in the same.
    Best Regards,
    Pratik Patel
    <b>Reward with Points!</b>

  • Creating Business Partner Through Code

    Hi Everyone
    I just wanted to know if any of you knew a way to create a business partner through code.
    If there is a way or a sample that anyone can provide that would greatly
    apreciated.
    What would mandatory fields be? I know CardCode would be one mandatory field but what else would be essential?

    Hi Sebastiano,
    If you only need to read the BP data from the 'source' company then you shouldn't need to log in to it. The RecordSet object should be capable of sending a SQL query that references the other database.
    For example:
    string sSQL = "select * from " + sSourceDatabase +"..OCRD where CardCode = '" + sMyBPCode +"'"
    where sSourceDatabase is the Database ID for the source company and sMyBPCode is the BP you wish to copy.
    Using this you should only need to log in to the company where the BP needs to be created. So the whole process should be something like this:
    1) Connect to second company
    2) Run the query to collect the BP data from the first company
    3) Create an instance of the BP object and use the recordset object to assign the properties
    4) Add the BP
    Hope this makes sense
    Owen
    P.S. The other option is to use XML. See this post:
    Copy items between databases

  • Case created without business partner, reason code and  result code

    In our CRM system, some cases was created without business partner, reason code and result code.
    We created some customer functions to make these fields as mandatory, it always work for our technique people and process expert, but it didn't work for some users occasionally. We cannot debug it.  
    Can anyone tell me why and how to solve it?
    Please help me !
    Regards,
    Shirley

    Hello Shirley,
    Well, then I would check the code, which calls your custom function modules.
    It may be possible, that you have an IF in the 'Main' program, which makes it possible to skip the custom FM for these users.
    The reason I am assuming this, is that normally you need just to change attributes for a field to make it mandatory, or customizing like SHD0 makes this possible. If you use custom FM, you have to call them somewhere and this is the point I would be looking for.
    Check the traces for the users and you should find, that the custom FM are not called for them.
    My opinion, of course
    Award points if this helps.
    Regards,
    Martin Kuma

  • Creation of new fields for business partner relationship

    Hi experts,
    We are currently on SAP CRM 7.0 EHP1.
    We have a requirement to maintain a custom checkbox (Relevant for business) on each business partner relationship.
    Can you please let us know on how we can achive this requirement.
    Thanks in advance,
    Vamsi.
    Moderation: Duplicated. I lock this one and continue here: [Create a new field in Business Partner Relationships|Create a new field in Business Partner Relationships#10795912]
    Edited by: Joaquin Fornas on Nov 8, 2011 12:17 PM

    Please, anyone can help?
    Thanks!!

  • Not all fields for Business partner are exported

    Hello,
    I am exporting Business partner data from CRM to another system, through XIF. I get on target system XML file with Business partner data. But I have only standart fields. I can't get fields, which was created my company for own use.
    For example, for Business partner I have Business Agreement, but after export to XML, I have no Business agreement data in another system. But I have standart data, for example, Business partner Name, ID, ets.
    Anybody know what I can do to export all the fields for Business partner? Some transaction or somthing else? Where can I customize output XML with Business partner data?
    Best regarda,
    Alexander.

    Hi,
    You have the right observation. There is no mandatory fields for BP. It means you can update any single field against CardCode. CardCode is the only mandatory field which is the only primary key must be unique.
    Thanks,
    Gordon

  • Business partner auto code generation

    hi how to create business partner auto code generation. its based on customer group for example we have more customer group..dealer, distributor,subcontractor...
    here dealer and distributor group starting cardcode is - C000001,C000002,C000003..... etc
    when i was choose subcontractor its starts SUB00001,SUB00002...... etc
    vendor is maintain same starting letter in all groups V000001,V000002
    Thanks in advance
    Thanks & Regards
    B.Lakshmi Narayanan

    hi thanks for your valuable replies...
    i changed the codes...pls check its right or wrong
    declare @temp as char(20)
    IF $[OCRD.GroupCode] = 104  and $[OCRD.cardtype] = 'c'
    BEGIN
    set @temp=(select isnull(max(right(cardCode,7)),0) + 1 from Ocrd where (groupcode= 104) and (len(cardCode)=7))
    set @temp='TRA'isnull(replicate(0,7-len(@temp)),'')@temp
    select cast(@temp as char(20))
    END
    ELSE IF $[OCRD.cardtype] = 'C'
    BEGIN
    set @temp=(select isnull(max(right(cardCode,7)),0) + 1 from Ocrd where   (len(cardCode)=7))
    set @temp='C'isnull(replicate(0,7-len(@temp)),'')@temp
    select cast(@temp as char(20))
    END
    ELSE IF $[OCRD.cardtype] = 'S'
    BEGIN
    set @temp=(select isnull(max(right(cardCode,7)),0) + 1 from Ocrd where   (len(cardCode)=7))
    set @temp='S'isnull(replicate(0,7-len(@temp)),'')@temp
    select cast(@temp as char(20))
    END
    Thanks & Regards
    B.Lakshmi Narayanan

  • Add a custom field to Business Partner(master data screen)

    Hi MM experts,
    My requirement: Basically have to pass special accounting number (from FI module to MM module ). For that, we need to create new custom field in the standard screen (master data) of business partner.
    How to achieve this?
    Is that by creating field exit (create a new field in the standard screen and updating business partner master data with this special accounting number)? IF so, could you please explain how to achieve this little bit clearly?
    THANKS IN ADVANCE... YOUR INPUT IS HIGHLY APPRECIATED.

    Hello Solemn,
    You should catch the FormLoad event of form 134 (Business Partner), and add a static text and editbox. In addition, you need to do the data binding right after adding the item.
    Or, you just use the standard UDF function of B1.
    Hope this helps,
    Nick

  • Adding new Field in Business Partner General Data

    Hi All,
    I'm working on a mySAP CRM 4.0 implementation.
    I would like to extend the business partner data with this new three field:
    1) Capital Stock
    2) Base Number
    3) Sales pl.
    The three field are Dun & BradStreet information.
    I  created a BSP that show all Business Partner General Data and now we want to show also those fields.
    In order to extend the BP data we received two suggestion:
    The first one is to use the BP marketing Attributes.
    The second is to use the Easy Enhancement Workbench.
    I know that advantages of the EEW is the automatic creation of the layout (BSP & DYNPRO).
    Doo you have any suggestion??
    It's a good solution to use the EEW??
    Thanks a lot.
    Eugenio

    Hi,
    First of all thanks a lot for the fast reply.
    I have to add some information:
    The end-user will use the application only in PC-UI mode (through Enterprise Portal).
    We are customizing the BSP application (Accounts).
    I know that in past some colleagues used the EEW to extend or to add some field to application BP. I remember that the field (after Enhancement the new fields was visible in SAPGUI mode and in BSP mode).
    Now my questions are the following:
    1) Are you sure that I can use EEW only 10 times??
    2) We are using the BAPI (CRMXIF_PARTNER_SAVE) in order to add Business Partner in the system; after the creation of the new fields with EEW the BAPI (CRMXIF_PARTNER_SAVE) will be able to insert the new fields?? Or we need to extend this BAPI with new fields?
    The second question is very important for us because we have to import in the system about 30.000.000 of Business Partners.
    Kind Regards.
    Eugenio.

  • Adding fields to business partner relationship

    Hi Experts,
    I'd like to add some new fields to definite business partner relationship type.
    What I've already done is:
    In EEWB I've created an extension for the object BUPR with type ADD_NEW_ATTRIBUTES_TABLE "Add New Attributes". In wizard I've choosen Cardinality as Single Instance and after that added two fields.
    With some problems (syntax error in generated Z-Function Group: different numbers of parameters in FORM and PERFORM, which was corrected manually later) I've finally creaed this extension.
    Everything looks fine in GUI: my new fields were added and work perfectly.
    Next step, where I'm right now, is to add this new fields to WebUI.
    It seems that EEWB didn't create the extension of BUPR in the same manner as for BUPA, cause I can't see my new fields in Configuration for BP_DATA/AccountRelationshipsEF view right out of the box. But instead I can see a new BOL-object with my new fields in BOL Model Browser as a dependent object of BuilRelationship.
    Could anybody provide me with clear and understandable help for this?

    Please, anyone can help?
    Thanks!!

  • Add Role To Business Partner

    Hi,
    I am using BAPI "BAPI_BUPA_ROLE_ADD_2" to add a Role to Business Partner.
    When i try to do that manually using transaction BP, in change mode i select the role to be added and SAVE. The role gets added to the BP.
    But when i try the same using BAPI, it does not work. The code is written as below.
    -- code ---
    DATA IT_BAPIRET2 TYPE TABLE OF BAPIRET2.
    CALL FUNCTION 'BAPI_BUPA_ROLE_ADD_2'
      EXPORTING
        BUSINESSPARTNER     = '900001'
        BUSINESSPARTNERROLE = 'TR0809'
      TABLES
        RETURN              = IT_BAPIRET2.
    COMMIT WORK.
    After which i go to the Table BUT100, give the Business partner number, No records are found.
    Please give me a solution or an alternative to add role to BP.
    Regards,
    Santosh

    Hi,
    IT_BAPIRET2  is Initial. No Error Messages.
    I don't get any error messages. i.e.  IT_BAPIRET2 is not filled with any messages.
    Additional Info:
    Only when i run the BAPI directly from SE37 Tcode, first time IT_BAPIRET2  is initial. Second Time if i just come back ( without doing /NSE37 ), if i just execute , Then it says the Role 'T...' already exists.
    But if i execuet the same BAPI again /NSE37 , IT_BAPIRET2  is initial.
    Thought the reason would be because of Memory / Buffer.
    After which i go to Tcode BP see if the role is added to the Partner number. It does not happen. Also tries looking into the Table BUT100, it does not appear there.
    Then tried executing the BAPI from SE38 giving a commit work. Thinking Commit work is not happening when its being executed from SE37.
    But the same result, is there anything which i have to look into.
    Or an alternative function module which i can try.
    please suggest.
    regards,
    Santosh

  • Adding a New Check Box field in Business Partner

    Experts,
    I know there are hundreds of thread on this topic. But i'm not clear with that.
    I have to add a new Check box in the Business Partner Screen. We are on SRM 5.0.
    The check box should be placed in "Business Partner Status" Frame of "Company Data" Tab.
    How to go about this, Kindly please expalin the steps.
    More over the Check box will be used for further processing in other tabs.
    Pl throw some light on that aspect also.
    Rgds
    Immediate Rewards for Sure
    SV

    Hi
    Try this link, already copied by ..
    Re: vendor master extensions by customer
    It is not possible to display F4 help for customer fields in BBPMAININT Transaction.
    Supporting link ->
    F4 for customer table fields
    Other useful links ->
    Note 675800 - Business partner enhancement SRM on maintenance screen
    Re: How I can save customer fields in Vendor master?
    Re: Adding new fields in VEndor master data in EBP
    Hope this will help.
    Regards
    - Atul

  • Adding new fields to business partner relationship

    Hi all,
    We are trying to add new fields to business partneru2019s relationship using EEWB. We are adding 4 new fields when relationship type is "Is shareholder of", so we have created a new project at transaction EEWB and then a new extension and the wizard is started. At the wizard, we have define the 4 new fields with cardinality 1:1 and time dependent without gaps.
    Also we have done all the extension setup, so the new fields only appears when that relationship is created and we can fill the new fields.
    The problem that we have is that every time that you create a new relationship type "Is shareholder of", even if you fill the new fields or not, the system spend more than one hour to save the data, having also a "STACK_STATE_NO_ROLL_MEMORY" dump... It seems that the system goes inside a loop that never ends, but we haven't change any function, because the standard functionality is enough for us.
    Any help on how to proceed?
    Thanks in advance!!

    Please, anyone can help?
    Thanks!!

  • Name 1 and Name 2 fields of Business Partner - changes get set back

    Dear Experts,
    in SRM 7.0 CS, i am facing the following problem w.r.t Messages in the shopping cart.
    It is known system behaviour, that in case the contend of the fields Name 1 or Name 2 of the Plant Business Partner is longer than 35 digits, than a (warning) message is displayed in the shopping cart with the content like "Name 2 field, limited amount of digts can be displayed..."
    I have shortened the content of the field Name 2 of the BP of my plant, but it seems that after some time the old contend has been written back into the field for some reason.
    Has anyone experienced a similar problem? What could be the cause? Is it recomandable to use the "Influence Message Control" configuration for this message, in order to hide it completely?...or should the "Message Control By User" configuration be used?
    Thank you very much in advance for your support.

    Dear All,
    i seem to have been able to solve the problem by not only making the change on the BP, but also respectively changing the content in the respective fields in PPOMA (reduce the length of the content in the fields Name1 and Name2 of the location).
    Thank you.

  • Add field in customer partner function tab (XDnn)

    Dear all,
    I know that it is possible to add some specific fields in XDnn transaction, but I would like to add a field in the partner function tab in the customer master data.
    We can see : partner function, number, name, description and I would like to add the street in this screen.
    do you know if it is possible and how please ?
    thanks for your help
    Véronique

    Hi
    Until I know, it isn't possible. I think that you refer to table control TCTRL_PARTNERROLLEN in dynpro SAPMF02D 7324. I cannot see any BADI, enhancement or other tool.
    I'm sorry.
    Eduardo

Maybe you are looking for