Sending a email when a line is Backordered

Hi All,
I am looking for the possibility of sending a eamil to a user when a line gets backeorderd at Pick release or at ship confirmation. Is there any seeded workflow which can be used to send the email notification.
Regards
Deepak

Please not that if you use Oracle Alerts, it will create a trigger on the table. It is not necessarily a bad thing, but you should consider the performance impact of creating a trigger Vs. running a report every 30 minutes to send the emails for the back-orders in the last 30 minutes.
One more solution can be to find the workflow that is executed when a line is backordered (if it uses WF at the first place) and then customize it to add a notification function which will send the email.

Similar Messages

  • Sending an email when passwords are expired?

    Hello,
    I am a novice in JSP area. What I am working on thesedays is to send an email when a password has been expired. The password will be expired after 60 days. Can I embed the codes in Servlet? Or should I use something else such as Oracle pl/sql?
    The thing is the web server is not in my company. I have to send a war file to the office which has the server. So I really want to embed every functions including sending an email into the war file.
    Thank you in advance!

    I am sorry. I put this on wrong forum. I didn't know how to delete it, though.

  • Keynote presentation on ipad wont send on email when saved as powerpoint document as its 59mb, yet the same document on my mac saved as powerpoint is 7mb ?

    wont send on email when saved as powerpoint document as its 59mb, yet the same document on my mac saved as powerpoint is 7mb ?

    Came here to complain about this maddening feature. Why it doesn't save the PDF out to a separate instance of the document is beyond me. PLENTY of us want to save the PDF without the layers, and want the PSD separate.
    "Oh good, I've completed this document.... let me just save it out as a PDF for client delivery and... Now all the work is gone."
    Genius, Adobe, genius. But it's cool--we'll just keep paying out the nose on a subscription basis with no fix for small errors like this.

  • In Lookout 6.2 how can I send an email when an alarm has deactivated or cleared?

    I need to send an email when an alarm has deativated. Such as, AC power fails and the generator is running. Whne the AC power is restored, I want to send an email as well as when the generator stops running. I have created mailer objects to do this based on the data member for each being "false". The problem is, that if the system does a restart then emails go out for all of those data members because they start up as "false" in the normal condition. Anyone have a suggestion?
    Thanks
    Brad Adams
    Communications Group Inc.
    [email protected]

    Simplest way i can think of is a FlipFlop or a latchgate obect to ensure it did start first.  Reset the flipflop/latchgate when the email is sent.
    Mike
    Mike Crabtree - Lead Developer
    Destek of Nevada, Inc. / Digital Telemetry Systems, Inc.
    (866) 964-6948 / (760) 247-9512

  • Sending an email when the report is being refreshed

    Hi All,
    Is it possible, in Answers, to send an email automatically when a report is being refreshed ?
    Thanks in advance,
    Lau

    You can do this multiple ways, As you mentioned using conditional ibot also. You should have flag or indicator in your database saying that ETL load was done. Then based on conditional request run a ibot. But the trick is after completing this ibot you need to turn of the flag.
    Other easiest way is Create a report which runs ibot, Make sure you checked Oracle BI Server Cache feed check box, save the ibot. At the end of ETL execute a command which runs the ibot job for you. There is a command mode application available in Oracle BI called SASchInvoke.exe. This application will run the ibot for you.
    here is the blog which explains more about it.
    http://oraclebizint.wordpress.com/2008/03/06/oracle-bi-ee-101332-integrating-schedulerdelivers-into-other-applications/
    - Madan

  • Sending an email when the payment run its finished

    Dear experts,
    I need to generate an email to only one recipient when the payment run its finished (F110).
    Can you help me with this?
    Points will be rewarded.
    Rgs.

    Hi
    If its just sending an email this can be achieved.
    An ABAP program can be developed to trigger this email and the same can be attached in the print programs tab of Automatic payment run with proper variant.
    But, if an workflow needs to be triggered then its a very huge task.
    Check if there is any standard SAP workflow for the same, i think there isn't any like that.
    Let me know if you require any further details.
    Kalyan
    Assign points if helpful

  • Need Help in sending Private Email when user clicks Oracle Password Reset

    How to send an email to user marked as PRIVATE and Confidential when they hit the Oracle Password Reset Link.

    user11986391 wrote:
    How to send an email to user marked as PRIVATE and Confidential when they hit the Oracle Password Reset Link.What do you mean by private and confidential?
    Reset Password Functionality FAQ [ID 399766.1]
    How to Modify The Password Reset Statement for the UMXUPWD.wft Workflow [ID 420236.1]
    How to Change the Text of Instructions in the "Reset Password" Screen? [ID 762798.1]
    How to open customized page when click on "Forgot Password" URL ? [ID 556454.1]
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Password+AND+Forgot&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Unable to send the email when ownership is assigned for a task using SharePoint

     
    When we give any permission to the user through Group and People in SharePoint then that respective user gets an auto generated email, this is working fine for me.
                            But my actual problem comes here, I have created a task list in SharePoint when I assign a task to the person then that respective person did not get auto generated email. So please do help me with a right solution.

    Hi,
    Check below link,Might be help full for you.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/55d29459-9aae-4bd0-8cc6-97424326f49f/send-email-when-ownership-is-assigned?forum=sharepointdevelopmentlegacy
    Hasan Jamal Siddiqui(MCTS,MCPD,ITIL@V3),Sharepoint and EPM Consultant,TCS
    |
    | Twitter

  • How can I send an email when a function returns false?

    Im trying to make this code work, but i still receive an email when the function is equal to false. Can anyone assist me in finding the issue? What the program does is look for servers that has a set limit (in GB) on specific drives.
    #This Program goes through all the servers and informs any level below the limit
    $ErrorActionPreference = "SilentlyContinue";
    $scriptpath = $MyInvocation.MyCommand.Definition
    $dir = Split-Path $scriptpath
    #=================Function============
    Function isLow($server, $drive, $limit)
    $disk = Get-WmiObject -ComputerName $server -Class Win32_LogicalDisk -Filter "DriveType = 3 and DeviceID = '$drive'";
    [float]$size = $disk.Capacity;
    [float]$freespace = $disk.FreeSpace;
    $sizeGB = [Math]::Round($size / 1073741824, 2);
    $freeSpaceGB = [Math]::Round($freespace / 1073741824, 2);
    if($freeSpaceGB -lt $limit){
    return $true;
    else{
    return $false;
    #================Servers==============
    #------------------###server1--------------
    $server = "###server1";
    $drive = "C:";
    $lim = 25;
    if(isLow $server $drive $lim)
    $Alert += $server + " || " + $drive + " is low<br>"
    $server = "###server1";
    $drive = "D:";
    $lim = 35;
    if(isLow $server $drive $lim)
    $Alert += $server + " || " + $drive + " is low<br>"
    #-----------------###(more servers ect.)--------------
    #================EMAIL===============
    $smtpServer = "192.168.x.x"
    $ReportSender = "[email protected]"
    $users = "[email protected]"
    $MailSubject = "ALERT!!! Low DiskSpace"
    foreach($user in $users){
    if($true){
    Write-Host "Sending Email notification to $user"
    $smtp = New-Object Net.Mail.SmtpClient($smtpServer)
    $msg = New-Object Net.Mail.MailMessage
    $msg.To.Add($user)
    $msg.From = $ReportSender
    $msg.Subject = $MailSubject
    $msg.IsBodyHTML = $True
    $msg.Body = $Alert
    $smtp.Send($msg)
    else($false){
    Write-Host "No one is pass the limit"

    Using a CSV is good.  Just load the "$servers" hash array from a CSV and the rest will work the same. The overall structure would work better if it was more like this.
    Function isLow($server, $drive, $limit){
    $disk = Get-WmiObject -ComputerName $server -Class Win32_LogicalDisk -Filter "DriveType = 3 and DeviceID = '$drive'"
    if($disk.FreeSSpace -lt $limit){
    $true
    }else{
    $false
    $servers=@()
    $servers=@{
    Server="###server1"
    Drive='C:'
    Limit=25Gb
    $servers=@{
    Server="###server2"
    Drive='D:'
    Limit=15Gb
    $servers=@{
    Server="###server3"
    Drive='C:'
    Limit=50Gb
    $results=foreach($servers in $servers){
    if(isLow $server.Server $server.Drive $server.Limit){
    '{0} || {1} is low<br>' -f $servers.Server,$server.Drive
    if($results){
    Write-Host 'Sending Email notification' -fore green
    $mailprops=@{
    SmtpServer='192.168.x.x'
    From='[email protected]'
    To=$users
    Subject='ALERT!!! Low DiskSpace'
    Body=$results
    BodyAsHtml=$true
    Send-MailMessage @mailprops
    }else{
    Write-Host 'No one is past the limit' -ForegroundColor green
    The biggest issue is to realize that this is a computer.  If you type the same thing more than once then consider that the computer can do it for you.  Once you learn to think like a computer all of this becomes easier.
    ¯\_(ツ)_/¯

  • IPhone users unable to to send as email when trying to forward conversation

    Hello,
    I am seeing an issue on Lync 2013 for iPhone, where users attempt to save their IM conversation by using the send by email feature on iPhone.  The button is not listed, so there is no way for them to send the conversation.  I have searched but
    not found any sort of answer for this.  Has anyone else seen this, and found a resolution?  Thanks!

    Hi,
    I test successfully with both Exchange account and Hotmail account on my IPhone Lync client. On “Chats” interface on Lync mobile 2013 client, when I want to send the special conversation history by email, click the title of the conversation history
    to enter the content of it, then click the button which like three-point on the top right of the screen, in there I saw the option to send by email.
    So if couldn’t see the option, you can try to do the following methods:
    Check if you set email successfully on the IPhone.
    Check if the Lync client update to the latest version, if not, update from Apple App Store and then test again.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • I cant send an email, when i click on compose nothing happens

    I have a MacBook Pro, trying to send an email but when I click on compose nothing happens.

    Try quitting Mail (command+Q), restart your Mac, then try again.  If that doesn't work and this is your iCloud email account, try going to System Preferences>iCloud, uncheck Mail, restart your Mac, then go back and check Mail again.  (This removes, then adds back the account.)

  • Create Upgrade Evaluation Site Collections Timer Job does not send notification Email when the Site is created

    Hello Everyone,
    My problem is:
    The Create Upgrade Evaluation Site Collections job does not send a Notification Email when the Eval Site is created. I only get a notification E-Mail that mention that a Upgrade Evaluation Site Colletion is requested and then after 27 Days that the Evla
    Site will be deleted in three Days.
    My Enviroment:
    SharePoint Foundation 2013 Sp1 on Windows Server 2012
    Exchange 2010 SP3
    I hope someone can help.
    best regards
    domschi

    Hi domschi,
    As I understand, you didn’t receive email generated from Create Upgrade Evaluation Site Collections timer job. While you might receive email generated from Delete Upgrade Evaluation Site Collections.
    When you request an evaluation site collection, the request is added to a Timer job
     which runs once a day. You will receive an e-mail message when the upgrade evaluation site is available. This might take up to 24 hours. The message includes a link to the evaluation site. Upgrade evaluation site collections are set to automatically
    expire (after 30 days by default).
    Please go to CA > Monitoring > Review Job Definitions, locate issue timer job and click Run Now. Then go to Job History and check if the issue job failed to run.
    Also, please check if the email are received by Exchange Hub server.
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • Trigger a event and send an email  when a new entry is created in a table

    Hi All,
                I have scenario here where i want to trigger a event and send an email too when a new entry is created in a Ztable or an existing entry is changed.
    Please let me know how can i achieve this.
    Please excuse me if you find it basic as I am not very old in Workflows.
    Thanks in Advance,
    Saket.

    Hi..
    For your Requirement workflow not Required.
    Write a  Program to send Mail. This Program has to execute when ever the Save Button is Click, then the mail will be sent.
    Check the program in this [link|https://wiki.sdn.sap.com/wiki/x/nYKdAw ], which send the mail.
    Regards,
    Surjith

  • Apple Mail sends out emails when turned on. Adress book creates groups of email addresses

    I have had this issue with my address book for a while in that it creates new entries with just an email address as the actual entry and then hundreds of other email addresses from address book as this entry's additional email addresses.
    At the same time I had an issue with Apple Mail that I thought was unrelated but now I am not that sure anymore. When I turn Apple Mail on, it sends out emails that look like an endless chain of responses (spam) to the same email that advertises  all kinds of stuff.
    When I first noticed the issue I turned Mail off (a year ago). After updating to Lion I tried to use mail again but had the same issue and have not been using it since. But I appear to still find new entries in my address book all the time.
    I ran some software (ClamX) but wasn't able to find any malware so far. I can't imagine someone hacking into my machine and doing all this my hand. For what?
    So I am wondering whether anyone has had similar symptoms on their Mac?

    Do you recognize the new entries in Address Book, or the contents of the messages?

  • Send out email when BAM backend got exception

    As title
    is there any way to do it?

    This is not built into BAM. You could look at Oracle Enterprise Manager logviewer and OEM integration with email. Alternatively, use a tool that monitors log files and send email when it detects "failures" in the logs.

Maybe you are looking for

  • How do I remove e-mail address that appear in the drop down menu?

    When I enter an e-mail address the system offers me choices.  For most all of my address there are duplicates.  Also showing up is e-mail address that were typed incorrectly. When I go to Mail>Window>Previous Recipients there are no duplicates. No du

  • Headings to Bookmarks - w Word 2010 and Acrobat Pro 9

    So Adobe decided to rip us off by denying a fix for the Acrobat Pro Ribbon in  MS Office 2010 We refuse to take part on their money making scheme and spend loads to upgrade to Acrobat X just for that  (sorry Adobe, try not cheating your customers nex

  • Epson R2400 not printing correctly!

    Hi, I hope somebody can advise me, I have problems since installing leopard and can't solve them: 1. When I try to print a photograph from Photoshop CS3 using Leopard, the picture is almost colorless( if I print from CS3 using Tiger the colors are co

  • ITunes 7, tons of bugs on mine, somebody please help

    I'm new at this, I just bought one of those 80GB iPods less than a week ago, my first one. I can't get iTunes to function properly at all. 1) It won't list any of my music tracks properly, it imports them and scatters them randomly in some inconsista

  • Oracle 9,2.0 32 bit for Solaris can not access more than 4GB?

    I am sorry to ask rather stupid question. I joined company which has big SUN Fire running Solaris 9 64bit version. It has system memory 16GB and 8 CPUs. I found 8GB memory reported as free. It is production box. It is heavy loaded. I guess Kernel par