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.

Similar Messages

  • Email Activity not sending emails for one domain - 10.1.3.4 MLR#10

    I have four domains in my BPELConsole. My evey BPEL process has CatchAll block and I'm sending email notification with fault details.
    Somehow, my BPEL processes from three domains are sending emails properly but myDomain4 is not sending emails even after successful execution of Email Activity.
    1) I have compared the Email code with processes in other domain and they are similar.
    2) orabpel.bpelnotification is not logging any error for this notification.
    3) I never received any email from this domain. There was no error in logs during domain creation.
    3) I am getting following in logs that sending email was successfully executed. It received Notification ID too
    <2010-09-22 07:24:44,530> <DEBUG> <myDomain4.collaxa.cube.services> <oracle.bpel.services.notification.queue.QueueConnectionPool::QueueConnectionPool> Fetched a queue connection from pool java:comp/env/jms/Queue/NotificationSenderQueueConnectionFactory, available connections=4
    <2010-09-22 07:24:44,534> <DEBUG> <myDomain4.collaxa.cube.services> <oracle.bpel.services.notification.queue.sender.Publisher::init> Start of send(type,caller,message) type = email caller = BPEL
    <2010-09-22 07:24:44,534> <DEBUG> <myDomain4.collaxa.cube.services> <oracle.bpel.services.notification.queue.sender.Publisher::init> Notification ID 12834c63e81c20d0:-71064af1:42b35e5dab4:-7283
    Please help/hint for any possible solution/debugging.

    sometimes i have seen emails not being sent when the async invokes takes more time than the overall completion.. And yes, we might still see successful log as emails sent. FYI - I am with 10.1.3.3.1 MLR #8.
    did you try just creating a email only process? switch off all other processes in that domain and initiate only this email process to see what happens..

  • Restrict Broadcaster to not send Emails for certain Queries

    Hi,
    is there any possibility to restrict a user on sending Emails for certain queries?
    With the existing authorizaion objects S_RS_BCS and S_RS_ADMWB it is not possible to do so.
    He will need S_RS_COMP to be able to open the Query.
    With S_OC_SEND I just be able to take his ability to send Emails, but the user will need this option.
    Does anybody has an idea?
    Thanks and best regards
    Sascha

    The Workspace User role ony controls whether the user is allowed to use Workspace or not.  A user will only be able to Start a Process in Workspace if they a) are a Workspace User and b) the process security settings allow them to by having the INVOKE_PERM enabled.  The INVOKE_PERM setting is usually controlled from within Application Management area in the Adminui and would be set per process to define who is allowed to invoke (start) that service (process).  Take a look at your processes and see if they are defined for the All Principals group having the INVOKE_PERM as this is one way in which everybody can start a process.
    I'm unfamiliar with the Services User role but if it sounds like maybe this has the INVOKE_PERM so this could be why all your users can start processes, presuming they are all in this role.
    But however the INVOKE_PERM priviledge is being granted, it is not via the Workspace User role.
    Hope that helps.
    Jon

  • Apple not send email for reset password

    My Apple was closed after several attempts to open the account iCloud and then restore it worked for the password and I do not send me e-mail for reset password plas halp me
    <Email Edited By Host>

    Hello 3888,
    The article linked below details what to do should you not recieve your reset email.
    If you didn't receive your Apple ID verification or reset email
    http://support.apple.com/kb/TS5404
    Cheers,
    Allen

  • SMTP Adapter: Not sending email for one of the applications

    I have a weird problem. I have three applications that need to send emails. Two of them are sending emails but the third one is not. Practically everything in the third is a copy-paste from the second application. Uses the same handler and so forth. In reality
    there is no reason there should be any failure. 
    How can I track if my email request was sent to the smtp server in the first place and also why this one is failing? Further, anything on the smtp server that could help tracing this message. May be it is failing there?

    The SMTP Adapter don't just "through away" messages. If your Tracked Service Instances shows that a message was sent through the Port, I am pretty sure that a mail was indeed sent. 
    -Are you using Static- or Dynamic Port?
    Can you try to set the Send Port in "Stopped" state, and then send a message to it. Examine the message suspended in BizTalk, and if everything looks ok, then start the Port again and check that the message has disappeared from both suspended and running
    instances in the Group Hub.
    If so, quickly check the mail box, make sure that no spam-filters etc. are messing up your test.
    Morten la Cour

  • Notification mailer not sending emails for PO approvals and requistions etc

    I started my notification mailer
    Edited it and gave the smtp server IP there..I did go into advanced settings
    Than i ran a request and selected an employee defined as user in the apps for notify in the options..i saved the employee earlier with its email address
    it was working fine, but for this, shud the email address has to be defined with the user or the employee that is attched to the user?
    Second problem
    on PO approval cases, the PO maker is not receiving emails when the PO gets approved..and the approver is not receiving email notifying him that he has received a PO for approval
    Can you please tell me what am i missing?

    Hi,
    the diagnostic i ran was accoring to the note
    Oracle Workflow ATG Support: R12 Java Mailer Setup Diagnostic Test [ID 748421.1
    It has so many output files
    which one should i post
    Did you get any error/warning messages? If yes, post this part only here.Regards,Hussein                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • I am trying to get my password reset but apple not sending email for me to reset

    Any one know why my password reset email from apple doesn't come to my emails inbox or junk etc. I can't get into my apple account

    Nope. We are not apple. Ths is a user to user forum.

  • Forgot my security question and apple does not send email

    forgot my security answer and apple does not send email for the instrctions to reset

    Click here and request assistance.
    (76924)

  • Sending Output to Contact Person

    Hi all,
    I want to send the order confirmation to the Contact Person.Can anyone suggest me the settings needed.
    Regards,
    Ajit

    Hi Ajit,
    Absolutly you can send order conformation with Email. what you can do is.
    You can ask your  ABAP'er to generate SMARTFORM with email facility. when you run the smartform that will send  Email to contact person. in this case you need to design necessary fields and output types.
    if you give exact details i can help you more.
    Thank you.
    Regards
    Ram

  • Ipad not sending email, forced to reboot for changes to apply

    Hi all
    I was asked to look at a friends two week old iPad today.
    It was set up for them last week.
    Initially the person setting it up tried to add a Gmail account but found that it would receive but not send emails (using the native email app).
    They then decided to open an outlook.com account and use that instead of the gmail account.
    This worked fine for two days but then error messages saying that the mail could not be sent started to pop up. It struck me that the speed with which the error message appeared after clicking send suggested that this was an iOS issue rather than the server rejecting anything.
    I tried to check the imap/smtp settings in the "control panel" but they were not available (read:visible) so I deleted the account and entered the settings manually.
    It still wouldn't send emails but this time it didn't throw up any error messages, instead it decided to just dump them in the outbox without notifying me that there was an issue.
    Suspecting that the issue was with the ipad rather than the outlook servers, I decided to use my own smtp server details. Initially I tried using SSL but when this too failed I switched to the unsecure version on port 25.
    It still wouldn't send anything so I eventually rebooted by holding down the power button until the power off slider appeared. On rebooting I discovered that I could now send emails.
    TBH I have no idea if using the different SMTP server will be an issue if they ever want to check their outlook.com "sent mail" on line or not but i do have some questions
    1. Why was the reboot necessary? I had closed all open, unnecessary apps by double tapping the home button Might it have been the case that manually entering the outlook.com settings would have worked (given that the ideal set up would be to use the SSL outlook servers).
    2. Is this an unresolved iOS7 problem. Google searches resulted in many owners complaining that the iOS7 upgrade had rendered their email accounts incapable of sending emails. TBH the advice given ranged from perhaps sensible to plain daft.
    3. can anyone using outlook.com as their email provider on iOS7 confirm which smtp server, port, etc they use?
    4. Are there better email apps that actually give you detailed feedback?
    i don't know when I will next get the chance to get my hands on their ipad again but I would rather that they were using the correct outgoing servers with encryption (rather than my unencrypted smtp server).
    Thanks in advance

    neilyoung1 wrote:
    For the past few days I am now having trouble sending my client emails.  I get them bounced back with a permanent error of retry time exceeded.
    This is getting fustrating now as my client is needing answers that I cant give.  She is unable to email her colleague in the USA, and I am now unable to email her on a btinternet.com address.
    Do BT engineers monitor these forums?
    -Neil
    Hi again Neil.
    Your extra info now to me means that it appears to be problem at the client end!
    I hope you don't mind me asking a few questions ....
    Is she a regular BT Broadband user with a normal BTinternet email address ? Does she use secondary email addresses ?
    Do you know if she can happily email other people ? If not - it could be an account problem which may last a few days ....
    If you don't wish to provide the complete bounce message you received, could you perhaps email me the detail (emailing me using my shortcuts). Also pehaps you could ask your client to email me via my shortcuts, and see what happens and I'll take a look at replying to see what happens.
    The user on shentel.net domain she's been trying to email, did she ever manage to send any emails initially ? It could be the destination user having a problem.
    The mods do monitor these forums, but there are a lot of posts to go through of course ......
    http://www.andyweb.co.uk/shortcuts
    http://www.andyweb.co.uk/pictures

  • I can not send email from my iPad .  Have been using it for over a year, all of a sudden I can only receive email.  I have a wifi connection in my home and have a A T &T cellular data plan?

    I can not send email from my iPad .  Have been using it for over a year, all of a sudden I can only receive email.  I have a wifi connection in my home and have a A T &amp;T cellular data plan?

    I have a 1st gen iPhone that I just updated the software to 2.0.2
    Now whenever I press the mail icon it goes to the mail app for about 4 seconds, does nothing, no loading of folders, old messages, nothing.
    Then it reverts back to the home screen. Tried restarting, haven't tried restoring, thought I'd look here first.
    Anyone???

  • I have not been able to send email for some time but now i have stopped being able to recieve email.

    i have not been able to send emails for some time but in the last two days ive stopped being able to receive, the message says 'username or password incorrect' ive checked all the settings, ive deleated accout and set up again, ive rebooted phone. i tried to sync with pc but this also fails any ideas

    That is correct, They don't seem to know about Mac, never got a single scrap of help from  them.  Try recreating your account from scratch, delete the account, (write down all your settings first) and add an account, see if that works, and if it does, delete the first account to prevent things doubling up on you.  I think that's what I did, it was quite a while ago.  Hope this helps, or gets you pointed in the right direction.  Maybe go to At&t and try creating another account, and if ti works, delete the first.
    One other tihing I did was to reset Safari, as AT&T uses the net, that's about all I can remember, like I said it was awhile ago.

  • Have a new iPad with ios6.  Will not send emails. Addresses are valid  but get notice each time that recipient was rejected by the server.  No help on web site, and Apple's only manual is for previous os version.  We miss Steve Jobs.

    Have a new IPad with IOS6.  Will not send emails.  Addresses are valid but get notice each time that "recipient was rejected by the server."  Apple has apparently neglected to put out a manual with IOS6 and the previous manual has no indication of what to do.  Really miss Steve Jobs.

    Try going into Settings > Mail, Contacts, Calendars > select the account > account name , tap on SMTP (under the 'Outgoing Mail Server' heading) and then tap on your Primary Server and try entering your email account and password and see if it then works

  • My phone will not send emails even after the IOS 8 update. I continue to get the message of user name or password for my email are incorrect.

    My phone will not send emails even after the IOS 8 update. I continue to get the message of user name or password for my email are incorrect.

    Did you try to delete the mail account, restart the phone and add the mail account again?
    iOS: Setting up an email account
    This article provides morse tips, if you can't connect or you receive an error in Mail.

  • Muse contact form is not sending emails.

    Muse site contact form is not sending emails.  I perform a form check using this link http:/my_site.com/scripts/form_check.php.  It is giving the message that SQL configuration problem.
    Please help to solve this.

    I posted a very similar issue into the bugs forum. "
    Email form submit not sending to GoDaddy and Yahoo hosted email accounts"
    I have tested the emails across various forms and it works but does not using the Muse form widget. I strongly believe this is an Adobe Muse issue and needs further support from Adobe. In the mean time I have begun using Jot Form on my sites (jotform.com)

Maybe you are looking for

  • Can't logon to Windows XP to deleted some registry

    I use Malwarebytes Antimalware regularly http://www.malwarebytes.org/mbam.php and havent had an infection found. In about a year. Yesterday i scanned after about a month and i saw 12 infections ! MBAM said it could not clean a few infections: Malware

  • How to find the path of the file at enduser system

    Hi  Frndz.. Am per my requirement i need to read XL file from enduser PC, for this i need to kno the path on the enduser PC i.e . ,lets assume that test.xsl file is there an enduser PC on his desktop , so i need the path where its like  "C:\Docsandse

  • Basic query - check oracle server install type

    How do I check if the Oracle 10g is configured as GENERAL_PURPOSE or TRANSACTION_PROCESSING or DATAWAREHOUSE? I searched the forums but did not find anything specific for this info. This is an existing installation, I cant find the the installation l

  • Reversal of Migo

    Hi How can we delete the PO once the Migo and Miro has been Done, incase if not possible then how can we reversal the Migo as while reversing the Inspection location clearence has already been done which is not getting any more change know.

  • Rearanging of my codes when moving from code view to design view

    I was wondering if there is a setting in Dreamweaver CC that can maintain the way I wrote my codes? This is what happening: I work in code view and write my codes. then I go check it out in design view, then I come back to my codes and Dreamweaver ju