How to search business partner on address?

Hi,
When I open the form "master data business partner" in search mode, the tab "Adresses" is gone.  How can I search for business partners in a particular street or municipality?  I can find it by writing a SQL query, but my end-users cannot do this.  They want to do it with the normal way.  Is this possible with SAP B1 (version 8.8)?
Thank you for your helpful answers!
Regards,
Pieter Verhaeghe

Hi Pieter......
This Functionality is not given in SAP in standard but you can have a work around.
You can create a UDF at Business Partner Master Data Level where you can display the value of Municipality or state through FMS and later when you take it into Find mode, the udf still be there and you can search by your way.......
Hope this work around helps you for your query.......
Regards,
Rahul

Similar Messages

  • How to search Business Partner filter by country

    As topic above, how to search Business Partner filter by country, which table is involve?
    Appreciate your kind effort
    Thx

    Hi
    1) you can use the function module 'BAPI_BUPA_SEARCH' to filter BP by country. In the address data field, you can enter country code (say IN for India) and this will return you the list of BP's belonging to the country.
    2) You can use view BBPV_BUPA_ADDR to see the BP's for a particular country.
    for this view, if you look at the "Table/Join Conditions" tab, you can see the underlying tables used for join ->
    BUT000 ->BuPA Master
    BUT020 ->BP Address table
    ADRC ->Address services.
    Hope the above info helps.
    Regards
    Nisha

  • How to create business partner temblet

    Dear friends,
            how to create business partner temblet .
      please send the following mail address
       [email protected]
                      Thangs in advance
    Regards,
    S.Siva

    hi
    Refer to the links below might get u some info
    General Business Partner-initial screen
    http://help.sap.com/erp2005_ehp_02/helpdata/en/39/0b77a9df3011d189fc0000e829fbbd/frameset.htm
    Business partner as Template
    http://help.sap.com/erp2005_ehp_02/helpdata/en/2f/3a2a09969611d2ac750000e829fbfe/frameset.htm
    Business Partner
    http://help.sap.com/erp2005_ehp_02/helpdata/en/43/a0dfe510d825e5e10000000a1553f7/frameset.htm
    Creating or Changing Master data Template
    http://help.sap.com/erp2005_ehp_02/helpdata/en/c7/adcef39296f94e8ef7077ce160200e/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/57/92f63aad7e3014e10000000a11402f/content.htm
    http://b1up.net/index.php?id=modules
    Reward if USeful
    Thanx & Regards.
    Naren..

  • How to Create Business Partner with  fix number in t-code :BP

    Dear SIr,
    Normally I will set number range for auto  to create Business Partner. In case , If we would like to crea How to Create Business Partner with  fix number in t-code :BP , howe to do?
    Please kindly advise.
    THnak you and best regards,
    Vimol

    Dear Shobhit,
    How to put the thread as you mentioned.
    Best regards,

  • How to create business partner in solman

    How to create business partner in solman?...

    Hi,
    Check pages 8 - 11 in this document.
    https://websmp209.sap-ag.de/~sapidb/011000358700001197002005E/Addtional_Information.pdf
    This would solve your problem.
    feel free to revert back.
    --Ragu

  • 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

  • How to create Business Partner in CRM 2007

    Hi gurus!! how are you? I´m a rooky to sap crm and I would like your help and guidance to know how can I create a Business Partners and Roles.
    Whatever detailed help or documentation you may give me will be rewarded =)
    Thanks a lot in advanced!!!
    Lorena.

    Hello!
    In the WebUI there are different Business Partner Types (Person, Organization, Group).
    From user perspective you can differentiate between:
    - Corporate Account (Organization)
    - Individual Account (Person)
    - Group Account (Group)
    - Employee (Person)
    - Contact Person (Relationship) (Person)
    All these Business Partner have an own Overview-Page. Usually you can create the Business Partner starting from the related Search-Result-List (by default the new-button is not available for Employees as a Sales Rep usually doesnu2019t create new Employees u2026).
    You can assign Business Partner Roles to these Business Partners (there is an own Assignment-Block within every Overview-Page of a Business Partner). Some roles will also get assigned automatically, if you create this Business Partner.
    However it is possible to assign multiple roles to the Business Partner. Itu2019s also possible to have different Views of one Business Partner. E. g. an Individual Account can also be a Contact Person for another Account. But here it is not the Role determining the View it is the Contact Person Relationship doing this.
    The Role itself also has an impact on the UI of the Business Partner as dependent on the Roles some Assignment-Blocks are displayed or not.
    I hope this was not confusing u2026
    Best regards
    Arno

  • How to restrict business partner in selection help

    I want to restrict the business partner category shen selecting business partners, for example I only want the partners with the category 'organization' will be in the list, how to do?
    Bst regards,

    Hi,
    Goto the particular Search Help and in the Definition of that Search help, provide the default value for "BP TYPE " as the "ORG BP". Then, when ever you put  F4, only the ORG BP will be populated in the list.
    Thx,
    Waseem.

  • How to get business partner number of a Company code

    How to get Company code business partner number..
    Any FM or table name which can help us to get comapny code business partner number
    Actually we want to find the default address number of the company code.
    please suggest a way to find partner number of company code or directly to get default address number of the company code

    Hello LS Kumar,
    Try to use below Code may help:
    DATA ls_object              TYPE hrhctobjc.
    DATA ls_company             TYPE bbps_es_unit_id.
    DATA ls_company_bupa        TYPE hrobjbupas.
    ls_object-otype = is_org_unit_id-otype.   
    ls_object-objid = is_org_unit_id-objid.   
      CALL FUNCTION 'HR_OBJECTBUPA_GETBUPA'
        EXPORTING
          is_object               = ls_object
        IMPORTING
          es_hrobjbupa            = ls_company_bupa
        EXCEPTIONS
          object_type_not_allowed = 1
          OTHERS                  = 2.
      IF sy-subrc NE 0.
        RAISE EXCEPTION TYPE cx_bbp_es_not_found.
    endif.
    Which determines the company code of the user belongs to:
    CALL FUNCTION 'BBP_OM_DETERMINE_COMPANY'
          EXPORTING
            i_user_id = lv_user
          IMPORTING
            et_compc  =lt_compc
          EXCEPTIONS
            OTHERS    = 1.
    Regards,
    Sankarbabu

  • Business Partner: Maintain addresses per role

    Hi Guros
    We have a customer in a bankin sector that needs to maintain multiple addresses per BP and role. What we see in the system is managing multiple addresses per BP.
    The requirement is the following data model:
    BP ->> roles ->> addresses.
    Please advise how to meet this requirement.
    Regards,
    Benni Perzy

    Hi Benni,
    In the standard, this is not possible.
    Address is a part of the Central Business partner  data sets- and is totally independent of role.
    In fact, role and address are different datasets that have a 1:n cardinality with the BP.
    You would need to make a modification to realise this.
    Option 1 :
    Use the Adderss usage concept.
    Create a new address type in TB009, e.g. : correspondence address. Now, to ensure that this address type is only linked to this role, hide this address type for all other roles (using code modification).
    So only your special role can maintain and see correspondence addresses.
    Option 2 :
    Create a new relationship category. Suppose you want the BP to have multiple role dependent addresses, manintan these addresses for a master BP, and derive these addresses for other BP using the Assign Address function.
    E.g : Suppose I want to see 10 addresses only in role employe. I maintain an Employee relationship with an organization, maintain 10 addresses for the org, and then derive the addresses for the BP using the orgnization addresses through the Employee relationship. You can make the role as a prerequisite for the relationship so the link is like this.
    BP1> Role>Relationship->BP2-->Addresses
    You would ultimately need to do some different to realize this requirement since this is not supported in the standard !
    I hope this helps you.
    Cheers,
    Rishu.

  • How to create business partner with Role : "Loyalty Partner"

    Hello,
    During the creation of Loyalty Program, we can add loyalty partners which are Business Partners created with Role --> "Loyalty Partner". In standard package I could not see the the Role "Loyalty Partner"
    For this role to be available during the creation of Business Partner, does any business functionality needs to be activated or should we create new role "Loyalty Partner" through BDT
    Thanks
    Ram

    Hi Vishal
    Thanks for your explanation but I think it has not answered my question fully.
    Yes, I do agree that only Loyalty Partners can be added in a Loyalty Program and those are Business Partners.
    If you read through my question, I have asked how the system differentiates between Business Partners for example a sold to party and Loyalty Partner.  In other words, which part of data in the Business Partner is the one which actually differentiates a Loyal Partner with other Business Partners. I think, just creating a Business Partner with Role --> Loyaly Partner will not serve our purpose.
    The BP view is the same and the BP Role category does not contain my customization to differentiate this
    Hope you understand what I am trying to say. Please let me know if you have any questions !!
    Regards
    Ram

  • How to create business partner in a specific role

    Hi experts,
    We are implementing CRM 4.0 Business package in EP 7.0.
    When we checked the business partner creation screen, we couldnt find an option to create the business partner in a specific role (eg, prospect, sold to party, ship to party etc).
    When we create a business partner, it is automatically added to the "business partner - general" role.
    Can anyone suggest us how to enable the option of adding to different roles from the BP creation screen itself?
    Thanks alot in advance
    Shobin

    Hi Shobin
    For Creating a BP with only one specific role.
    You can enhance the BP by creating a transaction code that allows you to create BP only with specific roles.
    Tx code: to create a transaction code is SE93
    To assign the Tx code to a specific role related activity: BUSF
    Hope this would help.
    Regards,
    Rekha Dadwal
    <b>You gain a point for every point that you reward. So reward helpful answers generously</b>

  • How To upload business partner into sap crm using xif Adapter by XML File

    HI Guru's,
                 I got Requirement to upload the business partner information into sap crm system using xif adapters from xml file , please give  imformation how can achive this .
    Regards,
    Naveen Kumar MS

    Dear Naveen,
    please see the information given in note 448742 General notes on CRM external interfaces!
    Hope you can find the information!
    Regards, Gerhard

  • Search business partner master data by properties

    hi,
    it would be nice to search the business partners by properties as we can do it in the item master data.
    When i'm in find mode on business partner master data the tab "properties" is missing.
    best regards
    Markus

    hi,
    When you click open Business partner,it is in find mode,Press Ctrl + A,Press Ctrl+F,
    Tick required properties.
    Hope it solves problem.
    Jeyakanthan

  • How can I Business partner Number create manully or Externally In SRM 7.0?

    Hello all, I am working in SRM 7.0
    1. I am trying to replicate Employee from backend system to SRM, but I want that all Employee have same number in two  systems, for example:
    Employee 1000 in backend shows as 1000(Employee ID or Business Partner ID) in SRM
    How can I do it?
    2. How can I set Busines Partner Number range as external?
    3. There are several Business Partners in SRM 7.0
        For Example, Internal Bp(Employee, Purchasing Company) and External BP(Invocing Party and Contact Person and Employee so on).
        Is it possible to use each Business partner External Number Range separately?
        Ex) 0000000001 ~ 0000000100 : Employee Number
              0000000101 ~ 0000000200 : Contact Person
              0000000900 ~ 0000001000 : Supplier         
    Thanks in advance                    
    Chris.

    My opinion is standard function not support. Modification(not Enhancment) is necessary....

