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

Similar Messages

  • Check Box in SAP Business Partner

    Hello Everybody,
    I'm working with BUPT and trying to place a check box in SAP Business Partner (Role: MKK).
    Actually the Check box is delivered from SAP standard (Function Group: FSBP_05 and screen 0201) and I'm trying to custom it under Partnerdaten "BUP310". I have gone through the standard customizing procedure. Still the Check box field is not visible on the screen.
    Can anybody please provide me a tip or any kind of Doku.
    Thanks and Regards
    Ravi

    Hi Ravi, check this.
    See these related SAP OSS Notes.
    Note 675800 - Business partner enhancement SRM on maintenance screen
    Other Related Notes
    937838 - Customer fields on BBPMAININT: Dump on Vendor Data tab
    821235 - Customer enhancement for maintaining BP causes errors
    672960 - User-defined fields 2
    494966 - Composite SAP Note for Easy Enhancement Workbench (EEW)
    484597 - Customer enhancement of CRM applications
    937838 Customer fields on BBPMAININT: Dump on Vendor Data tab
    853818 DLA: Error messages in BBPMAININT not displayed
    847618 DLA: IBU data not displayed 14.10.2005
    821235 Customer enhancement for maintaining BP causes errors
    cheers,
    Hema.

  • Adding a new check box in change purchase order screen

    Hi
      I have to add one custom field a check in the screen for change purchase order in EBP.
    We are using ITS.
    Kindly advice.
    Thanks and Regards
    Manoj

    Hello Manoj,
    you can define Customer Fields (CUF) at header, item, accounting level on any document type (including PO).
    Adding seach fields acts as old ABAP method of table append, i.e. those fields are stored in standard SRM tables. So you can process your own logic and checks against those fields.
    There is a BADI to control the display or not, the input or not, the default or input values.
    There is a BADI to control the ergonomy of CUF (by default they are added one after the other after standard fields).
    There have been many posts about CUF and linked OSS notes explaining own it works and which includes to use.
    Rgds
    Christophe

  • Add a new check box when a button is clicked?

    Hi ,
    I was trying to add a check box dynamically when a button is pressed.
    The check box contains title and a textbox for the user to enter data.
    For example , when the user hits addnew button , a new check box (title-name)
    with a textbox for entering name should appear on the form.
    Please give me any examples.
    Please help
    thanks

    here i m posting a similar code. just have a look at it and try it by yourself.
    str1="<select id=select"+ac+" name=select"+ac+">";
                        for(count1=0;count1<document.form1.select4.length;count1++){
                             str1 = str1 + "<option value='"+document.form1.select4.options[count1].value+"'>"+ document.form1.select4.options[count1].value  + "</option>"
    c[3].innerHTML= str1 + "</select>"     
    innerHTMLis userful for your requirement. and check somemore exaples like adding a row dynamically to a html page.
    Diablo

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

  • How to insert check box fields in a htmlb: tableview

    Hi,
    Can anybody tell me how to insert check box fields in a htmlb: tableview in a sequence of rows in a table view. How to generate the sequence no for the checkbox inorder to know the row that is checked.
    Thanks in advance,
    Aruna.

    Here is the code which has the custom "Checkbox" in the tableview & Triggers the event. <b>You can identify the checkbox based on cell ID (p_cell_id)</b> in the method "IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START" & Based on the event name + Cell ID. Look at the code & let me know if you any issue.
    <b>Layout:</b>
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content id               = "content"
                   design           = "design2002+design2003"
                   controlRendering = "SAP"
                   rtlAutoSwitch    = "true"
                   forceEncode      = "ENABLED" >
      <htmlb:page title="Test " >
        <htmlb:form>
          <%
      data TV_ITERATOR Type Ref To zcl_itr.
      data iterator type ref to IF_HTMLB_TABLEVIEW_ITERATOR.
      create object tv_iterator exporting appl_cons = application.
      iterator = tv_iterator.
          %>
          <htmlb:tableView id              = "fligts"
                           headerText      = "Flight"
                           width           = "100"
                           headerVisible   = "true"
                           design          = "alternating"
                           visibleRowCount = "10"
                           fillUpEmptyRows = "true"
                           showNoMatchText = "true"
                           filter          = "server"
                           sort            = "server"
                           onHeaderClick   = "MyEventHeaderClick"
                           table           = "<%= APPLICATION->itab %>"
                           iterator        = "<%= ITERATOR %>" />
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    <b>Event Handling:</b>
    DATA: EVENT_ID1 TYPE REF TO IF_HTMLB_DATA.
    EVENT_ID1 = CL_HTMLB_MANAGER=>GET_EVENT_EX( REQUEST ).
    CASE EVENT_ID1->EVENT_SERVER_NAME.
    IF NOT event_id1 IS INITIAL.
       if event_id1->server_event+0(9) = 'chkevent'.
      SPLIT event_id1->server_event AT '-' INTO v_event v_dummy v_row v_col.
      endif.
    endif.
    method IF_HTMLB_TABLEVIEW_ITERATOR~GET_COLUMN_DEFINITIONS.
         CLEAR p_column_definitions.
        CLEAR p_overwrites.
        DATA: tv_column  TYPE TABLEVIEWCONTROL.
        tv_column-COLUMNNAME  = 'FLDATE'.
        tv_column-edit        = 'X'.
        tv_column-sort        = 'X'.
        tv_column-TITLE               = 'Flight Date'.
        tv_column-WIDTH  = '100'.
        APPEND tv_column TO p_column_definitions.
        CLEAR tv_column.
        tv_column-edit        = 'X'.
        tv_column-COLUMNNAME          = 'CONNID'.
        tv_column-TITLE               = 'Conn.ID'.
        tv_column-WIDTH  = '70'.
        tv_column-HORIZONTALALIGNMENT = 'center'.
        APPEND tv_column TO p_column_definitions.
        CLEAR tv_column.
        tv_column-edit        = 'X'.
        tv_column-COLUMNNAME          = 'CHECKBOX1'.
        tv_column-TITLE               = 'Check Box'.
        tv_column-WIDTH  = '30'.
        tv_column-HORIZONTALALIGNMENT = 'center'.
        APPEND tv_column TO p_column_definitions.
    endmethod.
    METHOD IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START.
           DATA: L_EVENT TYPE STRING.
      CASE P_TABLEVIEW_ID.
        WHEN 'fligts'.
          CASE P_COLUMN_KEY.
            WHEN 'CHECKBOX1'.
    *          CONCATENATE 'chk_event' '123' '2323' INTO L_EVENT SEPARATED BY '-' .
    CONCATENATE 'chkevent' p_cell_id INTO l_event SEPARATED BY '-'.
              P_REPLACEMENT_BEE = CL_HTMLB_CHECKBOX=>FACTORY( ID = P_CELL_ID
            ONCLICK = L_EVENT CHECKED = 'false' ).
          ENDCASE.
      ENDCASE.
    ENDMETHOD.
    Hope this will solve your problem.
    <b><i>* Reward each helpful answer.</i></b>
    Raja T
    Message was edited by:
            Raja T

  • Add a new check box when a button is pressed??

    I was trying to add a check box dynamically when a button is pressed.
    The check box contains title and a textbox for the user to enter data.
    For example , when the user hits addnew button , a new check box (title-name)
    with a textbox for entering name should appear on the form.
    Please help
    thanks

    ganeshpuppala wrote:
    Hi ,
    Thanks for the reply , I want to just do the task in java script.
    Can you explain with an example.
    thanksSince you are on a Java forum, I can only assume you want to be talked out of using JavaScript. And since you didn't indicate your choice of GUI toolkit, the default assumption is that you want to use Swing. Congratulations! Start here:
    [http://java.sun.com/docs/books/tutorial/]

  • How to create a new check box using form personalization.

    Hi Frs,
    I have a requirement to create a new check box in AP form using form personalization.
    Pls help me in achieving this.
    Note: we have to use only form personalization not custom.pll.
    Thanks
    Rajesh

    Pl see ML Doc 420518.1(Limitations of Forms Personalization) for a list of things you cannot do with personalization - among them is creating new form objects such as checkboxes.
    HTH
    Srini

  • How do you get different check box fields to display based upon a list box selection?

    I am a relative newbie with LifeCycle Designer ES using v.8.2.1 to create interactive forms to replace manual hardcopies.  I am working on a form that has a few pull down list boxes.  I want different check box fields to display based upon the selection of an item from one of the pull down lists.
    Any guidance on the best way to accomplish this would be greatly appreciated.

    Hi,
    Here is a sample with script in the change event of the dropdown. You may want to clear previous checkbox choices once the subform is hidden.
    It is good to group objects in a subform - that way you only need to hide the subform and not each object in turn.
    Good luck,
    Niall

  • Check Box Fields

    I am creating a form that has conditions that a person must follow. I need to set up a way to capture other conditions that haven't been included. I'm trying to figure out if there is a way to select other and have it automatically create check box fields and if it has the ability to have more than one field that comes up.

    To recap...
    Drop-down list - The drop-down list is part of a subform where a subform represents a page. Next and previous buttons are used to page up and page down through the subforms. The form was defined as a static form. Defining the form as a dynamic form resulted in the proper behaviour.
    Checkboxes - The form contains check boxes that are untitled. Untitled check boxes do not get a binding definition. Since the three check boxes in row 1 were all untitled there was no binding definition. Defining each checkbox with a name, which propogated to the binding definition, resulted in the proper behaviour.

  • 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

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

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

  • Formatted search on a 'check box' field

    Hi,
    I want to set the 'allow partial delivery' to an 'N' automatically. It comes up as checked when a new BP is created and I have not found anything in the setup that will change this. When I try to select this field to assign an FMS to it, it won't let me. Any suggestions?
    Thanks

    Art,
    You could not assign a FMS to a check box.  I would suggest that you create a template BP Account and make the settings you need and everytime you create a new BP use the template BP Account and Click DATA > Duplicate and this way you need not change the settings each time.
    Suda

Maybe you are looking for