Marketing Attributes and Segment Builder performance

Hello!
Could you pls let me know
1. Maximum number of Marketing attributes one can create at  - 
    CRMD_PROF_CHAR - Maintain Attributes
2. What is the maximum number of BP's  that can be taken into segment builder
    for Target Group creation without Segment Builder performance suffering
Thanks & Regards,
Raju

The solution for the problem is as follows,
When you upgrade to JRE 1.6 version 19 patch 4, in the graphical modeler, the filter drag and drop doesnot work. In this case,    add the following line in you JAVA POLICY file.
    permission java.awt.AWTPermission "accessClipboard","read,write";
    you can find the POLICY file in the path:
       C:\Program Files\Java\<JAVA VERSION>\lib\security
Please note that I found this in note 1359890

Similar Messages

  • Tables for marketing attributes and relationship

    Hi anyone!
    I'm creating InfoSets in CRM and I need the tables containing marketing attributes and relationship for BPs. Does anyone of you know which tables this data is stored in???
    Regards Camilla

    Hi Camilla,
    Another option to reading tables : you can use function module CRM_MKTBP_READ_BP_LIST giving the BP guid in table IT_BP_LIST. This will give you the attribute set along with the attributes and their values assigned to the BP.
    Example call:
    Test for function group      CRM_MKTBP_DB           
    Function module              CRM_MKTBP_READ_BP_LIST 
      Import parameters               Value             
      IV_LANGU                        EN                                                                               
    Tables                          Value             
      IT_BP_LIST                         1 Entry        
                       Result:           1 Entry        
      ET_BP_ALLOCLIST                    1 Entry        
                       Result:           2 Entries      
      ET_RETURN                          0 Entries      
                       Result:           0 Entries

  • Update marketing attribute and customer master data via Survey Response

    Hi,
    I am creating a marketing survey. I have come to a point where I am able to get the reponses posted by the business partners.
    Now I would like to update the BP's directly when they respond. The challenge here is I want to update both Marketing attribute and Customer master.
    Is this possible with standard function modules. I am using version 4.0. Please let me know.
    Regards,
    Hemanth

    Hello Hemanth,
    Check my last response in the below thread, it could be a reason.
    update marketing attributes in BP via survey
    Thanks
    Raja Pamireddy
    CRM Marketing Forum Moderator.

  • Marketing Attributes and Survey

    Hi!
    I am working with CRM 5.0. We need to integrate Survey Results with Marketing Attributes.
    in other words:
    1) Reading Marketing Attributes when displaying Survey
    2) Saving Marketing Attributes acording to Survey results
    The survey can be filled in URL (HTML) formate o via Activity.
    Do I still have to implement correction instructions from Notes
    743978 and 638320 or is there a way to customize the integration from 5.0 on?
    Thanks for your help!
    Cristina

    hi
    to assign attributes to BP u can have two ways:
    first is to go inside the BP and there must be a tab for Marketing attributes there under that u need to assign the same.
    u can also make a new BP using t code BP and then do the same as i said above.
    another way is to go to SPRO and inside that go to the  CRM and then marketing and then into the marketing planner and then segment builder
    inside that u will have an option that
    assign attributes to BP
    if u r not able to find that out still then simply use search and then type "attributes"
    u will have many options at ur availance
    u have to select the same
    assign attributes to BP
    best regards
    ashish

  • Final attributes and local variables - performance ??

    Hi all,
    I and a colleague have done some performance testing regarding the use of final attributes and final local variables, e.g.
    with final:
    public class MyClass {
      private final int i;
      public final void myMethod() {
        final int j = 5;
        // do something with i and j
    }vs. non-final:
    public class MyClass {
      private int i;
      public final void myMethod() {
        int j = 5;
        // do something with i and j
    }I couldn't find any speed differences in a small test program, but my colleague did so in his application. Who is right ??
    Still, I will have do some formal testing next week and I will post the results.
    I'd prefer the version using final anyway because I find it better readable, but the issue I am having is whether I'll spend 2-3 days going through the program making everything final or not.

    I made some tests with final arguments to a method: I could not find any difference between final and non-final arguments. code is posted below
    import java.io.*;
    import java.net.*;
    import java.rmi.*;
    import java.util.*;
    import javax.ejb.*;
    import javax.naming.*;
    import javax.rmi.PortableRemoteObject;
    import junit.framework.*;
    import junit.extensions.*;
    public final class FinalVariablesTest extends TestCase /* from junit */ {
         * Constructors
        public FinalVariablesTest(String name) {
            super(name);
         * helper methods/classes
        protected void setUp() throws Exception {
            super.setUp();
        protected void tearDown() throws Exception {
            super.tearDown();
         * Test Suite
        public static void main(String[] args) {
         junit.textui.TestRunner.run(suite());
        public static Test suite() {
            return new TestSuite(FinalVariablesTest.class);
         * Test Cases
        /** tests the effect of passing an (final or non-final) int parameter
         to a method which uses the variable in a for loop.
         <p>
         Linux System:
         cat /proc/cpuinfo
         processor       : 0
         vendor_id       : GenuineIntel
         cpu family      : 6
         model           : 8
         model name      : Pentium III (Coppermine)
         stepping        : 1
         cpu MHz         : 501.146
         cache size      : 256 KB
         fdiv_bug        : no
         hlt_bug         : no
         sep_bug         : no
         f00f_bug        : no
         coma_bug        : no
         fpu             : yes
         fpu_exception   : yes
         cpuid level     : 2
         wp              : yes
         flags           : fpu vme de pse tsc msr pae mce cx8 sep mtrr pge mca cmov pat pse36 mmx fxsr xmm
         bogomips        : 999.42
         </pre>
         <p>
         Results:
         <pre>
         java version "1.4.0"
         Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-b92)
         Java HotSpot(TM) Client VM (build 1.4.0-b92, mixed mode)
         final     non-final
         498     500
         491     494
         491     493
         491     494
         534     494
         492     494
         491     494
         492     493
         491     494
         495     494
         4966     4944 (Totals)
         </pre>
        public final void testIntParametersToForLoop() {
         final int RUNS = 10;
         final int INNER = 1000000;
         final int OUTER = 10;
         System.out.println("-----------------------");
         System.out.println("testIntParametersToForLoop");
         for(int i=0; i<RUNS; i++) {
             outerFinalIntParametersToForLoop(INNER, OUTER);
             outerNonFinalIntParametersToForLoop(INNER, OUTER);
        private final void outerFinalIntParametersToForLoop(final int INNER,
                                       final int OUTER) {
         // with final var in for loop
         long start0 = System.currentTimeMillis();
         for(int i=0; i<OUTER; i++) {
             innerFinalIntParametersToForLoop(INNER * i);
         long end0 = System.currentTimeMillis();
         System.out.println("      final:       " +
                      ( end0 - start0 ) + " milliseconds");
        private final void outerNonFinalIntParametersToForLoop(final int INNER,
                                          final int OUTER) {
         // with non-final var in for loop
         long start1 = System.currentTimeMillis();
         for(int i=0; i<OUTER; i++) {
             innerNonFinalIntParametersToForLoop(INNER * i);
         long end1 = System.currentTimeMillis();
         System.out.println("  non final: " +
                      ( end1 - start1 ) + "       milliseconds");
        private final void innerFinalIntParametersToForLoop(final int INNER) {
         for(int i=0; i<INNER; i++) {
             int testVar = i * INNER;
        private final void innerNonFinalIntParametersToForLoop(int loops) {
         for(int i=0; i<loops; i++) {
             int testVar = i * loops;

  • Marketing Attributes and Communication info in pdf fact sheet.

    Hi,
    I have a requirement to get the communication details and marketing attributes in the pdf fact sheet.
    Smartform CRM_ACC_ACCOUNT_OVERVIEW_PRN has no coding for these info, although both informations are available in online version.
    There is a program CRM_MKTBP_ATTR_HISTORY availble to diplay attributes, but i have no clue how to bring the entire program in smartform. Can anyone help on this how to fetch these info in pdf?
    Regards,
    Neel

    Hi Neel,
       You can create a custom smart form for this . take the help of a ABAP programmer.
    You can use tables ADRC for communication details .
    For marketing attributes : you can use function module CRM_MKTBP_READ_BP_LIST giving the BP guid in table IT_BP_LIST. This will give you the attribute set along with the attributes and their values assigned to the BP.
    Example call:
    Test for function group CRM_MKTBP_DB
    Function module CRM_MKTBP_READ_BP_LIST
    Import parameters Value
    IV_LANGU EN
    Tables Value
    IT_BP_LIST 1 Entry
    Result: 1 Entry
    ET_BP_ALLOCLIST 1 Entry
    Result: 2 Entries
    ET_RETURN 0 Entries
    Result: 0 Entries
    One you get these values you can pass this to your smart form.
    Hope this helps
    Best regards
    Sourabh
    Edited by: Sourabh Verma on Apr 9, 2009 9:31 AM

  • Update marketing attributes and send mBDoc BUPA_MAIN

    Hi,
    When I update marketing attributes in CRM there are three mBDocs sent into queues (MKTPROF_MSG and CHARVAL_MSG) and also BUPA_MAIN .
    I'd like to know if sending BUPA_MAIN is an standard SAP solution or not.
    If it's not where can I find how it's work (configuration, sap note)
    Thank's in advance
    Robert

    Hi Robert,
    As of the relationship beteween the three bdoc, it has been coded as of SAP is concerned. As any change in Marketing attribute has to be reflected in BP so that no inconsistency occurs.
    You can obviously stop generation of one of the mbdocs, but the generation will not be conditionally stoped, but it will be stop permanently.
    Best Regards,
    Pratik Patel
    <b>Reward with Points!</b>

  • Marketing Attributes for account and Contact

    Hi,
    I am looking at Marketing Attributes of an Account. They are fine.
    And I am looking at Marketing attributes of an Contact for this account. But these values are different from Account Marketing Attributes.
    They are not same...can you please let me know..when they will bcome same (for Account and his contact).
    And when I create lead(campaign)...will these attributes changes for Account and Contact?
    Please let me know...as I am very new to CRM Marketing.
    Thanks,
    Sandeep

    Hi,
    If the marketing attribute set is created with assignment to bith Accounts and Contacts.. the same would be visible through out.
    If u want different set of attributes for contacts and accounts, define multiple marketing attributes and select the checkbox for availability in either contacts or accounts and not both.

  • Export Segment builder

    Hi guys,
    Hi group,
    I would like to ask for your advice in the following matter:
    In standard, the Segment builder has an export function ("Export in file") that will take BP identification data.
    We need to add in the selection, data such as the marketing attributes and some other fields
    Does anyone has faced the same problem ?
    How can i add some fields to the that cna be seen in the export target group
    RGDS

    You can use the BADI CRM_MKTTG_SEG_MEM_EX. You set the name of your own structure (defined in the data dictionary) for export in method GET_TG_MEMBER_STRUCTURE and fill this structure in the method SELECT_TG_MEMBER_DETAILS.
    See the standard implementation CRM_MKTTG_SEG_MEM_RF for an example.
    Prakash
    Don't forget to award points if this helps.

  • Marketing Attribute Date Validity

    In table CAWN there is a 'value from' and a 'value to' field on this table.
    However when we create new marketing attribute and it's description there appears to be no way of setting a valid to/from date for it.
    We are using CRM 4.0.Can anyone tell me how this is possible, or even if it is possible in CRM4.0,
    Many Thanks
    David

    Hi,
    Sorry to say this, but even in CRM 5.0 it is not standard.
    I am not aware of any BAdI which does this out of box. I think you need to build custom functionality, because these attributes are used in various functional areas and you need to take care of this by your own
    <b>
    Do not forget to reward if it helps,</b>
    Regards,
    Paul Kondaveeti

  • Mass creation of Marketing attributes under attribute set

    Hi All,
    Please let me know if there is a possibility for mass creation of Marketing attributes and marketing attribute sets in SAP CRM Standard functionality.
    I am not talking about below " creation & assignment to BPs using the expert tools. "
    CRMD_PROF_CHAR  Create/Change Marketing attribute/set
    CRMD_MKTDS           Create datasource/attributre list
    Create marketing attribute and maintain in Business Partner.
    CRMD_MKT_TOOLS  you can use this to delete/assign mass marketing attributes to BP.
    we can go for a BDC program, But I want to keep that as a last option.
    Please help and suggest me if there is any standard way of creating or uploading the Mass Marketings attributes in CRM system.
    Regards,
    karthik J

    This functionality can be achieved through ELM (External list management)

  • Marketing attributes in IC WebClient 2007 or 5.2?

    Hi,
    In Interaction center when agent does the search for an account and cant find it, he/ she can create a new account.
    1) How do we know what Business role and grouping its getting created.Where can we control this?
    2)Also when creating a new account , the options are to create only with basic data like name, address etc. I also want to add some marketing     attributes that I have already? how can I do this?
    This can be done in new Web UI but not in new Interaction center UI? why so?
    Thanks in advance

    Hello Praveen,
    You are correct. If you want to maintain marketing attributes for an account (customer) in CRM 2007, you need to navigate to the CRM WebClient Account screen (accesible from roles like the MARKETING_PROFESSIONAL role). The reason that marketing attributes have historically not available by default as part of the Interaction Center screen (accessible from the IC_AGENT role) is probably based on the assumption that the Marketing organization owns the marketing attributes and should be the one to maintain them, rather than e.g., the customer service agent or telesales agent.
    That being said, I have seen some customers who implemented marketing attributes inside interactive scripts so that their interaction center agents could maintain the marketing attributes as part of the interactive scripting / customer survey process.
    Warm regards,
    John

  • Marketing attributes creation/update from ELM

    Hi Experts.
    A small question regarding the external list management.
    I have created a mapping format with some marketing attributes I want to create/update for a certain business partner. This works fine in the sense that the system is fully capable of updating if there already exist a marketing attribute of the same type for the BP, and create if there is none already.
    Also, if the marketing attribute I try to upload allows multiple value, the system is clever enough just to add an additional and not overwrite the existing. So, this part is fine:-)
    The issue arises when I want use the mapping format for marketing attributes and leave some columns blank (= I have a standard format I use, but for some BP's, I do not want to upload all marketing attributes, only some in the format). When I try to upload this, I get an error message saying the the value blank is not allowed for a certain marketing attribute. This is true, but I find it rather stupid if the system cannot simply ignore the blank entries in a file, since I would then need to create a new mapping format for every single BP!
    Does anyone know how to fix this?
    I can see that it is possible to add code for every single field in the mapping format, so I was thinking to write a small piece of code that the system should ignore the values that are blank. Have anyone tried this?
    Thanks and Regards, Mia

    Indeed this is something we encountered as well.
    Possible work around (we implemented like this, you can't leave ELM file field blank but upload fake value) is creating a fake value for your attribute (for example:  " not yet maintained", "to be filled in").  In that way a BP is made with attribute but with no "real" value...  to your business to deside if this is an acceptable way of working!
    Kind regards,
    Francis
    Edited by: FDEV on May 28, 2008 11:35 AM

  • Marketing Attributes BP relationship Table

    HI CRm Experts,
    Can you please help me in knowing table in which Marketing attributes and BP relationship gets stored. I am aware of all table for Marketing attributes my requirement is when a marketing attributes is assigned to a BP what table it gets stored and also if some one can give me list of all tables then it would be helpful
    Thanks,
    Ashutosh

    Hi,
    INOB: Object ID, BP Number
    KSSK: Object ID, Attribute set ID
    CABN: Attribute ID and name
    CAWN: Attribute name and values
    AUSP: BP GUID, Attribute Name, Value, Object ID
    KLAH: Attribute Set Name, ID
    Regards,
    DD's

  • How to get all partner guids with a specific marketing attribute value?

    Hello,
    is there a method or function module in Standard which i could use in my own coding to get all partners (guids or number) with a specifiic marketing attribute and a specific value of this attribute?
    Thank you
    Best regards
    Manfred

    Hi,
    Use the FM: CRM_MKTBP_READ_BP_SEL_ATTR
    pass the input parameter in IS_CHARVALUE in the field SEL_ATTR as the attribute name.
    Output will be displayed in the table ET_PARTNER_VALUES as partner guid's
    Regards,
    PP

Maybe you are looking for