Maybe you are looking for

  • Upgrading to Windows 8, will certain HP features be updated for this in the (near) future?

     1. Product Name and Number      • HP Elitebook 8570w Workstation  2. Operating System installed (if applicable)       • Windows 7 64-bit Hey guys, I want to update to Windows 8 on my notebook and thus I ran the Windows 8 Upgrade Assistant. Spoiler (

  • No audio out preference in utilites

    here is my post in the macbook pro forum http://discussions.apple.com/message.jspa?messageID=7809239#7809239 well much to my surprise, after i updated to leopard 10.5.4 I now have no control over my output sound. i also have quicktime 7.5. I don't kn

  • Weblogic fails to start after upgrading obi from 11.1.1.5 to 11.1.1.6

    Hi, I performed an in-place upgrade on a 64 bit windows box from 11.1.1.5 to 11.1.1.6. Installation was complete without any errors. Also, the RCU is upgraded. When i start the weblogic server, it throws the following error: at weblogic.t3.srvr.BootS

  • Values becomes #available or #error after formaula

    Hi All, I am creating a webi report on SAP universe. Problem : Whenever I apply any date related formala on the date field , all the values in the measure becomes #error or #available . Additional informaion : it has got say 6 fields like Cusotmer ,

  • Admin server looses managed servers

    we hava 2 clusters of 2 wls 6.1 sp2 instances each on 2 hpux 11 boxes. The wls console shows all the instances when booted up. But suddenly, after a period( and this random without a pattern), the admin seems to loose some of the managed servers. The