Notification issue:wf_notifications mail_status is null, status is CANCELED

Hi All,
In our HR systems, we use workflows extensively and in one of our custom workflows we send a notification to one group mail box. The FND_USER is defined and the group mail box address is given correctly.
In the workflow we recursively send notifications to that user as long as there are some unprocessed records in our custom table. The issue now is the users claim that the mails are not received by them in our live instance. While debugging we noticed that the mail_status is null and status is CANCELED for this particular workflow always.
I checked the following and they are correct:
1. Notification 'On Revisit' parameter set to 'Reset'
2. Checked in fnd_user and wf_local_roles, the user is active and the email id is correct there
3. No timeout parameters set for this notification
P.S. Notifications to this user are sent properly when sent from some other workflows. So not sure whether something is missing in the above workflow process.
It is really strange that the notification status is CANCELED. The begin and end date are same for such notifications. So these are not canceled by some abort process activities.
Please suggest.

Please post the details of the application release, database version and OS.
In the workflow we recursively send notifications to that user as long as there are some unprocessed records in our custom table. The issue now is the users claim that the mails are not received by them in our live instance. While debugging we noticed that the mail_status is null and status is CANCELED for this particular workflow always.
I checked the following and they are correct:
1. Notification 'On Revisit' parameter set to 'Reset'
2. Checked in fnd_user and wf_local_roles, the user is active and the email id is correct there
3. No timeout parameters set for this notification
P.S. Notifications to this user are sent properly when sent from some other workflows. So not sure whether something is missing in the above workflow process. Can you find any errors in the Workflow log file?
It is really strange that the notification status is CANCELED. The begin and end date are same for such notifications. So these are not canceled by some abort process activities.
Please suggest.How To Troubleshoot Java-based Workflow Notification Mailer [ID 242941.1]
Troubleshooting Workflow Java Notification Mailer - Technical Reference [ID 1191125.1]
A Guide For Troubleshooting Workflow Notification Emails - Inbound and Outbound [ID 831982.1]
Oracle Workflow Release 12 Diagnostics [ID 469822.1]
OWF H Diagnostics, Solutions and Information [ID 332152.1]
Thanks,
Hussein

