Problem in making Marketing Attribute set Default

Hi Experts,
I am facing some issue while making selection of marketting attribute set during BP creation
I was able to make a default set in individual account but there is some other set for corporate account which i need to default while
making the account..
As both individual and corporate accounts are going to same componet and views and context nodes i am not able to differntiate
which to select when...
Pls suggest some solution,its urgent..
Reward points will be awarded...
thanks,
SA

Hi,
    In BuilHeader which is the root object for Business partner has one field named Category. If it is 1 then it is a person so it is an individual account. If It is 2, then it is an organization, so it is a corporate account.
      So please check the category in your marketing attribute defaulting logic and default different marketing attribute set.
Regards,
Manas.

Similar Messages

  • Default Marketing Attribute set for BP

    Hello,
    Is there a way to default the Marketing attribute set for a business partner record in CRM UI? I tried DO_PREPARE for BP_DATA/MarketingAttributesEL but it does not seem to be working. Any ideas?
    Thanks
    Rodney

    Try with BADI : BADI_CRM_BP_UIU_DEFAULTS

  • Marketing Attribute set Authorization.

    Is there marketing attribute set Authorization, So that one set of users can see only their Attribute set..Appreciate any hellp in this regard. The CRM version is 5.0.

    Hi
    If you have found the answer to your question, as to how we can assign an attribute set by default when creating a BP, can you please share the answer with me, since I have a similar requirement.
    Thanks in advance!!!
    Lavi

  • How to add new marketing attribute to the existing marketing attribute set?

    Hi all,
                  I searched for existing forums but I didn't find the required one. I found some using Tcodes ,which is not my requirement. My requirement is to add new marketing attribute to the already existing marketing attribute set. This  attribute set is created by my team lead with 4 attributes but now i have to add new attribute to this set so total will become 5 attributes for this attribute set. This has to be done through marketing professional business role. If this is not done through marketing attribute set, then I will go for the transaction where I can add marketing attribute for attribute set.
    Please send the details of both marketing professional business role and transaction code.
    Your help is highly appreciated.
    Thanks,
    Baasanthi.

    Hi,
    SAP CRM Marketing Attributes explained
    Path to create Marketing attributes from webui: log in with Marketing Pro role->Marketing->Create->Marketing Attribute
    Regards,Sumeet

  • Marketing attribute set

    hi All
    please provide me a solution for marketing attribute set for multiple use in business partner
    actually i want to use same marketing attribute set for multiple times in business partner
    please give me a solution above
    thanks
    ganesh

    Hi Ganesh,
    Your question is not clear, my understanding is that - when you select marketing set, you can select "n" no. of attributes associated?? What is you business requirement??
    Cheers,
    Peter J.

  • Based on Gender Marketing Attribute set has to show different attribute

    Dear Expert,
                     How to set the marketing attribute set based on Gender what *** we Chose in Identification tab in BP Maintain Screen ?
    If i chose Female it will show some Attribute set or
    I Chose Male it will show some different attributes .

    Hello Subba,
    Try this function module
    CRM_MKTBP_ASSIGN_ATTRIBUT_TAB
    It assigns the attribute set and its corresponding attribute vales.
    Also try CRM_MKTBP* in SE37 and you can find some other function modules if the above doesn't match.
    Thanks
    Chandran

  • BADI which triggers while saving Marketing Attribute Set

    Hi,
    Could you please help me out with any BADI which triggers while saving Marketing Attribute Set.
    Thanks,
    Sandeep

    Hello Sandeep,
    Can you trt this bad CACL_VALUE_CHANGE
    thanks

  • Marketing Attribute Sets - BP Assigned

    Can anyone help:-
    I need to locate the table where Marketing Attribute Sets are assigned to the Business Partners
    I can see where attribute vales are stored but not attribute sets
    regards
    Barry

    Hi Barry,
    Tables are related with Markting attributes:
    CABN
    CABNT
    CAWN
    CAWNT
    AUSP (relation between business partner and assigned marketing attribute values)
    KLAH
    Function modules:
    CRM_MKTBP_READ_ALL_BPS - returns all the BPs which have a specific attribute set assigned
    CRM_MKTBP_READ_BP_DATA - returns the mkt attribute values for each partner.
    parameters:
    IV_GUID - BP Guid
    IV_PROFILE_TEMPLATE_ID - must be the content of KLAH-CLASS
    Reward Points if Helpful
    Cheers
    Manohar

  • PROBLEM IN CREATING MARKETING ATTRIBUTES

    Hi Experts,
    I have a requirement in which i need to create OR update Marketing attributes of BP.
    I used FM CRM_MKTBP_CHANGE_BP for this.
    for updating existing Attributes it is working fine, but when i am trying to assign attributes to the BP it is not working.
    In return parameter, i am getting Success message, but if i am going to Transaction BP and view the BP, I am not able to view
    the assigned attributes.
    my code is simple:
          CALL FUNCTION 'CRM_MKTBP_CHANGE_BP'
            EXPORTING
              IV_PROFILE_TEMPLATE_ID       = LV_ATTRSET_HOBBY    " this contain the name of the Attribute Set
    *         IV_BP_GUID                   =
    *         IV_XDESCR                    = ' '
    *         IV_FCODE                     = 'C'
    *         IV_MSA                       = 'X'
    *         IV_COMMIT                    = 'X'
              IV_PARTNER                   = I_BPNUMBER         " BP Number
    *         IV_CONVERT_VALUES            = 'X'
            TABLES
              IT_IMP_SELTAB                = LT_ATTR_HOBBY             " Attributes with values
              ET_RETURN                    = LT_RETURN                 " Here i am getting sucess message
    Any idea why it is not working. if you have faced the similiar problem, how did you solved it?
    One more point here is: After calling the FM, i can see the records in table AUSP  but not in BP Transaction
    I just check this for updataing existing marketing attribute. Records are updated in the AUSP table but these changes are not reflected in BP T Code.
    Please provide your valuable inputs.
    Dave
    Edited by: Dave on Jun 15, 2011 1:24 PM

    Solved by using FM CRM_MKTBP_ASSIGN_ATTRIBU

  • Problem in Updating marketing attributes for Contact

    Hi,
    I am trying to update marketing attributes for contact and Account while Creating lead. For this I implemented ORDER_SAVE (Chek before save).
    For account, the marketing attributes are getting updated fine. But, for Contact they are not getting updated. For both I am using the same code. But, I dont understand, why.
    Please, let me know why this is happening.
    Here is the code i used.
    The internal table li_imp_seltab contains Marketing attributs.Its being filled properly. No problem with Internal table data.
    For contact----
    >
    If not v_contact is initial.
      IF lo_contact_head->is_changeable( ) = abap_true.
    Update or create the marketing attribute if it does not exist and set the value of the attribute to 'Prospect'
              CALL FUNCTION 'CRM_MKTBP_CHANGE_BP'
                EXPORTING
                  iv_profile_template_id = k_template_id
                  iv_bp_guid             = l_contact_guid
                  iv_xdescr              = abap_false
                  iv_fcode               = abap_false
                  iv_msa                 = abap_false
                  iv_commit              = abap_true
                  iv_partner             = l_contact_no
                  iv_convert_values      = abap_true
                TABLES
                  it_imp_seltab          = li_imp_seltab
                  et_return              = li_return.
    Modify core and save so that the updations would reflect immediately in Web UI
              lo_core->modify( ).
              lo_tx = lo_contact_head->get_transaction( ).
              IF lo_tx IS BOUND.
                IF lo_tx->save( ) = 'X'.
                  lo_tx->commit( ).
                ENDIF.
              ENDIF.
            ENDIF.
    For Account -
    >
    if not v_ac is initial.
    Check if the entity is changeable.
            IF lo_account_head->is_changeable( ) = abap_true.
    Update or create the marketing attribute if it does not exist and set the value of the attribute to 'Prospect'
              CALL FUNCTION 'CRM_MKTBP_CHANGE_BP'
                EXPORTING
                  iv_profile_template_id = k_template_id
                  iv_bp_guid             = l_account_guid
                  iv_xdescr              = abap_false
                  iv_fcode               = 'C'
                  iv_msa                 = abap_true
                  iv_commit              = abap_true
                  iv_partner             = l_account_no
                  iv_convert_values      = abap_true
                TABLES
                  it_imp_seltab          = li_imp_seltab
                  et_return              = li_return.
    Modify core and save so that the updations would reflect immediately in Web UI
              lo_core->modify( ).
              lo_tx = lo_account_head->get_transaction( ).
              IF lo_tx IS BOUND.
                IF lo_tx->save( ) = 'X'.
                  lo_tx->commit( ).
                ENDIF.
              ENDIF.
            ENDIF.
          ENDIF.
    Please
    Thanks,
    Sandeep

    Hi Sandeep,
      You can use 'CRM_MKTBP_UPDATE_ATTR_BP' FM to update the marketing attributes of the BP.
    Regards,
    Lakshmi.Y

  • Can not delete marketing attribute set

    I am trying to delete an 'Attribute Set' & Attribute.  I have managed to delete the attribute but when trying to delete the attribute set i get the error - Attribute Group ZIC_PTS_BP Still Contains Business Partners.
    I have ran - CRM_MKTPFTPL_DELETE_ATSET which seemed to delete all the assigned entries but I still can't delete the attribute set
    any ideas?
    regards
    Barry

    The attribute set is not geeting deleted since it has been assigned to some buisiness partners, which can be seen in the marketing attributes tab page of the business partner.
    Delete the assignment first, than only you will be in a position to delete your attribute set.
    *If helpful, Do reward points*
    Regards,
    Shalini Chauhan

  • Marketing attribute sets applicable only for specific BP roles

    Hi,
    I have created Marketing attributes in CRM and assigned them to Attribute sets applicable only for Organizations.
    Now they are eligable for all BPs created independent of BP role. Since I don´t want the Potential customers to have the same attribute sets as the Customers or Competitiors my question is:
    Is it possible to determine which attribute sets to be available for a BP based on its BP role?
    BR,
    //anders

    Hi,
    Do we got any solution for the above mentioned error? i too getting same issue.
    thanks
    ARun

  • Regarding crm marketing attribute set

    Hi experts,
    i have marketing attribute name (ATNAM -CABN) and i want attribute set from it. please tell me the procedure.
    thanks and regards
    Subba Reddy.

    Hi
    1.In EA goto Marketing- Segmentation- Marketing Attributes- Maintain Atrributes
    Here you maintain valures as per your req.
    2.Marketing- Segmentation- Marketing Attributes- Maintain Atrribute Sets
    Here Assign all above maintained Attributes.
    If you need further help let me know
    Regards,
    Ajay

  • Problem with making a radio button default

    i am making a radio button default using : setSelected(true) method . the radio button is shown as selected but the event that should happen when the radio button gets selected is not done. should fire an event in code? help me out.

    private JRadioButton normal_ves_RB = new JRadioButton();
    private JRadioButton Barge_ves_RB = new JRadioButton();
    ButtonGroup bg=new ButtonGroup();
    bg.add(normal_ves_RB);
    bg.add(Barge_ves_RB);
    normal_ves_RB.setSelected(true); // here i am making this button default. its not firing the event bydefault.
    normal_ves_RB.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
    normal_ves_RB_actionPerformed(e);
    private void normal_ves_RB_actionPerformed(ActionEvent e)
    how to make my action performed work when i first run this code by default. setSelected is making the button default but the event is not fired.

  • Clear Attributes - Set Default

    Is there a way to set a permanent default to text and shapes instead of always using the previous attributes?
    Many times I find myself clearing attributes and changing fonts because I don't want Illustrator to use the previous attributes. This can be a bit tedious.
    I'm hoping that I'm overlooking something simple.
    Thanks!

    Thanks.
    Is there a way to stop the text tool from lifting the previous font selection?

Maybe you are looking for

  • [Solved] Unable to log in (xdm), or access tty's (nVidia bug).

    Ok, this is kind of long winded, but I'm really stuck on this one. To start, I use xdm as my display manager, which I modified the appearance of (following this: https://wiki.archlinux.org/index.php/XDM) and then later installed xdm-archlinux. I also

  • How to add a preloader bar to a swf file made in InDesign?

    I have created a swf file in InDesign CS4 and now that I added the swf to my website, it takes a little bit to download, but the problem is that it doesn't show a downloading progress or anything. How can I changes this either in InDesign or using  p

  • Disc Drive wont Load Leopard DVD

    Got round to buying Leopard this week and inserted the disc only for my Macbook to make some rumbling noises and eject the disc. I was wondering if there are any solutions to my problem or if anyone else with a Macbook is suffering from this problem.

  • Dbms_job in Oracle SQL Developer

    Can someone tell me if i will be able to setup a dbms_job from SQL Developer interface. Thanks

  • Querying Multi-Record XML

    Hi, I have inserted the following XML document in to a table with an XMLType column: <?xml version="1.0" encoding="UTF-8"?> <PhotoImaging xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/xdb