Campaign execution for parallel communication medias

Hi,
From a campaing I want to create orders and in parallell send e-mails. In the img activity I have created a communication medium which consists of a communication method for creating order and one for creating e-mail, but only the method with the higest priority is started and it is not allowed to have to methods with the same priority. Some ideas??
regards Camilla

Hi Camilla,
Kindly try using one communication medium having 'Communication method = Imternet mail', and use
'Transaction type = Sales order' (by selecting appropriate type from F4 help).
This will allow two process to be set on same priority.
Hope this helps.
Regards,
Anup

Similar Messages

  • Campaign execution not send emails for contact persons

    Hi All!
    I'm facing a problem with Campaigns (communication medium - E-mail): Those are the steps i'm following:
    1.Start the campaign, and on the "campaign: Schedule job" screen, i choose  "immediately". If i look at the campaign details after scheduled the job, the status is now "job started".
    2. To check wich mails were sent, I also had a look at the business partner account that belongs to the target group used. On the "Interaction History" block, there is a line: "Outgoing Email" - on the details of this outgoing email I can see the "To" (Receivers). And here, I have emails from the business Partner contact persons and from the business partner itself (the email that is on the header level of the business partner account, on the "main address and communication data" area). So far so good. That's exactly what i need but,
    3. If i go to the tcode, i only have a send request for the business partner itself and none for his contact persons (although those emails are on the "To" line for the interaction history).
    I'm working on the Webclient UI, of the CRM 7.0
    Does someone knows why the emails are not being sent also for the contact persons?
    Thanks in advance.
    Inê

    I have achieved this by implementing the BADI : CRM_MKT_ADR_SEARCH
    In this BADI's method : CHANGE_SEARCH_RESULTS you can modify the data which is being sent back to system for campaign execution.
    NOTE: I am using Address Independent Communication Data of Business Partner
    Below is my sample code for contact person email :
      data: wa_bp_cp_channel type crmt_bp_cp_channel.
      field-symbols: <fs_bp_cp_channel> type crmt_bp_cp_channel.
      types: begin of ty_cp,
              partner type but000-partner,
              address type but000-addrcomm,
             end of ty_cp,
             begin of ty_bpcp,
               partner1 type but051-partner1,
               partner2 type but051-partner2,
             end of ty_bpcp.
      data: it_cp type table of ty_cp,
            wa_cp type ty_cp.
      data: it_bpcp type table of ty_bpcp,
            wa_bpcp type ty_bpcp.
      data: it_bp type table of ty_cp,
            wa_bp type ty_cp.
      read table ct_bp_cp_channel into wa_bp_cp_channel with key com_channel = '03'.
      if sy-subrc = 0.
        select partner addrcomm
          from but000
            into table it_cp
              for all entries in ct_bp_cp_channel
                where
                  partner = ct_bp_cp_channel-cp_number.
        select partner1 partner2
          from but051
            into table it_bpcp
              for all entries in ct_bp_cp_channel
                where
                  partner1 = ct_bp_cp_channel-bp_number.
        if it_bpcp[] is not initial.
          select partner addrcomm
            from but000
              into table it_bp
                for all entries in it_bpcp
                  where
                    partner = it_bpcp-partner2.
        endif.
        sort it_cp by partner.
        sort it_bp by partner.
        sort it_bpcp by partner1.
        loop at ct_bp_cp_channel assigning <fs_bp_cp_channel> where com_channel = '03'.
          read table it_cp into wa_cp with key partner = <fs_bp_cp_channel>-cp_number binary search.
          if sy-subrc = 0.
            <fs_bp_cp_channel>-addrnumber = wa_cp-address.
            clear <fs_bp_cp_channel>-bp_number.
            clear <fs_bp_cp_channel>-bp_guid.
          else.
            read table it_bpcp into wa_bpcp with key partner1 = <fs_bp_cp_channel>-bp_number binary search.
            if sy-subrc = 0.
              read table it_bp into wa_bp with key partner = wa_bpcp-partner2 binary search.
              if sy-subrc = 0.
                <fs_bp_cp_channel>-addrnumber = wa_bp-address.
                clear <fs_bp_cp_channel>-bp_number.
                clear <fs_bp_cp_channel>-bp_guid.
              endif.
            endif.
          endif.
        endloop.
      endif.

  • How to run multiple CodedUI Ordered Tests over multiple Test Agents for parallel execution using Test Controller

    we are using VS 2013, I need to run multiple Coded UI Ordered Tests in parallel on different agents.
    My requirement :
    Example:   I have 40 Coded UI Test scripts in single solution/project. i want to run in different OS environments(example 5 OS ).  I have created 5 Ordered tests with the same 40 test cases. 
    I have one Controller machine and 5 test agent machines. Now I want my tests to be distributed in a way that every agent gets 1 Ordered test to execute. 
    Machine_C = Controller (Controls Machine_1,2,3,4,5)
    Machine_1 = Test Agent 1 (Should execute Ordered Test 1 (ex: OS - WIN 7) )
    Machine_2 = Test Agent 2 (Should execute Ordered Test 2 (ex:
    OS - WIN 8) )
    Machine_3 = Test Agent 3 (Should execute Ordered Test 3
    (ex: OS - WIN 2008 server)  )
    Machine_4 = Test Agent 4 (Should execute Ordered Test 4 (ex:
    OS - WIN 2012 server) )
    Machine_5 = Test Agent 5 (Should execute Ordered Test 5 (ex:
    OS - WIN 2003 server) )
    I have changed the  “MinimumTestsPerAgent” app setting value
    as '1' in controller’s configuration file (QTController.exe.config).
    When I run the Ordered tests from the test explorer all Test agent running with each Ordered test and showing the status as running. but with in the 5 Test Agents only 2 Agents executing the test cases remaining all 3 agents not executing the test cases but
    status showing as 'running' still for long time (exp: More then 3 hr) after that all so  its not responding. 
    I need to know how I can configure my controller or how I can tell it to execute these tests in parallel on different test agents. This will help me reducing the script execution time. 
     I am not sure what steps I am missing. 
    It will be of great help if someone can guide me how this can be achieved.
    -- > One more thing Can I Run one Coded UI Ordered Test on One Specific Test Agent?
    ex: Need to run ordered Test 1 in Win 7 OS (Test Agent 1) only.
    Thanks in Advance.

    Hi Divakar,
    Thank you for posting in MSDN forum.
    As far as I know, we cannot specify coded UI ordered test run on specific test agent. And it is mainly that test controller determine which coded UI ordered test assign to which test agent.
    Generally, I know that if we want to run multiple CodedUI Ordered Tests over multiple Test Agents for parallel execution using Test Controller.
    We will need to change the MinimumTestsPerAgent property to 1 in the test controller configuration file (QTControllerConfig.exe.config) as you said.
    And then we will need to change the bucketSize number of tests/number of machines in the test settings.
    For more information about how to set this bucketSize value, please refer the following blog.
    http://blogs.msdn.com/b/aseemb/archive/2010/08/11/how-to-run-automated-tests-on-different-machines-in-parallel.aspx
    You can refer this Jack's suggestion to run your coded UI ordered test in lab Environment or load test.
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/661e73da-5a08-4c9b-8e5a-fc08c5962783/run-different-codedui-tests-simultaneously-on-different-test-agents-from-a-single-test-controller?forum=vstest
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Parallel execution for Expression Filters

    I'm looking for any information on whether expression filters are amenable to parallel execution or not.
    I had a look through the documentation without success, and saw that in the type declarations for supporting objects there is no mention of DETERMINISTIC or PARALLEL_ENABLE. However, the static functions and procedures do not look like they have any constructs that the database would see as an impediment for parallel execution.
    Can anyone advise on this?

    Thanks for that.
    Maybe in a parallel query environment the index will not be used. But I was really wondering whether the execution of the Evaluate function itself would be parallelised, as it invokes functions that are not explicitly marked as deterministic or as safe for parallel execution.
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14251/adfns_packages.htm#BABIGDGE
    Well, I'll see if I can investigate (maybe I'll have to suspend those system triggers that prevent modification of the Type ... just for experimental reasons, you understand).

  • Communication medium creation in Campaign execution

    Dear experts,
    Please guide me how to create communication medium while executing the campaign.
    I had errors in communication medium and template while executing the campaign.
    Awaiting the response at the earliest of possible.
    Thanks in advance,..
    Regards,
    Ramesh Mudhigiri.

    Hello,
    depending on the communication medium selected system builds the screen configuration for the communication channel screen. If you select any communication medium that creates any business activity / lead / sales order the related template fields get enabled so you can use a activity template / lead template / sales order template for the business transaction creation.
    In case of the open channel communication medium system is not sure which fields are required in the open channel context all those fields are shown independently from the configuration.
    The same is hardcoded and determined in the following calls:
    119  METHOD CREATE_VISIBLE_ATTR_LIST CL_MKTPRJ_COMMCHNL_UTIL
    118  METHOD CREATE_NEW_CONFIGURATION CL_MKTPRJ_COMMCHNL_UTIL
    However you can use BAdI CRM_MKTPL_UIU_MODIFY_COMM_CHNL to modify the determined configuration according to your requirements. Using the BAdI you can add / delete fields from the configuration that are not required in the open channel conext.
    Please find further information in the following note:
    1454944   Modify channel attributes via BAdI
    The BAdI should be available in your system however I hope this helps to understand the behaviour.
    best regards,
    Johannes

  • Letter Communication Method in Marketing Campaign Execution

    Hi All,
    When you assign the communication method to the communication medium in Campaign Execution there is a drop down list box where you have the choice between these communication methods :
    1 BP Controlled
    2 telephone
    3 Internet Mail
    5 Fax
    6 SMS
    7 Generate Contact (visit)
    8 Open Channel
    9 Lead
    10 File Export
    11 Sales Order
    The communication method "letter" is not listed : do you know how to add it ?
    Thank you and best regards

    Hi Thomas,
    They're values from domain CRM_MKTPL_COM_METHOD. You can check them in t-code SE11.
    Kind regards,
    Garcia

  • Data Driven Subscriptions Error - the query processor could not start the necessary thread resources for parallel query execution

    Hi,
    We are getting the following error when certain data driven subscriptions are fired off: "the query processor could not start the necessary thread resources for parallel query execution".  I've read other posts that have the same error, and
    the solution usually involves adjusting MaxDOP to limit the number of queries that are fired off in parallel.  
    Unfortunately, we cannot change this setting on our server for performance reasons (outside of data driven subscriptions, it negatively impacts our ETL processing times).  We tried putting query hints like "OPTION (MAXDOP 2);" in the reports
    that are causing the error, but it did not resolve the problem.
    Are there any settings within Reporting Services that can be adjusted to limit the number of subscriptions that get fired off in parallel?
    Any help is appreciated - thanks!

    Yes, that is correct.  It's a painful problem, because you don't know which specific subscription failed. For example, we have a data driven subscription that sends out about 800 emails. Lately, we've been having a handful of them fail. You don't know
    which ones out of the 800 failed though, even from the RS log files - all it tells you is that "the
    query processor could not start the necessary thread resources for parallel query execution".
    Thanks, I'll try changing <MaxQueueThreads> and will let you know if it works.
    On a side note: I've noticed that it is only reports with cascading parameters (ex. where parameter 2 is dependent on the selection from parameter 1) that get this error message...

  • [svn:osmf:] 15563: Media still playing for parallel elements after Playback error.

    Revision: 15563
    Revision: 15563
    Author:   [email protected]
    Date:     2010-04-19 12:34:19 -0700 (Mon, 19 Apr 2010)
    Log Message:
    Media still playing for parallel elements after Playback error. FM-612.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-612
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/media/MediaPlayer.as

    Alright, well I figured it out at last.  In case anyone has the same problem I was missing a perl script.  I believe it's only needed when you're running a frontend separate from the backend.
    pacman -S perl-crypt-ssleay
    Last edited by luciferin (2007-08-21 19:22:02)

  • Open Channel in Campaign execution

    dear experts,
    i want to used the open channel in campagin execution for sending message to the other system. basicly it will generate the xml file in the server.
    in order to do that, i made a badi implementation of CRM_MKT_EXP_CAMP_DAT and made some code in its method EXPORT_CAMPAIGN_DATA.
    beside that i also add a new communication channel in campaign execution.
    and for the form, i made a form with general usage and plain text type.
    i test the badi in campaign by selecting 'Target Group to Channel' in the menus after select the target segment.
    in the testing, i faced an error and if i trace the error using tx SLG1 there is 2 messages found, that is:
    1. <number> partners in the target group is not contacted
    2. error determining call times for open channel for target group
    is there any clue why i face this error ?
    is there any documentation for implementing the open channel in campaign ?
    please help
    many thanks in advance
    eddhie

    Hi.
    Go to SPRO: CRM > Marketing > Marketing Planning and Campaign Management > Campaign Execution > Define Communication Medium
    Here if you are on CRM 7.0 release you already have a communication medium of example: ACTV, that generates documents of type 0010.
    You must create your own communication medium, with communication method "Generate contact" and indicate which transaction type should be generated. In your case, set here your visit document type.
    Then you create a campaign for this communication method, assign a target group and execute campaign.
    After job execution if you check the last documents created on CRMD_ORDERADM_H table, you will see the generated visits.
    Regards.
    Susana Messias

  • Activity Generation on Campaign Execution

    Is there a way to create an activity for every business partner in a target group when the campaign is executed?  For example, if we are sending an e-mail campaign to a target group of 10 people, I want to have an activity created for each of the 10 people stating that the campaign was sent to them.
    Thanks!
    Darcie

    Hi Darcie ,
    To generate activities for each member of the target group just assign a transaction to the communication medium.
    Follow the steps below:
    1. In the communication medium cutomizing (CRM->Marketing->Marketing Planning and Campaign Management-> Campaign Execution-> Define Communication Medium) you can assign the activity transaction for your communication medium at the second level.
    2. If this communication medium is assigned to your campaign, Everytime an outbound mail is triggered by your campaign to a member of the target group an activity using the transaction type specified in the customizing is created.Hence if there are 10 members in your target group 10 activities will be created.
    Regards,
    Shalini Chauhan

  • Campaign Execution Vs Campaign Automation

    Hi All,
    I have following queries.
    1.Whats is the main difference between Campaign Execution Vs Campaign Automation.
    2.I have a requirement - To Execute Campain for different Target groups to 3-4 Communication Channels at once . if possible - Let me know - How its possible.
    Please guide me. Thanks in Advance.
    Regards,
    Amrita

    hi
    campaign execution is executing the campiang once all the parameters are set like target group has been defined and communication channels has been selected ,now you just have to execute the campaign to get the desired result
    it can be done both manually or automatically
    for automatic execution you have campaing automation
    Campaign automation is designed to help you to deal with multichannel, multiwave and real-time campaigns, providing direct reactions to customer responses.
    Setting up a fully-automated campaign means that employees can access the campaign automation tool directly from the campaign screen, improving planning and increasing transparency.
    Campaign automation allows you to model a campaign, and once the process model is triggered, no further manual intervention is necessary. Response to a particular step can be immediate. Alternatively you can set up a batch response, for example, carried out either at periodic intervals or once a certain number of responses have been collected.
    for using multiple channels in automation u need to look into this:
    Campaign Automation in the Different Channels
    Campaign automation allows you to integrate the following business scenarios into the modeling of an automated marketing campaign:
          Interaction Center
          Survey
          Internet Sales; Business-to-Consumer or Business-to-Business
    For more information about the prerequisites for using campaign automation in each of these scenarios, see Customizing for Customer Relationship Management by choosing   Marketing   Marketing Planning and Campaign Management   Campaign Automation   Campaign Automation in the Different Channels. 
    just create target group for the every channel
    same target group should be there ,then u can use the campaing elemsnts for ur purpose
    this way u will be able to do campaign automation using diff comm. channels
    best regards
    ashish

  • Automatic Activity Creation during the Campaign Execution

    Hi Experts,
    I have the following requirement.
    If I run a campaign then a corresponding activity should be created in the CRM system.
    Ex; If a mail Invitation to a Tradeshow is sent to 10 customers then 10 Activities should be created for each of the 10 Customers.
    Does anyone know how to achieve this.
    We are using SAP CRM 2007
    Cheers,
    Arun

    Hi,
    First create Activity Template for activity.
    Under communication medium define followings:
    Communication Medium: ZXXX - Email/Activities
    Communication Methods and Transaction Types
    Priority 7 - () Generate Contact - assign Transaction type (Activity Template)
    Define Communication Methods for BP-Determined
    3 Internet Mail (SMTP)
    7 Generate Contact - assign Transaction type (Activity Template)
    During Campaign creation under Channel you need to fill 'Email Form' assignment
    also fill Activity template.
    Once Campaign ready for execution, click on button, it will send email and also create activities using template for those BPs included in segment.

  • B2B Campaign Execution

    Hi all
    In email campaign execution where the target group contains BP which are Organizations the emails should go to the their respective contact person maintained in BP Relationship. Is there any specific setting which needs to be maintained for the above scenario to happen?
    As the problem which I'm facing is that when I execute a email campaign for a target group containing BP of category Person then the emails are going out of the system and email activity is also created as system is able to find the email address from BP Master Data.
    But when I execute a email campaign for a Target Group containing Organizations as BP then emails are not going to their respective contact persons dispite of maintaining the proper BP Relationship for Organization and contact person.
    is there specific settings which i need to maintian in order for same to happen.
    Thanks
    Avi

    Hi Avinesh,
    To send e-mails to the contact persons of the organizations, make sure you have checked the B2B checkbox in the segment tab for your target group.
    Also click on functions to specify the role of your contact person ( which can be seen in below the target group assignement).
    Regards,
    Shalini Chauhan

  • Is there ANY way to install windows (for parallels) WITHOUT a superdrive?

    I have Parallels (build 5600) and Win XP running fine on my iMac.
    I want to run it on my MBA, too.
    I have successfully installed Parallels (on a new trial license for now), and when I went to install Windows, learned that it can't be done via Remote Disk.
    I'd really rather not spend $100 on an external drive JUST for this purpose.
    Can I make a disk image of the windows disk?
    Or connect to the imac in target disk mode (or something?!) to use THAT drive?
    Or... can I somehow just copy my "virtual machine" from the imac to the MBA? Not sure if that will cause windows serial number police to freak, though...
    Glancing through a quick search here, it seems it's possible to migrate the virtual machine. But what files, exactly, do I need to migrate? Just the .hdd file?
    I'd prefer to do a nice clean install from the CD, but I don't know if that's possible.
    Any help is appreciated!
    Thanks!

    Ok, I may have answered my own question.
    I am copying my Virtual Machine from my imac, but it will take a long time to copy, and takes 10gb of space, so trying that is a last resort.
    in the meantime I found this on the parallels site. Looks like you CAN use a disk image. I'm going to try it now- fingers crossed!
    http://kb.parallels.com/en/4826
    I'm using Macbook Air and cannot install Windows to Parallels Virtual Machine by means of CD/DVD drive “borrowing” feature. What should I do?
    RESOLUTION
    Unfortunately Macbook Air CD/DVD drive “borrowing” feature doesn’t support direct media streaming and thus cannot be used to install Windows (or any other Guest OS ) to Parallels Virtual Machine. To install a Windows VM on Macbook Air you can either create an .iso image of Windows installation disk on some other computer with CD/DVD drive and copy it to Mac or use an external CD/DVD drive that Apple offers for Macbook Air.
    Please refer to this article for the instructions on how to create an .iso image for Parallels VM on Mac - http://kb.parallels.com/entry/32/458/

  • Unable to clone File Adapter receiver channel for parallel processing

    Hi Experts,
    I am using variable substitution for File - RFC - File with out BPM scenario(using request response, oneway bean).
    While i placed the file in the sender FTP folder, the file didnt get picked up, but in communication channel monitoring, i am getting error ' Unable to clone File Adapter receiver channel for parallel processing'.
    Can anybody provide me suggestions to solve this error.
    Note : without variable substitution , the interface is working good.
    Is it due to, i am trying the source structure field in response file adapter?

    Hi,
    In your CC, do you use some additional paramaters ?
    like these one of point 47/48 of [Oss note 821267 - FAQ: XI 3.0 / PI 7.0/ PI 7.1 File Adapter|https://service.sap.com/sap/support/notes/821267]
    Maybe there is conflict with a parallel connexion and the bean used to do asynch-synch bridge...
    Mickael

Maybe you are looking for

  • Modelling "Last Month" figures in a Calculation View

    I am trying to create a Calc View to provide data for a report which for every slice of data should show some "this month" and "last month" data. My approach so far is to have a (graphical) Calc View which does Union of "this month" data (referred fu

  • Sender Soap Adapter PI 7.1

    Hi All We just installed a PI 7.1 Server. When I want to use the sender Soap adapter's Default XI Paramater they are not there. Is this because were only on SP 4? Can I still use the adapter as is or do we need to upgrade to a higher SP? Any input wi

  • TO_NUMBER function on varchar2 column with numbers and strings

    I need to create a column in a view that converts a varchar2 column data to number. The problem is that some of the data have strings and some numbers. I get "ORA-01722: invalid number" error when Oracle tries to covert strings (e.g. 'ABCD') to numbe

  • ORA-19648: datafile 132: incremental-start SCN equals checkpoint SCN

    I re-ran full backup but still cumulative backups failing with this error, looking for quick commands to fix this RMAN-00571: =========================================================== RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ========

  • Safari Crash: Can you tell why using this report?

    Safari is my new nightmare, it creashes at startup, and I can't find a reason... here is the crash report: Process:         Safari [1199] Path:            /Applications/Safari.app/Contents/MacOS/Safari Identifier:      com.apple.Safari Version: