Business Partner Search using Sales Area Fields

Hi,
I am wondering if anybody knows how to enable sales area fields as search criterias for business partner search?
The component is BP_HEAD_SEARCH.  When I go into configuration of view BP_HEAD_SEARCH/MainSearch I find no Sales Area related available search criterias. Am I the first to ask for this option or did SAP ignore the requirements of the customers? It seems for me to be a very basic requirement.
Please help.
Thanks!
/Elvez

Hello,
This option has never been present in any previous CRM versions and not in the 2007.
If you want this functionality I guess you'll have to develop it from scratch.
I would agree with you that this is a basic requirement if it's a R/3 system where business partners are more sales area oriented. But this is a CRM system...
Regards,
Joost

Similar Messages

  • How to do search of business partner data, using a message from external sy

    Hi CRM Gems,
    please send the answer to the following question.
    1.How to do search of business partner data, using a message from external system. What FM’s, BAPI etc that can be used for this functionality?
    your answer will be valuble to me.
    Regards,
    Krishna..

    Hi krishna,
      Look at BAPI   BAPI_BUPA_SEARCH.
    Regards.
    Manuel

  • New HTML for Business Partner Search in CIC0

    Hi,
    I created a new HTML object, copy of CRM_CIC_SEARCH_DISPLAY, in SMW0, changed the HTML code and assigned this new HTML to my Business Partner Search profile.
    But when testing this change it seems that the HTML is incorrect because when I search and confirm the BP, the fields in the HTML are not filled with the BP information.
    I imported the HTML code to the HTML object CRM_CIC_SEARCH_DISPLAY and it works fine. So the problem is not with the code, but with the HTML object itself. Is there any need to activate it or something like that?!
    Thanks a lot!
    Susana Messias

    Hello Susana,
    please check if you have done all the necessary steps:
    1. Copy in transaction SMW0 the HTML template CRM_CIC_SEARCH_DISPLAY      an own one (Z_<YOURNAME>.htm).
    2. Export this new template to your local PC and use a HTML Editor to
       work on this file (like Frontpage).
    3. Import this new page in SMW0 again to the copied Web object.
    4. Make sure in transaction CRMC_CIC_SEARCH_CNTR the mapping of the
       fields is setup for the new template (copy all entries of the
       standard template).
    5. Make sure the new web object is assigned to the search profile in
       CRMC_CIC_SEARCH_RULE
    Regards, Gerhard

  • Enhancement of Business Partner (Relationships) using BDT -Bus Data Toolset

    Dear Experts,
    I have a requirement from my customer enhancing the Business Partner Relationships using BDT.
    I should add 2 fields namely salary, employer start date in the Business partner Relationships, it must be added in the characteristics of relationships as one employee can have multiple employers and vice versa.
    If I would like to add the fields in Business Relationships using BDT, are the steps same as adding fields in business partner? or do we need to perform any other steps? Did someone already did this type of modification, please provide your suggestions.
    After adding the fields is it possible to cusomize the fields for history of the changes? e.g. if salary field has been newly added and after creating a BP after some days I want to change the salary and for the changed salary I want to have a history.
    I would appreciate if you can help me with your suggestions.
    Many thanks and best regards,
    Afroz

    Solved the problem Using EEWB.

  • Business partner migration using lsmw direct load .

    Hi,
    We need to do business partner migration using the direct load method.
    We are thinking of using direct input method of lsmw for the data transfer.
    Could someone suggest a proper object/ subobject for the same.
    Alternatively has anyone done the same using LSMWbapi or LSMWidocs.
    Inputs will be highly appreciated <<text removed>>
    Dirk.
    Edited by: Matt on Dec 19, 2008 1:33 PM -  Do not offer rewards.  Please read the rules of engagement.

    Hi ,
    Does this solution give any way to update the customer fields too ?
    We have few customer fields added to BUT tables ... How can we update these fields using LSMW and IDOC ?
    Could you please give your opinion on thesame.

  • Hiding the business partner search parameter from search criteria

    Hi,
    I have business partner search parameter whose value is hardcoded in the lead search..
    I would like to hide the business partner search parameter from displaying only..
    I need to achieve it programatically and not in configuration and all.
    Do I need to write the code in P method or which method?
    Thanks
    Madhukar

    Hi,
    The code is as below and I just need to have the functionality of BP search field intact but hide it from display in web UI..if any correction is required let me know..
    ***current date is populated into LV_DATE
      DATA lv_date TYPE string.
      lv_date = sy-datum.
    ***current user login name is populated into LV_SUNAME
      DATA lv_suname TYPE string.
      lv_suname = sy-uname.
    ***Fetching the BP ID of the current user who logged into L_PARTNER
      DATA:l_partner TYPE bu_partner.
      CALL FUNCTION 'CRM_ERMS_FIND_BP_FOR_USER'
        EXPORTING
          iv_user_id = sy-uname
        IMPORTING
          ev_bupa_no = l_partner.
    ***structure for BUT051
      TYPES : BEGIN OF ty_data,
               relnr    TYPE bu_relnr,
               partner1 TYPE bu_partner,
               partner2 TYPE bu_partner,
               date_to  TYPE bu_datto,
             END OF ty_data.
    ***work area for BUT051
      DATA wa_but051 TYPE ty_data.
    ***Fetching Dealer BP ID which is 'PARTNER1' field in BUT051
      SELECT relnr
             partner1
             partner2
             date_to
      FROM but051
      INTO wa_but051
      UP TO 1 ROWS
      WHERE partner2 = l_partner.
      ENDSELECT.
    ***Geting the dealer BP ID into LV_DEALER
      DATA lv_dealer TYPE string.
      lv_dealer = wa_but051-partner1.
      DATA: lr_qs          TYPE REF TO cl_crm_bol_dquery_service,
            lr_search_node TYPE REF TO cl_bsp_wd_context_node_asp,
            lr_col         TYPE REF TO if_bol_bo_col ,
            lr_iterator    TYPE REF TO if_bol_bo_col_iterator ,
            lr_param       TYPE REF TO if_bol_bo_property_access,
            ls_selection   TYPE genilt_selection_parameter,
            lv_low         TYPE sy-datum,
            lv_attr_name   TYPE name_komp ,
            lv_value_set   TYPE abap_bool .
      IF iv_first_time EQ abap_true.
    * to initialize the search view.
        CALL METHOD super->do_prepare_output
          EXPORTING
            iv_first_time = iv_first_time.
    * fetch the search node and its content.
        lr_qs = me->get_current_dquery( ).
        lr_col = lr_qs->get_selection_params( ).
    * check the currently visible search attributes.
        lr_iterator = lr_col->get_iterator( ).
        lr_param    = lr_iterator->get_first( ).
        WHILE lr_param IS BOUND.
    * get the parameters
          lr_param->get_properties( IMPORTING es_attributes = ls_selection ).
          IF ls_selection-attr_name = 'VALID_FROM'.
    * SET_PROPERTIES
            ls_selection-low = lv_date.
            CALL METHOD lr_param->set_properties
              EXPORTING
                is_attributes = ls_selection.
            lv_value_set = abap_true .
            EXIT.
          ENDIF.
          IF ls_selection-attr_name = 'BU_PARTNER'.
    * SET_PROPERTIES
            ls_selection-low = lv_suname.
            CALL METHOD lr_param->set_properties
              EXPORTING
                is_attributes = ls_selection.
                lv_value_set = abap_true .
            EXIT.
          ENDIF.
          lr_param = lr_iterator->get_next( ).
        ENDWHILE.
        IF lv_value_set EQ abap_false .
    * it was not part of the visible attributes, then add it at the end.
          CALL METHOD lr_qs->add_selection_param
            EXPORTING
              iv_attr_name = 'VALID_FROM'
              iv_sign      = 'I'
              iv_option    = 'EQ'
              iv_low       = lv_date.
          CALL METHOD lr_qs->add_selection_param
            EXPORTING
              iv_attr_name = 'BU_PARTNER'
              iv_sign      = 'I'
              iv_option    = 'EQ'
              iv_low       = lv_dealer.
        ENDIF.
    * for a proper display of the added / changed attribute.
        lr_search_node = get_dquery_cnode( ).
        lr_search_node->build_parameter_tab( ).
      ELSE.
    * non first time call - just delegate to superclass.
        CALL METHOD super->do_prepare_output
          EXPORTING
            iv_first_time = iv_first_time.
      ENDIF.

  • Problem with SRM Business Partner enhancement using EEWB.

    Hello Gurus,
    I am doing Business Partner Enhancement using EEWB. basically adding new tab with few data fields. After using EEWB, the new tab hasbeen generated automatically and BP is creating successfully and data is stored in tables.
    But in the custom tab, the fields are displaying in table format after using EEWB. User dont want in the table control, and they want normal screen fields.
    How can we do that.  After that, will it reflect to portal automatically or do we need to do any thing?
    Pls suggest me.
    Regards,
    Ram

    Hi all,
    I used EEWB to enhance BUT000 wiht a new field and a new tab.
    How can I show them in SRM7?
    BBPMAININT has been replaced with an "equivalent" WebDynpro application and old Badis are not supported anymore.
    any ideas?
    thanks in advance.
    Albe

  • High-speed business partner search

    Hi, all
    http://help.sap.com/saphelp_crm60/helpdata/fr/b0/7ff3f1b791481f89147cacc02de8bc/content.htm
    If high-speed business partner search is set up in your system, you can enable it in the account identification profile so that all interaction center (IC) agents assigned to this profile can use high-speed search to identify accounts in the IC WebClient. For searching large numbers of business partner records, high-speed search is more efficient than standard search because it stores and indexes your account data in main memory. To maximize the availability of high-speed search, the data is updated from the database once every six hours (default setting), though you can change this setting to balance freshness of data with maximum system performance.
    Do you know about successfully implementation of this functionality?
    Do you use this functionality?
    Denis.

    Closed.

  • How to Remove Business Partner Address using DI Server

    Hello,
    I need to remove Business Partner Addresses using DI Server, the example in the SDK only mentions the remove of the entire business partner, but I need to delete only one of the business partner addresses, how can it be done?

    Hi,
    the usage of the "UpdateWithSubDeletion" method of B1 object atom might be an option.
    You need to update the complete business Partner with the changed amount of addresses.
    The usage is tricky, you need to retrieve the BP, which you want to update, first via synchronous retrieval method using import/export mode.
    From the retrieval result you should start to update every segment with all fields including the BPAddresses segment in exactly the same sorting order as displayed from the synchronous retrieval.
    Best regards
    Bastian

  • BUPA_DEL: Business partner  still used in business transactions

    Hello,
    I try deleting some out-dated Business Partners by tr. BUPA_DEL.
    But the transaction prevents from deleting BPs saying "Business partner  still used in business transactions".
    But I can not find in what business transactions  these BPs are used.
    Tr. S_SMC_47000016 don't show any support messages which belong to these BPs.

    Hello,
    Please try the transaction CRMD_ORDER_BP.  Perhaps it could help.
    Best regards,
    Miguel Ariñ

  • Business Partner Creation/Display - General Data fields are missing

    Hi,
    We have an issue in our ECC6.0 system. In FPP1/FPP2/FPP3 transactions General data fields such as Driver's license, SSN, Employee class are missing under Identification tab. But the same are displayed in BP transaction code. What configuration would causing this issue.

    I found a SAP Note 844949 which is talking about the same kind of issue. As per the note I regenerated subscreen containers for application object BUPA.
    Call transaction BUSP and generate the subscreen containers for the application objects BUPA, FICA and BUPR. To do this, set the "All screens" indicator under "Generate All Screens or Just Selected Screens".
    If this does not correct the incorrect display, use transaction BUPT for the business partner or transaction CAWM for the contract account to make sure that the fields are not missing due to the field modifications. (If you cannot call these transactions, exit the SAP Easy Access menu by using /n and then call BUPT or CAWM.

  • Sales Area Fields Mandatory Dialog Box not coming up

    Hello Forum,
    We have the Business Partner PCUI Application - CRMM_ACCOUNT, where in, there are mandatory fields made under Tab General Information and Sales Area. We have done the necessary changes in field grp settings and generated the layouts. for relevant field groups.
    When we create New Business Partner, the control is on the 'General Information' TAB. PCUI doesnot allow to save the business partner, unless, mandatory fields are filled out. It gves a Javascript Popup to fill the mandatory fields.
    But the same is not the case with Sales Area Tab, When we select Sales Area (Either by using Template Functionality or Selecting the Sales Area Manually), the fields in this TAB strangely remain in Readable Format only. No Changes are allowed to be incorporated. In this case there is no dialog box prompting for filling the mandatory fields. Also, it allows to save business partner w/o filling the sales area data mandatory fields.
    However, when we save, Change The Tabs (I.e. Goto General Information and come back to Sales Area Data, it sometimes enables the fields for Entry under Sales Area). And then it starts doing the mandatory field check in Sales Area Tab.
    Request, if anybody can provide, clues for this behaviour and resolution.
    Regards
    Tushar Kansara

    you must modify '''browser.chrome.toolbar_tips'''
    type in the address bar '''about:config'''
    then press the button''' i'll be careful i promise'''
    then type in the bar '''browser.chrome.toolbar_tips'''
    then '''Double-click''' on it, to make it''' false'''
    exit firefox and restart-it.
    See for more info : [http://kb.mozillazine.org/Browser.chrome.toolbar_tips Browser.chrome.toolbar tips ]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • Fast Order Entry - Business Partner Search / Suggestion

    Hi Experts,
    is there a way to configure the Business Partner suggestion as shown on the screenshot? Is it somehow possible that I enter the name of the partner , lets say 'miller' and the system automatically suggest the corresponding business partner 1000US_A40 (= Miller Furniture )? Or is the only way to use F4? The goal is to manually create an order as fast as possible, therefore the search with F4 is too time consuming.
    Thanks a lot
    Best Regards,
    Tom

    I've noticed that in my use of the system, in similar scenarios for example; selecting a resource it will only suggest items based on the specific field you're entering.
    With our resources (vehicles, trailers) the Fleet ID number is used as the identifier field but the operational staff tend to refer to equipment by it's registration number. So if we try to type in the registration number (a different field), the suggested values do not recognise it.
    The screen capture above in the original post appears to display this as well - field holds the identifier number but the request is for part of the description field to be entered and used within the suggested values. The connection here is that the description field is similar to our registration field in that they aren't the primary identifier fields.
    In regards to Bharath's suggestions, (1) appears to already be enabled since the suggested values have popped up. The questions is whether or not a search term relating to a field (that isn't the Ordering Party ID) can be typed and the suggested values will recognise the connection.
    Granted, I understand this isn't an answer. I simply wanted to weigh in on this discussion as I face a similar issue that we're unsure of how to solve.
    Regards
    Justin

  • Business Partner search

    Hi All,
    we have a system where Employees are created in R/3 and transferred to CRM using pfal.
    Employee number in R/3 and the BP number generated in CRM are different.
    While trying to staff a person using BP number, the search term 1 and search term2 are given as Last name and first name respectively. How can this be changed. Where is the configuration done for this?
    I want to make the employee id in R/3 as the search term1. is it possible?
    thanks,

    Please setup proper config at following link in SPRO
    Cross-Application--&#61664; SAP Business Partner-&#61664; Basic settings&#61664; Define Roles
    And all other required config also than try….
    Enjoy SAP………..

  • Creation of Business partner by using the vendor master

    Dear all ,
    I have a requirement as follows. I  Have already vendor master created  in MM .Now the requirement is  while creating Business partner I have to use this vendor as the business partner .
    Can experts suggest the possibility of this .
    Regards.
    Arjun.

    Hello Arjun,
    Yes, this feature also works in 4.7. What has happened is that in ECC 6.0 the BP functinality has been totally redefined with a lot of automations. As such, if properly configured then in ECC 6.0 there is no practical use of the FLBPD/FLBPC Tcodes. However, in 4.7, both these traqnsactions should be working fine. The SAP ntes that I have mentioned are however only for ECC 6.0.
    Kind regards,
    Suvarghya Dutta
    Edited by: Suvarghya Dutta on Nov 27, 2008 4:02 PM

Maybe you are looking for

  • Iphone 5S HD Voice

    Does the 5S support HD Voice Calls ?

  • HT201343 My mac is OS X 10.6. has not airplay. how to make it work?

    My mac is OS X 10.6. has not airplay. How to make it work?

  • Set unit preferences (Javascript)

    I can't find a way to set the unit preferences for Illustrator CS6/CC using JavaScript. I found that this works (setting units for stroke): var units = 2; // 0-inches, 1-milllimeters, 2-points app.preferences.setIntegerPreference("strokeUnits", units

  • Backend po creation

    Hi SRM Experts, scenario classic po is created in ecc60 .before creating po in the back end some validations r to be madefrom ecc6 and according to the check some fields in the po has to be modified and this modified fields should be populated in the

  • Lost all photos/albums from library after upgrade to 5.0.2

    After auto-updating iPhoto to version 5.0.2, I no longer have any photos or albums in my iPhoto library. Where did they go? I can't even find specific titles using a search of the hard drive. What can I do to get them back? -Mike