Creating New Target Groups in Background - is this possible?

We are currently working on CRM 4.0.
We have created some custom infosets for criteria that we wish to segment our data by. However when we try and run this using the segment builder a time-out short dump occurs.
Does anyone know of a way to create the target groups through the segment builder via a background process that means we could avoid the time out issue?.
Many Thanks
Caroline

Hi Caroline,
I am sorry. I wrongly wrote it as Segment builder. But, as you correctly said,.... we can send target group to channel in marketing planner only.... not segment builder.
But, as you are saying that you have a problem in the segment builder when creating the target group........I guess when you right click on the profile set to build the target group, we also have an option,.... something like....."Build target group in background".
I am not sure, as i am not infront of the system. But, please check for this ......
Reward points if it helps....
Thanks.
Sindhu.

Similar Messages

  • Creating the Target group

    Hi ,
    i would like to create the target group in segment builder.i got the list of business partners.how to create the target group using this list(excel sheet)
    your help would be appreciated.
    Thanks,
    kenny

    In CRM4, Segment Builder (CRMD_MKTSEG)
    Create New Profile Set
    Right click in main window area and select Create Target Group
    Right click on New Target Group, select Properties
    Click on the Load File and Create New Target Group tab
    Follow directions there:
    The file must contain a column with BP number or BP GUID.    
    The file must be an ASCII file (e.g. *.txt or *.csv).        
    The first line of the file must contain the column heading.  
    The columns must be separted with ; or ,                     
    The new target group receives inactive status.                                                                               
    BP Column                                                                               
    Action          1 Add Business Partner to Target

  • Help needed to generate new target group for contacts from BP Target Group

    In CRM 5.0, we have a functionality in which say we have created a target group (T1) for 10 BPu2019s (organization) and each of these BPu2019s have one or more contact persons associated to them. Now if I want to create a target group for all these contact persons associated to the 10 BPu2019s, in CRM 5.0 I have the option to right click on the target group (T1) and then I get an option u201C generate new target group from contactsu201D. By doing so another target group for all the contacts associated to those BPu2019s will be generated. I am not able to find out the similar option in CRM 2007 (web UI) where in I can create target group for contacts associated to BPu2019s (organization). There should be some work around for this requirement.
    Please let me know how to achieve this requirement.
    Thanks,
    udaya

    Hi udaya,
    we're also using that functionality in CRM 5.0. I think it would be worth a combined OSS message to get this functionality back in standard if it isn't there.
    Best regards
    Gregor

  • Creating a target group based on the BP email address only in CRM

    Hi there,
    I am currently trying to create a target group based on the business partner email address only.
    I have a list of over 1000 email addresses - these email addresses equate to a BP in our CRM system, however I do not have a list of the equivalent business partner numbers, all I have to work on are the email addresses.  With these 1000 BP email addresses I need to update the marketing attributes of each of these 1000 BP records in CRM.
    What I need is a method to find the 1000 BP numbers based on the email addresses and then use the marketing expert tool (tx. CRMD_MKT_TOOLS) to change the marketing attributes on all of the 1000 BPs.
    The issue I am having is how can I find the list of BP numbers just based on the BP email address, I tried creating an infoset based on table BUT000, BUT020 and ADR6 but I after creating attribute list & data source for this I am stuck on what to do next. In the attribute list the selection criteria does not allow me to import a file for the selection range.  I can only enter a value but I have 1000 email addresses and cannot possibly email them manually in the filter for the attribute list.   I also looked at imported a file into the target group but I do not have any BP numbers so this will not work.
    Does anyone know a method where I can create a target group based on the email addresses only without having to do any code?
    Any help would be most appreciated.
    Kind regard
    JoJo

    Hi JoJo ,
    The below report will return you BP GUID from emails that is stored in a single column .xls file and assign the BP to a target group.
    REPORT  zexcel.
    * G L O B A L D A T A D E C L A R A T I O N
    TYPE-POOLS : ole2.
    TYPES : BEGIN OF typ_xl_line,
    email TYPE ad_smtpadr,
    END OF typ_xl_line.
    TYPES : typ_xl_tab TYPE TABLE OF typ_xl_line.
    DATA : t_data TYPE typ_xl_tab,
           lt_bu_guid TYPE TABLE OF bu_partner_guid,
           ls_bu_guid TYPE  bu_partner_guid,
           lt_guids TYPE TABLE OF bapi1185_bp,
           ls_guids TYPE  bapi1185_bp,
           lt_return TYPE bapiret2_t.
    * S E L E C T I O N S C R E E N L A Y O U T
    PARAMETERS : p_xfile TYPE localfile,
                  p_tgguid TYPE bapi1185_key .
    * E V E N T - A T S E L E C T I O N S C R E E N
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_xfile.
       CALL FUNCTION 'WS_FILENAME_GET'
         IMPORTING
           filename         = p_xfile
         EXCEPTIONS
           inv_winsys       = 1
           no_batch         = 2
           selection_cancel = 3
           selection_error  = 4
           OTHERS           = 5.
       IF sy-subrc <> 0.
         CLEAR p_xfile.
       ENDIF.
    * E V E N T - S T A R T O F S E L E C T I O N
    START-OF-SELECTION.
    * Get data from Excel File
       PERFORM sub_import_from_excel USING p_xfile
       CHANGING t_data.
       SELECT but000~partner_guid FROM but000 INNER JOIN but020 ON
    but000~partner =
       but020~partner
         INNER JOIN adr6 ON but020~addrnumber = adr6~addrnumber INTO TABLE
    lt_bu_guid FOR ALL ENTRIES IN t_data WHERE adr6~smtp_addr =
    t_data-email.
       CLEAR: lt_guids,ls_guids.
       LOOP AT lt_bu_guid INTO ls_bu_guid.
         ls_guids-bupartnerguid = ls_bu_guid.
         APPEND ls_guids TO lt_guids.
       ENDLOOP.
       CALL FUNCTION 'BAPI_TARGETGROUP_ADD_BP'
         EXPORTING
           targetgroupguid = p_tgguid
         TABLES
           return          = lt_return
           businesspartner = lt_guids.
    *&      Form  SUB_IMPORT_FROM_EXCEL
    *       text
    *      -->U_FILE     text
    *      -->C_DATA     text
    FORM sub_import_from_excel USING u_file TYPE localfile
    CHANGING c_data TYPE typ_xl_tab.
       CONSTANTS : const_max_row TYPE sy-index VALUE '65536'.
       DATA : l_dummy TYPE typ_xl_line,
              cnt_cols TYPE i.
       DATA : h_excel TYPE ole2_object,
              h_wrkbk TYPE ole2_object,
              h_cell TYPE ole2_object.
       DATA : l_row TYPE sy-index,
              l_col TYPE sy-index,
              l_value TYPE string.
       FIELD-SYMBOLS : <fs_dummy> TYPE ANY.
    * Count the number of columns in the internal table.
       DO.
         ASSIGN COMPONENT sy-index OF STRUCTURE l_dummy TO <fs_dummy>.
         IF sy-subrc EQ 0.
           cnt_cols = sy-index.
         ELSE.
           EXIT.
         ENDIF.
       ENDDO.
    * Create Excel Application.
       CREATE OBJECT h_excel 'Excel.Application'.
       CHECK sy-subrc EQ 0.
    * Get the Workbook object.
       CALL METHOD OF h_excel 'Workbooks' = h_wrkbk.
       CHECK sy-subrc EQ 0.
    * Open the Workbook specified in the filepath.
       CALL METHOD OF h_wrkbk 'Open' EXPORTING #1 = u_file.
       CHECK sy-subrc EQ 0.
    * For all the rows - Max upto 65536.
       DO const_max_row TIMES.
         CLEAR l_dummy.
         l_row = l_row + 1.
    * For all columns in the Internal table.
         CLEAR l_col.
         DO cnt_cols TIMES.
           l_col = l_col + 1.
    * Get the corresponding Cell Object.
           CALL METHOD OF h_excel 'Cells' = h_cell
             EXPORTING #1 = l_row
             #2 = l_col.
           CHECK sy-subrc EQ 0.
    * Get the value of the Cell.
           CLEAR l_value.
           GET PROPERTY OF h_cell 'Value' = l_value.
           CHECK sy-subrc EQ 0.
    * Value Assigned ? pass to internal table.
           CHECK NOT l_value IS INITIAL.
           ASSIGN COMPONENT l_col OF STRUCTURE l_dummy TO <fs_dummy>.
           <fs_dummy> = l_value.
         ENDDO.
    * Check if we have the Work Area populated.
         IF NOT l_dummy IS INITIAL.
           APPEND l_dummy TO c_data.
         ELSE.
           EXIT.
         ENDIF.
       ENDDO.
    * Now Free all handles.
       FREE OBJECT h_cell.
       FREE OBJECT h_wrkbk.
       FREE OBJECT h_excel.
    ENDFORM. " SUB_IMPORT_FROM_EXCEL
    Just copy paste the code and run the report select any local xls file with emails and pass the target group guid.
    snap shot of excel file:
    Let me know if it was useful.

  • How to create new storage group and mailbox database on exchange 2007 CCR

    Hi, Our Environment:
    Exchange 2007 SP3 CCR.
    Now I want to create a new storage group with edb file and log files on the new drive.
    My plan is as below:
    Once we have new drive ready on both active node and passive node,
    1): Create new storage group with log files for this new storage group on other new drive from Active Node.
    2): Create new mailbox database under this newly created storage group with the DB file on the new drive from active node.
    My question is:
    1): Do I need to perform above steps from active node only? or Do I need to do it from both active node and passive node?
    2): How many storage groups can we create on one Exchange 2007 Enterprise server, we already have 25 SGs in place.
    Thanks in advance.

    Hi,
    Here are my answers you can refer to:
    1. We can just create new storage group on the active node. And it’ll be replicated to the passive node.
    We can use the following command in EMS to verify the new Storage Group is being replicated to the passive node:
    Get-StorageGroupCopyStatus "Second Storage Group" | Select SummaryCopyStatus,CCRTargetNode
    http://exchangepedia.com/blog/2007/08/how-to-create-new-storage-group-in-ccr.html
    2. For Exchange 2007 enterprise version, we can have up to 50 storage groups:
    http://www.computerperformance.co.uk/exchange2007/exchange2007_storage_groups.htm
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make
    sure that you completely understand the risk before retrieving any suggestions from the above link.
    If you have any question, please feel free to let me know.
    Thanks,
    Angela Shi
    TechNet Community Support

  • Create New Material Group included in Fiscal Year Range

    Hi,
    I have Report Maerial Group, Material & for each one having Fiscal Year
    I want to create new Material Group XXX and be included in the range of fiscal year K1 & K2
    How do I connect these two fiscal year to the new Material Group
    Thx

    Hi
    I hope  there is no assignment of GL account to material group. If you want that, you can assign Valuation class to material group in OMQW transaction.
    Because of the valuation class, the system can find the assigned G/L account number in OBYC. In this case Transaction Key GBB and General modification VBR.
    is it fine for you?
    regards
    Srinivas
    Message was edited by:
            Srinivas Ponangi

  • ERROR :APP-PER-289381  While Creating New Business Group

    Hello,
    When i am creating new business group in new fresh implementation i am find this error.
    APP-PER-289381: A business group with this name exists. Please enter a different name.
    I have only Default business group: 'Setup Business group'
    Please can any provide a solution for this.. Your early response will highly appreciated.
    Thanks
    Mohsin

    Hi Mohsin,
    whatever name you are trying just run the below query to check if it already exists or not.
    select * from apps.per_business_groups where name = 'Give here the name you are tyring'
    If this returns any row means name already exist in deed. You can rename the existing business group and then create new on. However, if name doesnt exist, wait for any other reply in the forum.
    Thanks,
    Avinash

  • UWL - Subsitution rules: create new tasks group

    Hi all,
    When creating new substitution rules in UWL, we can choose between three task groups (All, Disciplinary, Professional).
    Is it possible to create new task grouping, and so, group task by task type/ID ? How can I define new grouping?
    Thanks a lot in advance,
    Cheers,
    Olivier
    Solved.
    Edited by: Olivier Gaspard on Aug 26, 2009 12:35 PM

    This can be achieved by maintaining task classes and assigning substitution profiles to task classes as per your needs.
    Then you can assign the required tasks to the task classes.
    There is a very well explained document on this scenario.
    Check this document to achieve what you are looking for:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/109d2ea2-035c-2c10-06be-f6165ba7af11?QuickLink=index&overridelayout=true
    Hope it helps !!
    Thanks,
    Shanti

  • Create new purchasing group

    Hi expert,
    please guide me how to create new purchase group for company code 0122, purchase org 0233.What else need to be set up in config in terms of functionality? guide me step by step with detail path and tcode.
    Thanks

    Hi,
    Folow this path
    SPRO-> Materials Management> Purchasing-> Create Purchasing Groups-->execute>New entries>enter 3 digit Purchasing group, Description and other detail if required  and save.
    This purchasing group we have to assign to Material master in Purchasing view .
    Main purpose of Purchasing group is as below
    Purchasing Group
         Key for a buyer or a group of buyers, who is/are responsible for certain
         purchasing activities.
    Use
         o   Internally, the purchasing group is responsible for the procurement
             of a material or a class of materials.
         o   Externally, it is the medium through which contacts with the vendor
             are maintained.
    Hope this will help you.
    Thanks
    Krishna

  • Creating new shipping group?

    Hi,
    I have created new shipping group.i intialized that in shipping group container service.when i am displaying shipping group values in jsp page.i am getting error like*"shipping group contains no item relationships"* instead of commerce item values for my new shipping group.
    why am i getting this .
    can anybody help this..
    thanks in advance

    By default order creates a hardgood shipping group . When a CommerceItem is added to the Order, that item is automatically a part of the default ShippingGroup because it is assumed that when there is only one ShippingGroup, all items are a part of that group. However, once a second ShippingGroup is added to the Order, the existing CommerceItem and any new commerce items must be explicitly assigned to one of the two shipping groups; any items that were in the default ShippingGroup are no longer a part of any ShippingGroup.
    For further reference
    http://docs.oracle.com/cd/E23507_01/Platform.20073/ATGCommProgGuide/html/s0805assigningitemstoshippinggroups01.html

  • Creating new Bridge Group names in Cisco 5508 WLC??

    How do we Create new Bridge Group names on Cisco 5508 WLC, with 1552E Access Point??

    You create it on the 1552 once the AP joins.  One it joins, you will have to choose that AP and then set the AP mode to Bridge and then apply.  This will reboot the AP.  Once the AP comes back, you will have a MESH tab on that specific AP or any AP that you have set to Bridge mode.  You then set the AP role and the bridge group name there.  Here is an older MESH deployment guide to follow.
    http://www.cisco.com/c/en/us/td/docs/wireless/controller/7-0/configuration/guide/c70/c70mesh.html
    Scott

  • Want to create new protection group for 2 members which are already under another protection group.

    Want to create new protection group for 2 members which are already under another protection group. I have 12 servers under xyz protection group, want to move 2 members server to new protection group. How it is possible without loosing current backups.

    Hi,
    It all depends if the data source was originally co-located on the same replica shared with other data sources. If not then DPM will simple re-use the same replica and pick up where it left off.  If it was co-located, then the old replica and RP
    volume is shared and the RP's will expire as new ones are made on the new replica and RP volume created when it's re-protected.
    Moving Between Co-Located and Non-Co-Located Protection Groupshttp://technet.microsoft.com/en-us/library/ff399045.aspx
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Creating new Material Group

    Hi SAP Gurus,
    How to Creating new Material Group?
    Regards,

    Hi,
    Go to OMSF and here click on "New Entries" button and maintain the Material Group and its Description and save.
    Config Path: - SPRO > Logistics - General > Material Master > Settings for Key Fields > Define Material Groups

  • TCODE / Menupath for creating a target group

    Hi All,
    What is the transaction code/menupath to create a target group of business partners?
    How to create a target group of the selected business partners using that tcode/menupath?
    Please let me know.
    Thanks in advance.
    --R D

    Hi RD,
    Transaction code:CRMD_MKTSEG
    Menu Path: SAP Menu->marketing>segementation->marketingsegments--->segment bulider
    SAP Help link: <b>http://help.sap.com/saphelp_crm40sr1/helpdata/en/db/58963eac416f01e10000000a114084/frameset.htm</b>
    Regards,
    Arjun
    <b>Don't Forget Rewards points if it helps</b>
    Message was edited by:
            Arjun Pawar

  • Complete step by step procedure to create new material group.

    Hi,
    Please suggest procedure to create new material group in R/3 system and assigning it to G/l account.
    How to reflect it into EBP ssytem.
    Many thanks in advance.

    Hi,
    T. Code: - OMSF
    Path: - SPRO >> Logistics u2013 General >> Material Master >> Settings for Key Fields >> Define Material Groups.
    Select existing material group and click on Copy As button.
    Enter material group code, material group name and long description for material group.
    Then click on save button for save material group.
    Regards,
    Mahesh Wagh

Maybe you are looking for

  • No autofill after last update

    My Ipod no longer appears in the list when plugged into my computer. As a result the autofill button is gone and I cant update songs to my 1st generation Ipod shuffle. This came about after last update. It's as if the system doesn't recognize my Ipod

  • How to access music on external hard drive?

    Hi, I picked up my new iMac yesterday and am stuck! I have an external hard drive that has stacks of music, movies etc on it. I was hoping to be able to plug it into my iMac and iTunes would find it all, but that doesn't seem to work. The music was r

  • Working with .wmv files in GoLive 6.0...HELP

    I have spent hours searching for what would seem to be an easy answer and have given up. I am a intermediate level user of GoLive 6.0 trying to insert a .wmv file for my website. Can someone please provide step by step instructions on how do this? He

  • Need sample code for using BCONTACT object in ABAP

    Hello All, This is going to be my very first venture into the realm of OO / ABAP programming. And what venture it will be! I've been assigned the task of modifying an ABAP program so that it uses the BCONTACT object in order to create a contact. Now,

  • My current idea for having two synchronized libraries...will this work?

    I want to be able to have identical iPhoto libraries on my iMac and MacBook.. I understand that they can't be synchronized in the traditional way as other documents. My current idea is to move the library to an external drive. This would allow me to