Similar Messages

  • Need help in Notification issue

    Hi All,
    Have designed a new custom workflow, as part of workflow notification need to be sent to the supervisor.
    For this i have created role and assign users dynamically using below codes
    wf_directory.getroleinfo (v_role_name_b,
    v_role_display_name_b,
    v_email_address_b,
    v_notif_preference,
    v_language,
    v_territory
    IF v_role_display_name_b IS NOT NULL
    THEN
    --Remove the users from the role
    wf_directory.removeusersfromadhocrole (role_name => v_role_name_b,
    role_users => NULL
    wf_directory.adduserstoadhocrole (role_name => v_role_name_b,
    role_users => v_user_name
    ELSE
    -- Create the adhocrole .
    wf_directory.createadhocrole
    (role_name => v_role_name_b,
    role_display_name => v_role_display_name_b,
    LANGUAGE => 'AMERICAN',
    territory => 'AMERICA',
    role_description => v_role_display_name_b,
    notification_preference => 'MAILHTML',
    role_users => v_user_name,
    email_address => NULL,
    fax => NULL,
    status => 'ACTIVE',
    expiration_date => NULL,
    parent_orig_system => NULL,
    parent_orig_system_id => NULL,
    owner_tag => NULL
    END IF;
    Then this role is assigned to the attribute 'SEND_TO_ROLE' defined in the workflow.
    wf_engine.setitemattrtext (itemtype => itemtype,
    itemkey => itemkey,
    aname => 'SEND_TO_ROLE',
    avalue => v_role_name_b
    For this attribute 'SEND_TO_ROLE' have assigned Type as Role in Workflow.
    I can see records in Notification table with Mail_status as 'Mail', but not receiving the notifications either in mail nor in notification form, not sure where it is stuck.
    Not sure how to debug workflow, have downloaded the log file FNDCPGSC695411.txt but i am not able to find the exact issue.
    Please give your inputs to fix this issue.
    System Details:
    Workflow Builder - 2.6.3.5
    OEBS - 12.1.2
    Database - 11g
    Thanks in advance
    Rajesh

    Since you are assigning the notification to a role (v_role_name_b) and not to a user directly, then you will have to change the message of this notification so that the check box Expand Roles is checked. This way the workflow mailer will loop through all the users of this role (in this case only this user) and will e-mail the notification.
    Of course, you need to ensure that the user v_user_name was created properly and has an e-mailable notification preference, like MAILHTML or so.
    Regards,
    Alejandro

  • Unable to load null status:404 when replying in Verizon webmail

    Unable to load null status:404 when replying in Verizon webmail. Error appears in its own window. It seems to be related to MIME-encoded incoming messages. I can open a new message window and copy/paste the reply-message into the new message and then send it without the error. Trying to save-as-draft also gives the same error message. This is recent after update to V.31 of Firefox on Win7(Sp1).

    Hey guys,
    It looks like that the issue has been resolved on the site, can you please try to send and email and confirm this change. There was a bug filed and fixed this week in version 32?
    You make have to clear the cache for the site to see the changes. Thank you!

  • Email notification issue in some schemas

    Hi,
    My problem is almost identical as here DBMS_SCHEDULER send email notification issue
    One privileged scheduler user - user1 receive email notifications while two another (user2, user3) no.
    More plot is below i know 'what' resolve the problem but don't know how to do it :-)
    I want to execute code below on user3 schema, we tried this successfully on user2 (code executed directly on schema with temporary sys.dbms_aq access) so he receive his notifications.
    Problem is - we do not have direct access to second account (user3) how to execute this code as user3 ?
    declare
      reginfo1    sys.aq$_reg_info;
      reginfolist sys.aq$_reg_info_list;
    begin
      reginfo1    := sys.aq$_reg_info('SYS.SCHEDULER$_EVENT_QUEUE:SCHED$_AGT2$_X',
                                      1,
                                      'plsql://SYS.SCHEDULER$_JOB_EVENT_HANDLER',
                                      null);
      reginfolist := sys.aq$_reg_info_list(reginfo1);
      dbms_aq.register(reginfolist, 1);
    end;
    Already tried create procedure on user3 and execute immediate annonymous block but it still register with USER# 1 not 3 in  DBA_QUEUE_SUBSCRIBERS.
    More detailed plot:
    Jobs for user2 and user3 was created by user1, so JOB_CREATOR was user1 but OWNER was user2 or user3.
    We started with notifications configuration witch was ended with error on both user2 and user3 accounts:
    ORA-24093: AQ agent SCHED$_AGT2$_XX not granted privileges of database user1
    W get rid wit this using
    dbms_aqadm.enable_db_access(SCHED$_AGT2$_2, user1);
    dbms_aqadm.enable_db_access(SCHED$_AGT2$_3, user1);
    So user1 get privilege on agents for user2 and user3
    I believe error was already there because DBMS_SCHEDULER.add_job_email_notification is more automatic it probably registered subscriber that belongs to user2 and user3 with wrong USER# ID that belongs to user1.
    Database is 11.2.0.3

    it doesn't work because notifications are set from user1 account so USER# is still 1 even when I removed record first.
    This is my aproach based on Ask Tom: On Becoming Others, Limits, and Restoration
    >sqlplus user1
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    SQL> grant execute on sys.dbms_aq to user1;
    Grant succeeded.
    SQL> alter user user3 grant connect through user1;
    User altered.
    SQL> connect user1[user3]
    Enter password:
    Connected.
    SQL> create or replace procedure sched_not_add_q as
      2    reginfo1    sys.aq$_reg_info;
      3    reginfolist sys.aq$_reg_info_list;
      4  begin
      5    reginfo1    := sys.aq$_reg_info('SYS.SCHEDULER$_EVENT_QUEUE:SCHED$_AGT2$_3',
      6                                    1,
      7                                    'plsql://SYS.SCHEDULER$_JOB_EVENT_HANDLER',
      8                                    null);
      9    reginfolist := sys.aq$_reg_info_list(reginfo1);
    10    dbms_aq.register(reginfolist, 1);
    11  end;
    12  /
    Procedure created.
    SQL> exec sched_not_add_q;
    PL/SQL procedure successfully completed.
    SQL> drop procedure sched_not_add_q;
    Procedure dropped.
    SQL> connect user1
    Connected.
    SQL> revoke execute on sys.dbms_aq from user3;
    Revoke succeeded.
    SQL> alter user user3 revoke connect through user1;
    User altered.
    SQL> exit;
    >
    So it works now.

  • "Unable to load null status:404"

    Why can I not send replies to email recieved?  Every time I try I receive a pop up "............
    Unable to load null status:404
    I can send original mail no problem, but replies get bounced.  This has been going on for 3 days now with no action by Verizon maintenance.

    Looks like Mozilla had a bad update, I am affected too.
    There's an active bug report for this issue with Mozilla: https://bugzilla.mozilla.org/show_bug.cgi?id=1043690
    It's been an issue since beta for this version (31): https://support.mozilla.org/en-US/questions/1006704

  • Z10 Volume and Notification Issue

    Hi,
    I am facing frequent no volume and notification issue on my Z10. once i restart the phone it is getting resolved but this is really irritating as i have to do this restart process atleast 10 to 15 times a day as the problem is occuring frequently. definitely it is a software issue not an hardware issue please help me in resolving the bug...
    Model: BlackBerry Z10
    Model No: STL100- 1
    Current Device Software Version: 10.0.10.82

    Hey manikandanb4u,
    Welcome to the BlackBerry Support Community Forums.
    Thanks for the question.
    We are aware of this issue, a KB article was created about the issue: www.blackberry.com/btsc/KB33694
    Let me know if you have any more questions.
    Cheers.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • E-Mail notification issue with date

    Hi All,
    i am facing following email notification issue, could please clarify.
    E-mail notification that was sent to employee this morning, March 17, 2009, but actually the email is dated February 3rd and refers to the January timecard, but she received it today, for the February timecard.
    Please let me know why this was happening. I don't know if this issue on email server or workflow design.Thanks.
    Regards,
    Prasad

    Hi,
    any updates on this issue?
    is there any possibility to resend the old notifications manually?
    Thanks,
    Prasad

  • Android 2.2 update coming in early September- Will it address the email notification issues??

    The upcoming Android 2.2 update for Droid X. Will this update address the email notifications issues?? I don't have a corporate email account, but use my Droid X for my personal business. I love this phone but the email is annoying. The emails are not coming through quick enough, I don't get notified when new email arrives. I have to do a refresh to lear that I have new emails in my inbox.
    I want like to know if the upcoming 2.2 update will address these issues for personal email like aol, yahoo etc. I know they mentioned something about exchange servers being faster. This is a disappointment for me, I thought I have push email with Droid X but not really. Can Verizon comment on this?
    Thanks,

    I did all those, ie. set my email config to push email, battery on performance mode, check my outgoing and incoming servers and ports. All are corect settings, I even configured all my aol accounts with gmail settings to see if that would work but still not getting push emails. I even did a factory reset. I know this is an issue because I also checked Motorola support forums, a lot people were experiencing what I am going except that I think most them have corporate email and exchange issues.
    I don't know whether this could be addressed with the upcoming 2.2 update not just for corporate but personal emails as well, VERIZON ? Motorola??
    Thanks

  • IPhone 5 app crashing, notification issue & black safari screen?

    My iPhone is running the latest version of iOS 7.1.2. A few days ago my phone was not letting me send pics at all and any incoming pics I would have to tap to download. shortly after I wasn't receiving any texts at all. New iMessages would appear on my macbook but not on my phone. I did a reset it fixed the problem, however I am now having the same problem and more. The text app shows i have 8 unread messages, even when I don't have new texts. I tried deleting all text threads and the notifications are still there. I tried a reset again and it brought back all my old threads and didn't fix the notification issue. Now my mail and Facebook app both keep crashing and when i try to search anything on safari i get a completely black screen. Do I just need a new phone or how can I fix this?

    What does this have to do with iPhones or using an iPhone in an Enterprise (corporate) environment?
    Your issue is with the app developer(s).  Take the issue up with them.

  • SQL Server 2008:hide any row associate with original ticket when Status is cancel

    How can I say to hide any "original ticket" when the column status is Cancel?
    Date Date Stamp Original Ticket Trade Number Status
    01 jan 01 jan 123 130 Modify
    01 jan 02 jan 123 140 Cancel
    03 jan 03 jan 145 150 Modify
    04 jan 04 jan 160 200 Cancel05 jan 05 janv 210 210 (empty because some trade are not modify)i wanna get this result: hide original ticket witch status are cancel Date Date Stamp Original Ticket Trade Number Status
    03 jan 03 jan 145 150 Modify05 jan 05 janv 210 210 Tks a lot

    Hello,
    You can try to create a View to filter the recoder you don't need. Please refer to the following statement:
    Create table ticket
    ([Date] date ,[Date Stamp] date, [orginial ticket] int, [trade number] int, [status] varchar(20))
    insert into ticket values
    ('2014-01-01', '2014-01-01' , 123, 130,'Modify'),
    ('2014-01-01', '2014-01-02' , 123, 140,'Cancel'),
    ('2014-01-03', '2014-01-03', 145, 150, 'Modify'),
    ('2014-01-04', '2014-01-04',160, 200, 'Cancel'),
    ('2014-01-05', '2014-01-05',210, 210,NULL)
    go
    create view v_ticket as
    with cte as(
    select [orginial ticket], [Date],[Date Stamp],[trade number],status,
    row_number() over (partition by [orginial ticket] order by [date stamp] desc ) as rn
    from ticket )
    select * from cte
    where rn = 1 and (status <>'Cancel' or status is null)
    go
    select * from v_ticket
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • Active'  background status to 'canceled

    hi exprets,
    Is there any FM by which we can set the "Active'  background status to 'canceled". i want to cancel the active job if some codition is satisfied .Please le me know on the same. plz help me,
    Mahesh

    Hi, can someone help me
    When end massive processes the jobs status does not change remaining "active" State, and to verify the bulk load finished well
    Thank you very much for the support that I can deliver
    LEONOR

  • User exit on QA02 when changing status to Cancel

    Please let me know any userexits or badi's on QA02 while changing inspection lot status to cancel. 
    Thanks
    Tej

    Hi,
    Check the below exits.
    EXIT_SAPLQPL1_001
    EXIT_SAPLQPL1_002
    EXIT_SAPLQPL1_003
    EXIT_SAPLQPL1_004
    EXIT_SAPLQPL1_005
    EXIT_SAPLQPL1_006
    EXIT_SAPLQPL1_007
    Thanks,

  • Persistant Status Bar Notification ... error 'SP.UI.Status' is null or not an object

    I want to show a status bar that needs to be persistent on a page. for this I used the following in my master page
    function ShowStatusBarMessage(title, message)
    var statusId = SP.UI.Status.addStatus(title, message, true);
    SP.UI.Status.setStatusPriColor(statusId, 'yellow'); /* Set a status-color */
    HTML, call the JS method:
    <a onclick="ShowStatusBarMessage('Title'!','Awesome message!')">
    Display Status Bar message!
    </a>
    ref:
    http://www.zimmergren.net/archive/2010/03/17/sp-2010-dynamically-displaying-messages-to-your-users-with-the-notification-and-status-bar-areas-in-sharepoint-2010.aspx
    But what I want is
    to call the function on load. So I used pushed ny function to _spBodyOnLoadWrapper using _spBodyOnLoadFunctionNames.push("YourFunctionName");,
    it throws an error 'SP.UI.Status' is null or not an object
    Next I created and
    deployed a webcontrol and did a registerclientscript, that too gives me 'SP.UI.Status' is null or not an object
    // Define the name and type of the client scripts on the page.
    String csname1 = "AlertScript";
    Type cstype = this.GetType();
    // Get a ClientScriptManager reference from the Page class.
    ClientScriptManager cs = Page.ClientScript;
    // Check to see if the startup script is already registered.
    if (!cs.IsStartupScriptRegistered(cstype, csname1))
    StringBuilder cstext1 = new StringBuilder();
    cstext1.Append("<script type=text/javascript> alert('Hello World!');");
    cstext1.Append("var statusId = SP.UI.Status.addStatus('title', 'message', true);");
    cstext1.Append("SP.UI.Status.setStatusPriColor(statusId, 'yellow'); </");
    cstext1.Append("script>");
    cs.RegisterStartupScript(cstype, csname1, cstext1.ToString());
    What am I missing ?
    How can I get to show a status bar on load of any page, just as you get a health analyzer message when you get into the Central Admin?
    Thanks, Mano
    Mano Mangaldas | Blog : http://howtosharepoint.blogspot.com 

    Ok, for some reason, it is not working for me. Below are the code that didnt work for me
    <script type="text/javascript">
    function ShowStatusBarMessage(title, message)
    var statusId = SP.UI.Status.addStatus(title, message, true);
    SP.UI.Status.setStatusPriColor(statusId, 'red');
    ShowStatusBarMessage('Title!','Awesome message!');
    </script>
    This too didnt work
    <script type="text/javascript">
    function ShowStatusBarMessage()
    var statusId = SP.UI.Status.addStatus('Some title', 'Some message', true);
    SP.UI.Status.setStatusPriColor(statusId, 'red');
    _spBodyOnLoadFunctionNames.push("ShowStatusBarMessage");
    </script>
    I did try to register client script block programatically, that too didnt work
    String csname1 = "AlertScript";
    Type cstype = this.GetType();
    // Get a ClientScriptManager reference from the Page class.
    ClientScriptManager cs = Page.ClientScript;
    // Check to see if the startup script is already registered.
    if (!cs.IsStartupScriptRegistered(cstype, csname1))
    StringBuilder cstext1 = new StringBuilder();
    cstext1.Append("<script type=text/javascript>");
    cstext1.Append("var statusId = SP.UI.Status.addStatus('title', 'message', true);");
    cstext1.Append("SP.UI.Status.setStatusPriColor(statusId, 'yellow'); </");
    cstext1.Append("script>");
    cs.RegisterStartupScript(cstype, csname1, cstext1.ToString());
    Any help appreciated.
    But the below code works..
    <script type="text/javascript">
    function ShowStatusBarMessage(title, message)
    var statusId = SP.UI.Status.addStatus(title, message, true);
    SP.UI.Status.setStatusPriColor(statusId, 'yellow'); /* Set a status-color */
    </script>
    <a onclick="ShowStatusBarMessage('Title!','Awesome message!')" href="#">
    Display Status Bar message!
    </a>
    Thanks
    mano
    Mano Mangaldas | Blog : http://howtosharepoint.blogspot.com 

  • Wf_notification mail_status failed

    Hi All,
    I configured workflow mailer services in R12 instance and i checked the workflow services each and evey services are up and running.. while sending the TEST MAILER am not getting any mails.
    Checking with WF_NOTIFICATIONS table with particular user which i send it showing that the status column is "OPEN" and mail_status column is "FAILED".
    And also checked the worklist notification in OAM it showing like "Subsequently the notification preference for the following users has been set to DISABLED" wot it mean.
    kindly give any suggestion to move further.
    Thanks & Regards
    Dinesh

    Hi,
    Can you find any errors in the workflow log file?
    Please check the docs referenced in these docs.
    R12 Notification Mailer
    Re: R12 Notification Mailer
    Workflow notification Mailer Not sending notifitions in R12
    Re: Workflow notification Mailer Not sending notifitions in R12
    Thanks,
    Hussein

  • Ciscoworks Email Notifications Issue

    Hi,
    May i know, how to solve the issue "highlighted in bold font" for the email notifications?
    Subject: 000050K ; "Device Name" ; Sun dd-mm-yyyy 20:02:00 SGT ; Critical ;  Other ; Active
    ALERT ID                =  000050K
    TIME                    = Sun 29-Jan-2012 20:02:00  SGT
    STATUS                  = Active
    SEVERITY                =  Critical
    MANAGED OBJECT          = XXXXXXXXXXXXXXXX
    MANAGED OBJECT TYPE      = Switches and Hubs
    EVENT DESCRIPTION       = Error in getting alert  description
    CUSTOMER IDENTIFICATION = XXXXXXX
    CUSTOMER REVISION        = 1
    LMS = 2.6
    DMF = 2.0.3
    RME = 4.0.5
    Thanks in advance!
    Farid.

    Hi Nessie,
    Go to Monitor > Fault Settings > Setup > Fault Device Details
    select the device and click on view  then Click on the hyperlink or the device name\ip address
    that will bring a new window from there click on Interface and chanaged the Managed state from ture to FLASE for those interfaces for which you do not want ALERTS.
    Thanks-
    Afroz
    [Do rate the useful post]

Maybe you are looking for

  • 7.1.2 Upgrade Issue with 2012 Chevrolet Tahoe

    I upgraded my iPhone 5 to iOS 7.1.2 and now it will not work with my 2012 Tahoe via USB connection.  Vehicle has Bose system with navigation.  Previously the display worked with Spotify and any music apps on the phone.  Phone has been rebooted mutipl

  • Why is BT wifi with fon so slow?

    Why is my BT wifi with fon so slow? Normally it works ok and is fast but then it suddenly starts to drag and nothing ever loads, the connection always dropping and it says "Limited Access" with a little yellow triangle.  This happens mainly in evenin

  • Question for seasoned iPhoners

    So I'm noticing what I think is a big downer of the iPhone vs. the Android phones I just got rid of (I think). It doesn't appear to actively sync your google calendar and contacts. If I go into gmail on my PC and add a new contact I'm not seeing it p

  • Missing Bookmark Function.

    I have just up-dated my system to the most recent version of Linux from 11.04 and find that the drop-down list which used to appear when I left-clicked on a book-mark no longer shows. That is the list which gives the options "Open in a new tab/window

  • Can't see email messages only the categoires stretched acrosss the page.

    Only the categories are shown at the email page. The messages appear to be beyond the edge of the page, not recoverable. This is only happening at [email protected], not any other address. When I go to the address via Internet Explorer the page is no