CRM 5.0 segmentation: person vs organization

In CRM 5.0 is it possible to:
<b>(1)</b> create a profile with organization attributes (e.g. sales volume),
<b>(2)</b> link these organizations to persons with specific relationships to the above organizations
<b>(3)</b> further refine the profile with specific attributes pertaining only to the persons from (2) above (e.g. title: vice president)
<b>(4)</b> have the final target list be <u>only</u> person business partner records
From the 5.0 release notes: <i>Selection using relationships increases the flexibility of your segmentation activities, particularly in business-to-business scenarios. When generating target groups, you can now select business partners based on both their personal data, as well as the data for their organization. The person and organization are saved with the target group.</i>
However, it is not clear to me from the above that I can limit my final target list to only persons (not the organizations).
My company targets only person business partners, not the organization, when performing marketing campaigns.
Thank you for your help - Matt

Thank you, Gregor.
I'm still confused by the following portion of the release notes "<i>The person and organization are saved with the target group."</i>
It would be a problem for my company if organizations remained in the final target group.
Thanks again, Matt

Similar Messages

  • Target group with attributes of persons and organizations

    Hi,
    we are using marketing attributes for persons and organizations.
    Now, we want to realize a segmentation for organizations with marketing attribute “productgroup xyz” and persons with marketing attribute ”decider”.
    Is it possible to combine organizations with marketing attributes and persons with marketing-attributes in one target group?
    thanks

    Hi,
    thank you very much for your answers!
    I’m sorry, I think my description was too short. I have the following situation /  problem:
    I am using InfoSet CRM_MKTTG_BP_ORG with business partner BUT000-PARTNER_GUID.
    My person datasource based on Info Set CRM_MKTTG_BP_ORG and business partner BUT000_PER-PARTNER_GUID.
    Furthermore I’m using an attribute Set for organizational attributes and an attribute set for person attributes.
    Now I want to build up a target group with persons who have specific attributes. The persons should be members of organisations with specific attributes.
    Example:  Persons with attribute “decider” should be member of organizations with attribute “productgroup xyz”.
    We are using SAP CRM 5.0. I added the function modul CRM_MKTTG_PF_BP_TAB_TO_CP in my organization Datasource. 
    But I have problems to build up a profil set and a target group where I can combine the attributes of the organizations and the attributes of the persons. The counting result is ‘0’.
    I hope my description is understandable. Thank you in advance!
    Volker

  • CRM 5.0 Sales Area Data - Organization Tab

    Hi All,
    We have upgraded to CRM5.0 and as a result, under Sales Area Data a tab called 'Organization' has appeared and I cannot seem to remove it through field groupings even though all the fields available under field groupings are hidden.
    Under field groupings there are 3 fields for configuration:
    District
    Sales Group
    Sales Office
    These are all hidden. Yes on the Sales Area Organiation tab two greyed out buttons appear:
    Own Data (with create icon)
    Own Data (with delete icon)
    Also under sales area data there are other tabs such as 'Shipping' and 'Fact Sheet', all their fields are cojnfigured to be hidden and as a result their respective tabs (correctly) do not appear on the screen.
    Does anyone knowe if it is possible to remove these and what is the correct way to remove this tab from the screen?
    Many Thanks for any help/advice given.
    David

    Thank you, Gregor.
    I'm still confused by the following portion of the release notes "<i>The person and organization are saved with the target group."</i>
    It would be a problem for my company if organizations remained in the final target group.
    Thanks again, Matt

  • Convert customers of type person to organization

    Hello Everyone,
    Is it possible to convert a party type of person to organization by some TCA API?

    Hi JayPatwa,
    I did that on an 11.5.10.2 installation. Hope that it work on R12.
    We split the organization name into first,middle and last names based on some logic. When we queried the customer from front end, all three parts of the name were displayed.
    Below are the major steps that I followed. Of course, I had to remove the details due to company policies :)
    Check the interface table documents about the PERSON_FLAG ...there was something to be wary of regarding this column.
    --set person flag
       l_person_flag:='Y';
    --split name into first, middle and last
        l_last_name   :=last_name;
        l_middle_name :=middle_name;
        l_first_name  :=first_name;
    --obtain the orig_system_reference from hz_parties
          SELECT orig_system_reference
            INTO l_add_ref 
            FROM hz_parties
           WHERE party_number=consumer_id;
    --insert into ra_customers_interface_all
        INSERT INTO ra_customers_interface_all
                    orig_system_customer_ref
                    ,insert_update_flag
                    ,customer_name
                    ,customer_name_phonetic
                    ,person_flag
                    ,person_first_name
                    ,person_last_name
                    ,customer_status
                    ,customer_attribute_category
                    ,customer_attribute5
                    ,customer_attribute6
                    ,last_updated_by
                    ,last_update_date
                    ,created_by
                    ,creation_date
                    ,last_update_login
                    ,url
             VALUES
                    l_add_ref
                    ,'U'
                    ,l_consumer_name
                    ,'Alternate Name'
                    ,l_person_flag
                    ,l_first_name
                    ,l_last_name
                    ,'A'
                    ,'Input extra consumer details'
                    ,consumer_class
                    ,consumer_catg
                    ,FND_PROFILE.VALUE('USER_ID')
                    ,SYSDATE
                    ,FND_PROFILE.VALUE('USER_ID')
                    ,SYSDATE
                    ,FND_PROFILE.VALUE('LOGIN_ID')
                    ,consumer_url
    --obtain the orig_system_reference
    --if the orig_system_reference does not exist then generate a new orig_system_address_reference
    --after checking that the customer exists in hca_cust_accounts
            SELECT hcasa.orig_system_reference
              INTO l_cust_address_ref
              FROM hz_cust_acct_sites_all hcasa
                   ,hz_cust_accounts      hca
                   ,hz_parties            hp
             WHERE hp.party_id=hca.party_id
               AND hca.cust_account_id=hcasa.cust_account_id
               AND hp.party_number=consumer_id;
    --insert into ra_customers_interface_all (for address details)
          INSERT INTO ra_customers_interface_all
                      orig_system_customer_ref
                      ,orig_system_address_ref
                      ,insert_update_flag
                      ,customer_name
                      ,person_flag
                      ,customer_status
                      ,person_first_name
                      ,person_last_name
                      ,address1
                      ,address2
                      ,address3
                      ,address4
                      ,city
                      ,province
                      ,state
                      ,country
                      ,postal_code
                      ,org_id
                      ,last_updated_by
                      ,last_update_date
                      ,created_by
                      ,creation_date
                      ,last_update_login
               VALUES
                      l_add_ref
                      ,l_cust_address_ref
                      ,'U'
                      ,l_CONSUMER_name
                      ,l_person_flag
                      ,'A'
                      ,l_first_name
                      ,l_last_name
                      ,address1
                      ,address2
                      ,address3
                      ,address4
                      ,'abcd'
                      ,NULL
                      ,'abcd'
                      ,country
                      ,l.postal_code
                      ,fnd_profile.VALUE('ORG_ID')
                      ,fnd_profile.VALUE('USER_ID')
                      ,SYSDATE
                      ,fnd_profile.VALUE('USER_ID')
                      ,SYSDATE
                      ,fnd_profile.VALUE('LOGIN_ID')
    --submit RACUST programHope this helps.
    Regards,
    Sujoy

  • Replicating the ERP Customers to CRM Persons and organizations

    Hello All
    Currently we want to replicate the customers from the ERP to CRM, I am confused which classifications in CRM I should replicate the ERP customers to. Also if I choose to replicate to classification (B u2013 Customers) how can I replicate the persons as persons and the organizations as organizations.
    Regards
    Jacopo

    Hi Jacopo,
    Kindly follow the below steps to achieve your requirement.
    1.Employees/Persons are created in ECC as customers (Should be the copy of Sold to Account Group to Z-Account group). This scenario comes when employees are not downloaded from HR module.
    2.User Exit - Z_PI_BP_ROLE_MAP_DE_EIOUT, to be implemented in ECC to map the Z Account Group to the Role in CRM. (BUP003 u2013 Employee)
    3.By, Default, Employees/Persons getting downloaded as ORGANIZATION and Role Sold-to-party.
    BUPA_INBOUND BAdI to be implemented in CRM for converting BP Category to PERSON and Role to EMPLOYEE.
    4.Customers (Sold-to-party and others) are downloaded from ECC to CRM based on the criterion you define in your object.
    5.Employees/Persons are also replicated by the same adapter object CUSTOMER_MAIN which brings Customers as a person in CRM.
    If custom roles are defined in CRM, check SAP Note # 914437, the standard BTE which maps ECC account groups to CRM Business Partner Roles should be enhanced using a custom User exit in ECC to map custom BP role in CRM to the account grp in ECC.
    The above steps will surely help you to solve your problem.
    Regards,
    Chandrakant

  • CRM 7.0 Contact person in order not replicated to R/3

    Hello all,
    I am currently facing issue with contact persons in CRM orders. There are several partners in the CRM order. Standard ones like ship-to party is replicated to R/3; employee roles are also replicated into R/3 within an order; contact persons (no matter if standard or Z) are not replicated from CRM order to R/3. There is neither no error message in BDOC nor in order.
    Partners are set correctly for mapping between R/3 and CRM (including Z partners) -
    tables CRMPARNR (R/3) and table CRMM_BUT_CONTNO (CRM) checked; GUIDs are there
    Users do change these contact persons manually sometimes.
    If order changed in ERP - including contact persons adding/changing - all partner roles are transfered to CRM for an order correctly.
    Any ideas??
    Thanks for your help
    Radim

    Hello,
    there is an important GUID that need to be determine, the contact persons in my case need to selected via partner determination otherwise the partner gets deleted in R/3. The determination is creating the relation to the partner which is transfered to R/3 and can be checked in the BDoc. This has solved the issue

  • The email from different sources is not appearing as the person or organization that sent the emails & is appearing as other groups or persons.

    Emails from all of my linked in groups and individuals are coming under name of one of the groups. An individual's name who I am connected to on linkedIn is being displayed for other people (and not just one person.) Other emails from other groups or individuals are also being shown to be sent by other people or organizations. I don't have any clue about how to resolve this issue. I think it occurred when I attempted to migrate my email list from Windows Live mail. I would like to get it straightened out.
    thanks in advance.

    remove the email address from your address book.

  • Change GTS business partner type from person to organization.

    Hi Gurus,
    My problem is , I have created business partner in GTS under "Person" but I need to change the role to be a Legal unit under organization. How do I achieve it.
    I created business partner LUUS-4280 under "person" with role Business partner generral (000). But I want to create LUUS-4280 as legal unit under Organization. So basicall i want to change the role from Business partner generral (000) to Legal Unit
    ( BP role ) SLLSIT . All my sales order are showing that legal unit 4280 is not created. 4280 is my plant code in ECC.
    When I try to create a BP as LUUS-4280 under role Legal Unit under organization the system gives me the message that Partner LUUS-4280 already exists.
    I tried to delete the BP with T-code BUPA_DEL but thats not deleting the existing BP either .
    How do I come out of this situation and have LUUS-4280 under LEgal Unit SLLSIT role. Help needed ASAP.
    Regards
    Edited by: sumit katyal on Jul 25, 2011 7:59 PM

    Hi,
    In transaction BUPA_DEL, try to run it will only the BP number and the check box "Test run, check only" selected.
    If transaction gives you the message that you can delete the BP, try again without the check box "Test run, check only" selected.
    If this is not working, what is the message that transaction BUPA_DEL is giving you ?
    Regards.
    Mouaz

  • Invalid Locator Segments-The expenditure organization information is invali

    Hi Gurus,
    Onhand quantity import from legacy to Oracle apps(11.5.10) is failing with the folowing error in the interface table, mtl_transactions_interface.
    Error Code: Invalid Locator Segments
    Error Explanantion: The expenditure organization information is invalid
    I did import successfully during my intial testing cycles though. But now after a month, trying to load the onhand quantities again, I am getting this error. Some setups might have been changed or any thing else could cause this error to show up?
    We are using project manufacturing and locator control as "Dynamic". I am using account alias receipt to import onhand balances.
    Thanks in advance,
    Kaju

    Hi,
    Please also see these docs.
    Note: 837730.1 - MTI Interface "Invalid Locator Segments" Error
    Note: 823164.1 - "Material transaction API returned error(Invalid locator segments)" Error when Issue Materials Across Workorders in CMRO
    Note: 110424.1 - Unprocessed Transactions/Closing INV Accounting Period FAQ
    Note: 210900.1 - Locator is Invalid or Missing for this Item/Organization/Subinventory Combination
    Regards,
    Hussein

  • Creating a "person" under organization plan

    Hi!
    Do we have to activate the HR functionality in ECC in order to insert records in the personnel table? As part of the organization plan we are interested in loading the basic employee profile in the “person” record and then assign the person to a position in the organization plan. So far we do not have any plans to activate the HR module.
    Thanks in advance.
    Pramod

    Hi!
    I have to load around 10,000+ employees in ECC 6.0 and then assign each of them to the corresponsing position in the organization plan. We are planning to build an automated interface to enable this. But looks like we will have to implement some of the functionality from HR in order to load our 10,000+ employees as personnel in ECC.
    Thank You
    Pramod

  • CRM Marketing - Relationship Segmentation

    Hello Experts,
    I have the following problem. Consider the following scenario:
    If you have a Business Partner who has two relationships to two different organizations in the role of a contact person. This BP has different E-Mail address maintained on his relationships ([email protected] and [email protected]).
    Now I want to contact them according to the B2B where his company address is contacted (from the relationship) and not his private address (from BP Master).
    This BP now gets two E-Mails unfortunately only the E-Mail address of the first relationship ([email protected]) is used and the other mail address ([email protected]) is not taken into account. I already tried playing with standard relationship or not and assigning functions to this guy. Nothing worked.
    Does anyone of you have a clue how I can enable the delivery on all of his E-Mail addresses on his relation?
    Thanks and best Regards
    Christian

    Hello Christian,
    I think you should open a OSS Message to get a solution from SAP because I think that is a problem in the standard.
    Regards
    Gregor

  • NWIdM support with CRM Ecommerce b2b Contact Person

    We are using NWIdM in CRM eCommerce B2B scenario.  B2B Scenario uses BP:Contact Person and also uses customer hierarchy which is in CRM downloaded from ECC.  Wanted to know if NWIdM supports Contact Person Business Partner and can assign Internet User role to contact person and allow me to assign the contact person to different customers in hierarchy?

    Hello Dan
    That is a nice option. You can achieve this requirement using Integration events also, but it require a huge web services development
    1.Create the integration event on create / Update SR
    2.Create a batch process to read that Integration event Queue,(Development)
    3.Use the outcome of Queue to get the changes and IDs (Development)
    4.Send the Automated mail by program (Development)
    5.Delete the Queue.
    Dinesh CRMIT

  • Crm 2007 - product by partner sales organization

    hello
    I'm trying to customize the following procedure:
    1.Create opportunity or quotation,
    2. enter a business partner (prospect/sold to)
    Get the relevant product list to the specific partner (determind by the partner sales organization)
    I read that the PPR procedure should be the answer, i tried it
    and no luck.
    can you please give an answer or a direction?
    Thanks
    Rika

    hi jay..
    If u got any solution for the same please provide us, it would be great help.as we are also facing the same problem.
    and also give me step by step procedure to transfer the variant product from ecc to crm 2007.
    any links any usefull material for variant product in crm 2007 will be highly appreciated.

  • Retrieve email id of superior person in organizational hierarchy

    Dear All,
    In a company Organizational Structure is maintained at several levels. When developing a workflow, which is triggered whenever a support message is generated in Solution manager, a mail needs to be sent to concerned person. but if that person does not responds then the mail has to be triggered to person higher in organisational level.
    pls tell me how to retrieve the email id of the person who is one level up than current person
    thanks in advance,

    If U have the PERNR ...
    DATA: ls_sobid1 TYPE sobid,
    ls_sobid2 TYPE sobid,
    ls_sobid3 TYPE sobid,
    v_usrid like pa0105-usrid.
    SELECT SINGLE sobid FROM hrp1001 INTO ls_sobid1
    WHERE otype = 'P'
    and plvar = '01'
    AND objid = pernr
    AND endda >= sy-datum
    AND begda <= sy-datum
    AND rsign = 'B'
    AND relat = '008'
    and sclas = 'S'.
    IF sy-subrc EQ 0.
    SELECT SINGLE sobid FROM hrp1001 INTO ls_sobid2
    WHERE otype = 'S'
    and plvar = '01'
    AND objid = ls_sobid1
    AND endda >= sy-datum
    AND begda <= sy-datum
    AND rsign = 'A'
    AND relat = '002'
    and sclas = 'O'.
    IF sy-subrc EQ 0.
    SELECT SINGLE sobid FROM hrp1001 INTO ls_sobid3
    WHERE otype = 'S'
    and plvar = '01'
    AND objid = ls_sobid2
    AND endda >= sy-datum
    AND begda <= sy-datum
    AND rsign = 'A'
    AND relat = '008'.
    IF sy-subrc EQ 0.
    SELECT SINGLE usrid from pa0105 INTO v_usrid
    WHERE pernr = ls_sobid3
    and       subty = '0010'
    AND endda >= sy-datum
    AND begda <= sy-datum.
    endif.
    v_usrid will contain mail ID of the superior ...

  • CRM Sales structure and persons download to HCM

    Hi all, I've found many threads and documentation about downloading master data from HR into CRM but I'm interested in the reverse process. Even when integration between CRM and HCM is described, it seems to refer (only) to data transfer from HCM to CRM. Has anyone ever performed data transfer from CRM into HCM. I'm looking for info / document, preferably not technical for a start, since the purpose is to answer a customer question but any help is welcome. Thanks in advance!

    Hi Prathiba,
    Is your issue solved?
    Otherwise, please check if all the condition tables are replicated correctly from R/3 to CRM. Eg ZDNL_COND_A805 and DNL_COND_A191.
    I hope the initial download for the same would be completed.
    Because there might be some fields relating to Material and Sales Area in these condition tables, which might not have moved to CRM.
    Thats the reason I am asking to check.
    Thanks.
    Best Regards,
    Arun Sankar.

Maybe you are looking for