WORKFLOW : Task marked as a background to send a mail to ext id not working

Dear friends,
I have configured a workflow by creating a subobject of BUS2012 and in my workflow i have created one activity which will send a information mail to approvers of Purchase order on a external mail id.
I have set the task to be processed in background mode it means this will be processed by WF-Batch user, when i see it in workflow log all the activities are getting processed successfully but im unable to see any mails flowing in SOST tcode.
When i perform this activity in Foreground mode and assign a external agent to a workflow task everything is working pretty fine and i can see the mail outflow in SOST tcode too but the same is not working in background processing mode.
please let me know is there any setting which needs to be checked out?
Awaiting for your positive reply on this!
Regards,
Sunny V

Hii,
Did you maintain Agent assignment in Background ?.It is a standard Task
If it is not activated then mail will not be send to External Mail Id.
First you check whether Agent assignment is activated or not.
Regards,
Ashwath.

Similar Messages

  • Sending SMTP mail using Mailgun does not work from Azure, but works from on premise

    I am using Mailgun to send email from my web application. When I test the application from my development box, the e-mail is sent and received I see the logs in Mailgun site as well. However, when I publish the code to Azure and send the e-mail, it is not
    sent. I don't see it in the Mailgun logs either.
    Is Azure blocking Mailgun SMTP? I appreciate any help.
    Thanks,
    Jay

    Hi Jay,
    From your description, I guess you may send mail via SMTP. I don't recommend you use SMTP method to send mail on Azure cloud service. You can use the MailGun API to send mail, Please refer to this document (https://documentation.mailgun.com/user_manual.html#sending-via-api
    ). Or you can use Sendgrid, please see this blog (http://blogs.msdn.com/b/patrick_butler_monterde/archive/2010/10/11/sending-e-mail-from-windows-azure-part-1-of-2.aspx).
    Regards,
    Will
    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.

  • I have forgotten my answers to the questions which are asked to identify me, and I am trying to press "send instructions to my e-mail", but this does not work, what should I do?

    I have forgotten my answers to the questions which are asked to identify me, and I am trying to press "send instructions to my e-mail", but this does not work, what should I do?

    If the email hasn't arrived after a few hours and isn't in a spam filter, you need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (113969)

  • Powershell script sends e-mail in ISE but not from powershell command line

    I have created a script that generates a report of all users who do not have photos in Active Directory. The script runs and sends an e-mail to a distribution list. It runs fine in ISE, but I cannot run it from command line or as a scheduled task. Any suggestions
    what I am doing wrong?
    #Starts Powershell Snap-In
    Start-Transcript -path c:\Scripts\StaffWithoutPhotos.txt
    add-pssnapin Microsoft.Exchange.Management.PowerShell.E2010 -erroraction silentlyContinue
    $mailboxes = $null
    $mailboxes = @(Get-Mailbox -OrganizationalUnit "Staff User Accounts" -ResultSize Unlimited | Where {$_.HasPicture -eq $False})
    Write-Host $mailboxes
    $report = @()
    foreach ($mailbox in $mailboxes)
    $mbObj = New-Object PSObject
        $mbObj | Add-Member -MemberType NoteProperty -Name "Display Name" -Value $mailbox.DisplayName
        $report += $mbObj
    Write-Host "Diagnostic Output"
    Write-Host "Before Mailbox value check"
    Write-Host $report
    Write-Host "After Mailbox Value check"
    if ($mailboxes -ne $null)
        Write-Host $report
        #Send the report generated to the e-mail list specified above
        $style = "<style>BODY{font-family: Arial; font-size: 10pt;}"
        $style = $style + "TABLE{border: 1px solid black; border-collapse: collapse;}"
        $style = $style + "TH{border: 1px solid black; background: #dddddd; padding: 5px; }"
        $style = $style + "TD{border: 1px solid black; padding: 5px; }"
        $style = $style + "</style>"
        #Start-Sleep -Seconds 5
        $smtpserver = "MAIL.contoso.com"
        $msg = new-object Net.Mail.MailMessage
        $smtp = new-object Net.Mail.SmtpClient($smtpServer)
        $msg.From = "[email protected]"
        $msg.To.Add("[email protected]")
        #$msg.To.Add("[email protected]") #Used for testing
        $msg.Subject = "Staff without Photos report"
        $msg.Body = "This report contains the list of users who do not currently have photos."
        $msg.Body += "<p>"
        $msg.Body += "After photos are available for these users please submit a request to have their accounts updated or send an e-mail to <a href='mailto:[email protected]?Subject=Staff%20Photo%20Updates' target='_top'> [email protected]
    </a> with <b>Staff Photo Updates</b> in the subject."
        $msg.Body += "<p>"
        $msg.Body += "This report runs on Fridays and will only send a message if we have Staff without Photos. For more information please contact your systems administrator."
        $msg.Body += "<p>"
        $msg.Body += $Report | ConvertTo-Html -Head $Style
        $msg.IsBodyHTML = $true
        $smtp.Send($msg)
    Stop-Transcript

    So after researching further and not receiving any more replies I decided to rewrite the script and attempt to use the send-mailmessage function. I have been unable to determine the reason for the original not script not working. We use a very similar script
    to my original code which works to generate a report and e-mail that report as an attachment and it works without any problems.
    After re-writing the script and using the send-mailmessage function I was able to get this report to work as expected. This has now been set up as a scheduled task to run on a server once a week. Here is the final code:
    Start-Transcript -path c:\Scripts\StaffWithoutPhotos.txt
    #Starts Powershell Snap-In
    add-pssnapin Microsoft.Exchange.Management.PowerShell.E2010 -erroraction silentlyContinue
    $mailboxes = $null
    $mailboxes = @(Get-Mailbox -OrganizationalUnit "contoso Staff User Accounts" -ResultSize Unlimited | Where {$_.HasPicture -eq $False})
    Write-Host $mailboxes
    $report = @()
    foreach ($mailbox in $mailboxes)
    $mbObj = New-Object PSObject
        $mbObj | Add-Member -MemberType NoteProperty -Name "Display Name" -Value $mailbox.DisplayName
        $report += $mbObj
    Write-Host "Diagnostic Output"
    Write-Host "Before Mailbox value check"
    Write-Host $report
    Write-Host "After Mailbox Value check"
    if ($mailboxes -ne $null)
        Write-Host $report
        #Send the report generated to the e-mail list specified above
        $style = "<style>BODY{font-family: Arial; font-size: 10pt;}"
        $style = $style + "TABLE{border: 1px solid black; border-collapse: collapse;}"
        $style = $style + "TH{border: 1px solid black; background: #dddddd; padding: 5px; }"
        $style = $style + "TD{border: 1px solid black; padding: 5px; }"
        $style = $style + "</style>"
        $smtpserver = "MAIL.contoso.com"
        $smtpFrom = "[email protected]"
        $smtpTo = "[email protected]
        $messageSubject = "Staff without Photos report"
        $Body = "This report contains the list of users who do not currently have photos."
        $Body += "<p>"
        $Body += "After photos are available for these users please submit a request to the Help Desk to have their accounts updated or send an e-mail to <a href='mailto:[email protected]?Subject=Staff%20Photo%20Updates' target='_top'> [email protected]
    </a> with <b><u>Staff Photo Updates</b></u> in the subject."
        $Body += "<p>"
        $Body += "This report runs on Fridays and will only send a message if we have Staff without Photos. For more information please contact your systems administrator."
        $Body += "<p>"
        $Body += $Report | ConvertTo-Html -Head $Style
        #Send the report
        send-mailmessage -from "$smtpFrom" -to "$smtpTo" -subject "$messageSubject" -body "$Body" -smtpServer "$smtpserver" -BodyAsHtml
    Stop-Transcript

  • Mail.jar is locked when sending a mail using servlet and not releasing

    Hi everybody,
    The mail.jar is locked in tomcat while sending the first message and not released until the tomcat get restarts.
    the problem is not recorded in any logs.
    1. Please create a servlet that sends mail
    2. Send a mail to any mailid
    3. then after the mail is send please try to delete the mail.jar or please deploy the same servlet again with some small changes (for redeploying take place only a few changes is there - please change any strings a little bit)
    then try to send mail using this servlet will not send mail becoause it will not redployed correctely.
    when i removed Transport.send(msg); from code it works fine. but ??
    please help me to recover from this issue. i don't want to turn on tomcat antiJarlocking and antiresourcelocking to true, becaouse this craete many other problems.
    please help me to recover from this issue.
    Thanks,
    Prasad.N

    hi friend
    I am using advanced version of jdk. i i have used many other jar files like mysqlconnector, logging, commonhttpclient, etc.... the only problem is with mail.jar. that locks are released when its use completed, but the lock holds until tomcat shutdown in mail.jar.
    what may be the reason?
    Thanks,
    Prasad.N

  • Sender file adapter - filename containing  *  does not work

    Hi All,
    I am doing simple file-file scenario wherein my filename is something like
    MATMAS05_XI20070911-150159-088.xml 
    there are many files having similar kind of  name which are supposed to be picked
    so simply I can go on writing <b>MATMAS05_XI*.xml</b> in filename
    it is not working.. communication monitoring gives error <i>Error occurred while connecting to the FTP server "10.25.117.237:21": java.lang.NullPointerException</i>
    But  when I use character '?' then it works fine - '?'  placeholder for each extra character
    I am on SP 20.My adapter is configured properly. FTP server working fine with '?' or simple filename. So bit confused why it is not working with *
    Are there some BASIS settings which have to be in place to work it out with * ?
    All your inputs are welcome !!
    Thank You,
    Mugdha kulkarni

    Hi
    this error is not related to multimple files or sending with the * char.. you can use it
    see the below link
    /people/mickael.huchet/blog/2006/09/18/xipi-how-to-exclude-files-in-a-sender-file-adapter
    The error related to the server connection.. also check the ip address is correct or not you configured correctly or not..
    also clarfity the correct error description ..
    Chilla

  • Sender FTP Adapter - Archive faulty files not working

    Hello,
    We are on SAP PI 7.11 SP 06
    We have a scenario where we are reading CSV files from a FTP location.
    File Sender Adapter is polling the FTP location for CSV files, if there
    is any error during FCC we need to move the faulty file under a
    particular directory on FTP server.
    Archive faulty files tick is click under the communication channel and
    also the required directory is specified, but the functionality is not
    working.
    If there is a faulty file it is just adding a rejected prefix to the
    file and keeping the file in the polling directory. It is not moving
    the file in the rejected directory specified in the communication
    channel.
    Thanks & Regards,
    Rahul Nawale

    Are you trying to archive the file on the same FTP server or a different FTP server? Archiving the faulty file on the FTP server might not have expected results. And if you are trying to archive the file on a separate FTP server, it wouldn't probably be achieved using the simple file adapter functionalities.
    The best way would be to archive the faulty files to an NFS location on your PI server (this will certainly work, even if it's FTP mode) and then use a separate script or PI interface (file tunneling) to move these files from PI server File System to FTP archive location.
    Regards,
    Suddhasatta

  • Sending e-mail over 3G doesn't work

    I can send e-mail from all accounts OK on wi-fi,however when on 3G only g-mail account will send.I am with Vodafone and have plus net e-mail account. Can anyone help. ( i-phone 4) Thanks

    It seems that your provider (Plus Net right?) is blocking outgoing emails not coming from their own connections. When you are on wifi, you are on plus net, but when on 3G, you are on Vodafone, and therefore the emails are blocked. This is what it looks like at least with the info given.

  • Mail Problems- Sending mail and auto check not working

    I am trying to connect to my schools exchange mail server over imap and can no longer seem to send out mail, it tells me it cannot send from the designated server. This seems to have been a problem since I upgraded to tiger a few months ago. Also more recently, although I have mail to check every 5 minutes it does not seem to be checking any of my accounts unless i manually click get mail. This problem is brand new and i haven't any idea what could casue that or what to fix. Any suggestions to either fix would be a great help

    Just some port changes

  • Google calendar sends e-mail reminders, iCal shall not trigger Mail

    I am using several Google calendars. I configured Google calendar to send reminders via e-mail. Unfortunately, iCal tries to do the same now. So for every entry in one of my Google calendars, Mail appears and wants to send a reminder e-mail ... Very annoying. What I would like to have, however, is the following:
    E-Mail alarms come via Google calendar and on screen reminders come via iCal. Under no circumstances, however, Mail shall send e-mail reminders itself.
    Any way to achieve this?

    Hi,
    Not exactly what you're asking for but… you can disable all alarms for a calendar in iCal by selecting the calendar in the Calendar list, pressing Cmd-I and from the info window that should appear checking "Ignore alarms".
    Best wishes
    John M

  • Sender File CC Atomatic control is not working

    Hi There,
    I got file to file scenario in my production system, my poll interval for sender communication channel is one minute (60 seconds).
    but some times i must manually stop and start the channel, the automatic control is not working.
    can anyone please help me what was the wrong.
    Kind Regards,
    Praveen.

    Hi Praveen,
    I am not sure what you are trying to achieve by using Automatic Control. This is mainly necessary when you want to use Scheduling functionality of the adapter. Other than that there is no major difference between Automatic Control or manual. Now if you are not able to use the scheduling of the file adapter properly, i.e. if the channel keeps on polling continuously, then you might want to re-create the channel in the production. i.e. create a new channel (you can copy the object) and delete the existing one. then refer this new one in the agreement. This should help.
    Cheers,
    Sarath.

  • Problem sending E mails advises :server does not recognise my E Mail address"

    When trying to send an E mail from my I Pad within reach of of my wifi router the mail is rejected by saying the server does not recognise my E mail address I have not experienced this before & would appreciate any advice to remedy the problem.Also the mail is sent to my SENT BOX & I cannot do anything with it other than delete.

    it seems that after a upgrade these days you get problems ???
    Sadly so far too often.
    Since it's on more than one, I think you should contact BT, there are several 5.7.1 meanings...
    https://support.google.com/a/answer/3726730?hl=en

  • Trying to SEND in Mail from email addresses not from my ISP verizon

    I have Verizon fiber optic. All is okay except, I can't SEND from Apple's Mail program, when I try to send from an email address that I set up elsewhere. Receiving is fine. Just sending doesn't work. Verizon tech support worked with me for 2 hours with no success. the @verizon email addresses receive AND send, just not SENDING by way of my other POP accounts, which according to my web host should work.
    I thought Mail could do this. Am I wrong?
    Any help is appreciated.
    Mail, version 1.3.11

    What doesn “I can't send” mean? What’s the problem exactly? What error messages do you get, if any?
    In an attempt to fight spam, many ISPs restrict the ability to send using an outgoing (SMTP) server not owned by them, usually by blocking port 25 for all traffic outside their own network, which means you cannot send with an SMTP server not owned by them if configured to use that port number. And it may happen the other way around as well, i.e. the outgoing server itself may look at the IP address you’re connecting from and refuse the connection if you’re outside its own network.
    Something that often works is changing the outgoing server port to 587 (or whatever alternate port number the outgoing server listens to) instead of 25 and using some form of authentication in Preferences > Accounts > Account Information > Outgoing Mail Server > Server Settings, but two conditions must be satisfied for this change to work: (1) the ISP must not block that port as well AND (2) the outgoing server in question must listen to that port and accept a form of authentication not based on the IP address you’re connecting from.
    Independent mail service providers not tied to a particular ISP, such as .Mac and Gmail, do allow authenticated SMTP access on port 587, which is the reason changing the outgoing server port number solves the problem for them if the ISP doesn’t block that port as well.
    Read the following article, which applies to all versions of Mac OS X (not just Mac OS X 10.4.2 and earlier as the article states) and can be useful for other mail accounts as well (not just .Mac):
    .Mac: Server timeout alert message when sending email

  • HT1688 my 4s is unable to send imessages and the 4g is not working

    my 4s is unable to send i messages and the 4g is not working. it does work when connected to wifi

    ONe last suggestion,  settings - general - reset - reset network settings.
    IF that doens't work then you will need to contact your phone carrier for your cellular data issue.

  • "send to color" command from FCP not working.

    Hello there...
    The problem i'm having is when I send to Color from FCP nothing happens.
    I'm working on a project all the footage is in DV... very straight forward.. i've worked with color in the past so i understand the process of preparing the material for Color.
    I restarted, created a new project, imported material in different codecs like pro res... and Nothing... Nada.
    I have the latest version of FCP and Color.
    i'm on a deadline so i want to avoid reinstall... any ideas??
    any help will be greatly appreciated!
    thanks!!!
    andres.

    Hello JP, Thanks for your reply!!
    Here are the answers...
    Restart: the application and computer (usually the solution to every problem in life)
    Created a new project In FCP.
    I'm not mixing any codecs... everything is straight edits no dissolves, no speed change, just cuts, all the material is the same source an old school mini DV camera 29.97fps.
    I'm trying to send a sequence form FCP. Actually the "send to color" command is highlighted.
    By nothing i mean:
    I select on file menu "Send to Color" command and I see the prompt window with the duration of the project (5min) Name of sequence... i change the name to v2... and thats it. Color doesn't open... I tryed opening color in advance and same thing. seems opening script is not working.
    Thanks for your reply and help!!!!!!
    best,
    Andrés.

Maybe you are looking for

  • Seems like non retina macbook pro is more expensive than retina macbook pro!

    MacBook Pro 15-inch 2.6 GHz is $2,299.00 with the Antiglare Widescreen Display now. If I wanna upgrade it with Crucial 16GB kit ($80) and 256GB Crucial m4 2.5" SSD with Data Transfer Kit ($220) it's gonna coast $2,599.00 all together.  On the other h

  • Query about Leaving date,Reason for leaving fields in R3 report of HR Modul

    Hi Experts,           I have a report in R3 for HR. In the report i am getting fields like leaving date,reason for leaving . When I  clicked F1 on the leaving date and reason  i came to know the field name as FIREDATE and MGTXT... I checked in DD03L

  • Intercompany purchase copies sales amount-but applies base currency

    Hi We have 2 companies-one with base currency INR and second with base currency USD.  Some customer orders are taken by USD company which gets goods producted at INR company. By assigning INR company's plant in USD companies sales order, we can gener

  • POA Segfault error 4 in libtoolkit.so.1

    Hi, We've got a customer that is getting this error regularly in /var/log/messages and their Post Office crashes everytime. 2 weeks ago we migrated the Post Office from OES2sp3 / gw8.0.3 to oes11sp2 (64bit) / gw2012, everything ran smoothly for at le

  • SQL Filter Help Needed

    Hello, I am in need of some SQL help as I am not sure how to do it.  I want to only return rows of data that meet the following criteria: 1) in tableA columnA it could have a value shown as such:  A,B,1,2,3,5,8 2) in tableA columnB it shows one of th